Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -23,7 +23,7 @@ async def process_image(file: UploadFile = File(...)):
|
|
23 |
|
24 |
top, bottom, left, right = 200, 200,200, 200
|
25 |
aligned_face, _, input_info = model.detect_and_align_image("uploaded_image.jpg", top, bottom, left, right)
|
26 |
-
processed_image, message = model.image_toonify(aligned_face, exstyle, 'cartoon1', style_degree=0.5)
|
27 |
|
28 |
# Save the processed image
|
29 |
with open("result_image.jpg", "wb") as result_buffer:
|
@@ -39,3 +39,4 @@ def index() -> FileResponse:
|
|
39 |
return FileResponse(path="/app/AB/index.html", media_type="text/html")
|
40 |
|
41 |
|
|
|
|
23 |
|
24 |
top, bottom, left, right = 200, 200,200, 200
|
25 |
aligned_face, _, input_info = model.detect_and_align_image("uploaded_image.jpg", top, bottom, left, right)
|
26 |
+
processed_image, message = model.image_toonify(aligned_face, exstyle, style_type = 'cartoon1' , style_degree=0.5)
|
27 |
|
28 |
# Save the processed image
|
29 |
with open("result_image.jpg", "wb") as result_buffer:
|
|
|
39 |
return FileResponse(path="/app/AB/index.html", media_type="text/html")
|
40 |
|
41 |
|
42 |
+
|