You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
4.7 KiB
HTML

11 months ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
11 months ago
<title>Simple Image Matting</title>
<link rel="stylesheet" href="./static/css/style.css">
11 months ago
</head>
<body>
<header>
11 months ago
<h1>Simple Image Matting</h1>
11 months ago
</header>
<a href="https://github.com/ihmily/image-matting"><img style="position: absolute; top: 0; right: 0; border: 0;" decoding="async" width="149" height="149" src="/static/images/forkme_right_gray_6d6d6d.png" class="attachment-full size-full" alt="Fork me on GitHub" loading="lazy" data-recalc-dims="1"></a>
11 months ago
<main>
<form id="upload-form" enctype="multipart/form-data">
<label for="image-upload">Select an image:</label>
<input type="file" id="image-upload" accept="image/*" required>
<label for="model-select">Select a model:</label>
<select id="model-select" name="model">
{% for model in available_models %}
<option value="{{ model }}" {% if model == default_model %}selected{% endif %}>{{ model }}</option>
{% endfor %}
</select>
<button type="button" id="run" onclick="uploadImage()">Upload</button>
</form>
<div id="images-container">
<img id="original-img" alt=" " src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7">
11 months ago
<img id="mask-img" alt=" " src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7">
11 months ago
<img id="result-img" alt=" " src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7">
</div>
</main>
11 months ago
<footer>
<p>&copy; 2024 Hmily. All rights reserved.</p>
</footer>
11 months ago
<script>
document.getElementById("image-upload").addEventListener("change", function() {
const inputElement = this;
const file = inputElement.files[0];
if (file) {
const originalImgElement = document.getElementById("original-img");
originalImgElement.src = URL.createObjectURL(file);
document.getElementById("result-img").src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";
11 months ago
document.getElementById("mask-img").src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";
11 months ago
}
});
async function uploadImage() {
const inputElement = document.getElementById("image-upload");
const file = inputElement.files[0];
if (file) {
const formData = new FormData();
formData.append("image", file);
const modelSelect = document.getElementById("model-select");
const selectedModel = modelSelect.value;
formData.append("model", selectedModel);
const response = await fetch("/matting", {
method: "POST",
body: formData,
});
if (response.ok) {
11 months ago
const responseData = await response.json();
11 months ago
const resultImgElement = document.getElementById("result-img");
11 months ago
resultImgElement.src = responseData.result_image_url;
const maskImgElement = document.getElementById("mask-img");
maskImgElement.src = responseData.mask_image_url;
console.log(`Matting successful!\nOriginal Image Size: ${responseData.original_image_size.width} x ${responseData.original_image_size.height}\nGeneration Time: ${responseData.generation_time}`);
11 months ago
} else {
alert("Matting failed. Please try again.");
}
} else {
alert("Please select an image.");
}
}
document.getElementById("model-select").addEventListener("change", function() {
const newModel = this.value;
alert(`Switching to model: ${newModel}`);
fetch(`/switch_model/${newModel}`, {
method: "POST",
})
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then(data => {
alert(`Switched to model: ${newModel}`);
})
.catch(error => {
alert(`Model switch failed. Please try again. Error: ${error}`);
});
});
</script>
</body>
</html>