1
0
Fork 0
mirror of synced 2024-07-01 12:41:09 +12:00
waifu2x/assets/index.ja.html

91 lines
3.7 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 lang="ja">
<head>
<meta charset="UTF-8">
2015-05-17 15:53:09 +12:00
<link rel="canonical" href="http://waifu2x.udp.jp/">
2015-05-17 15:20:29 +12:00
<title>waifu2x</title>
2015-05-16 17:48:05 +12:00
<style type="text/css">
body {
margin: 1em 2em 1em 2em;
background: LightGray;
width: 640px;
}
fieldset {
margin-top: 1em;
2015-09-07 11:53:49 +12:00
margin-bottom: 1em;
2015-05-16 17:48:05 +12:00
}
.about {
2015-09-07 11:53:49 +12:00
position: relative;
display: inline-block;
2015-05-16 17:48:05 +12:00
font-size: 0.8em;
2015-09-07 11:53:49 +12:00
padding: 1em 5px 0.2em 0;
2015-05-16 17:48:05 +12:00
}
.help {
font-size: 0.8em;
2015-09-07 11:53:49 +12:00
margin: 1em 0 0 0;
2015-05-16 17:48:05 +12:00
}
</style>
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-05-16 17:48:05 +12:00
<script type="text/javascript">
function clear_file() {
var new_file = $("#file").clone();
new_file.change(clear_url);
$("#file").replaceWith(new_file);
}
function clear_url() {
$("#url").val("")
}
$(function (){
$("#url").change(clear_file);
$("#file").change(clear_url);
})
</script>
</head>
<body>
<h1>waifu2x</h1>
<div class="header">
2015-09-07 11:53:49 +12:00
<div style="position:absolute; display:block; top:0; left:540px; max-height:140px;">
<img style="position:absolute; display:block; left:0; top:0; width:149px; height:149px; border:0;" 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 href="https://github.com/nagadomi/waifu2x" target="_blank" style="position:absolute; display:block; left:0; top:0; width:149px; height:130px;"></a>
</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:53:49 +12:00
<div>深層畳み込みニューラルネットワークによる二次元画像のための超解像システム. <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:53:49 +12:00
<legend>画像</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">
制限: サイズ: 2MB, ノイズ除去: 2560x2560px, 拡大: 1280x1280px
</div>
2015-05-16 17:48:05 +12:00
</fieldset>
<fieldset>
2015-09-07 11:53:49 +12:00
<legend>ノイズ除去 (JPEGイズを想定)</legend>
<label><input type="radio" name="noise" value="0"> なし</label>
<label><input type="radio" name="noise" value="1" checked="checked"></label>
<label><input type="radio" name="noise" value="2"></label>
2015-05-16 17:48:05 +12:00
</fieldset>
<fieldset>
2015-09-07 11:53:49 +12:00
<legend>拡大</legend>
<label><input type="radio" name="scale" value="0" checked="checked"> なし</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>
<input type="submit" value="実行"/>
</form>
<div class="help">
2015-09-07 11:53:49 +12:00
<ul style="padding-left: 15px;">
<li>なし/なしで入力画像を変換せずに出力する。ブラウザのタブで変換結果を比較したい人用。
<li>Firefoxの方は、右クリから画像が保存できないようなので、CTRL+SキーかALTキー後 ファイル - ページを保存 で画像を保存してください。
2015-05-16 17:48:05 +12:00
</ul>
</div>
</body>
</html>