27 lines
680 B
HTML
27 lines
680 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<style>
|
|
html {
|
|
font-family: sans-serif;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
{% comment %} http://aiworks.intranet.sumasen.net {% endcomment %}
|
|
<body>
|
|
<h2>Sumase OCR file upload test</h2>
|
|
<form action="http://aiworks.intranet.sumasen.net:8600/api/v1/upload/" method="post" enctype="multipart/form-data">
|
|
<select name="engine">
|
|
<option>EasyOCR</option>
|
|
<option>Tesseract</option>
|
|
</select><br><br>
|
|
<input type="file" name="file" id="file_to_upload">
|
|
<hr>
|
|
<input type="submit" value="Upload To Server" id="upload_file_button">
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html> |