1
0
Fork 0
mirror of synced 2024-06-26 18:20:26 +12:00
waifu2x/assets/index.html

72 lines
3.4 KiB
HTML
Raw Normal View History

2015-05-17 15:53:09 +12:00
<!DOCTYPE html>
2015-05-16 17:48:05 +12:00
<html>
<head>
2015-05-17 15:53:09 +12:00
<meta charset="UTF-8">
2015-05-17 15:20:29 +12:00
<title>waifu2x</title>
2015-11-08 02:54:29 +13:00
<link href="style.css" rel="stylesheet" type="text/css">
2015-05-17 15:53:09 +12:00
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
2015-11-08 02:54:29 +13:00
<script type="text/javascript" src="ui.js"></script>
2015-05-16 17:48:05 +12:00
</head>
<body>
<h1>waifu2x</h1>
<div class="header">
2015-11-08 02:54:29 +13:00
<div class="github-banner">
<img class="github-banner-image" src="https://camo.githubusercontent.com/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png">
<a class="github-banner-link" href="https://github.com/nagadomi/waifu2x" target="_blank"></a>
2015-09-07 11:52:55 +12:00
</div>
<a href="index.html">en</a>/<a href="index.ja.html">ja</a>/<a href="index.ru.html">ru</a>
2015-05-16 17:48:05 +12:00
</div>
<div class="about">
2015-09-07 11:52:55 +12:00
<div>Single-Image Super-Resolution for anime/fan-art using Deep Convolutional Neural Networks. <a href="https://raw.githubusercontent.com/nagadomi/waifu2x/master/images/slide.png" target="_blank">about</a>.</div>
2015-05-16 17:48:05 +12:00
</div>
<form action="/api" method="POST" enctype="multipart/form-data" target="_blank">
<fieldset>
2015-09-07 11:52:55 +12:00
<legend>Image</legend>
<div>
URL: <input id="url" type="text" name="url" style="width:400px"> or
</div>
<div>
FILE: <input id="file" type="file" name="file">
</div>
<div class="help">
Limits: Size: 2MB, Noise Reduction: 2560x2560px, Upscaling: 1280x1280px
</div>
2015-05-16 17:48:05 +12:00
</fieldset>
<fieldset>
2015-11-08 02:54:29 +13:00
<legend>Style</legend>
<label><input type="radio" name="style" value="art" checked>Artwork</label>
<label><input type="radio" name="style" value="photo">Photo</label>
</fieldset>
<fieldset class="noise-field">
2015-09-07 11:52:55 +12:00
<legend>Noise Reduction (expect JPEG Artifact)</legend>
<label><input type="radio" name="noise" value="0"> None</label>
<label><input type="radio" name="noise" value="1" checked="checked"> Medium</label>
<label><input type="radio" name="noise" value="2"> High</label>
2015-11-08 02:54:29 +13:00
<div class="help">
When using 2x scaling, we never recommend to use high level of noise reduction, it almost always makes image worse, it makes sense for only some rare cases when image had really bad quality from the beginning.
</div>
2015-05-16 17:48:05 +12:00
</fieldset>
<fieldset>
2015-09-07 11:52:55 +12:00
<legend>Upscaling</legend>
<label><input type="radio" name="scale" value="0" checked="checked"> None</label>
<label><input type="radio" name="scale" value="1"> 1.6x</label>
<label><input type="radio" name="scale" value="2"> 2x</label>
2015-05-16 17:48:05 +12:00
</fieldset>
<fieldset>
<legend>Adding white noise</legend>
<label><input type="radio" name="white_noise" value="0" checked="checked">Off</label>
<label><input type="radio" name="white_noise" value="1">On</label>
<div class="help">
To denoise without unnaturalness in an anime screencap.
</div>
</fieldset>
2015-05-16 17:48:05 +12:00
<input type="submit"/>
</form>
2015-05-20 22:30:46 +12:00
<div class="help">
2015-11-08 02:54:29 +13:00
<ul class="padding-left">
2015-09-07 11:52:55 +12:00
<li>If you are using Firefox, Please press the CTRL+S key to save image. "Save Image" option doesn't work.
2015-05-20 22:30:46 +12:00
</ul>
</div>
2015-05-16 17:48:05 +12:00
</body>
</html>