Update main.py
Browse files
main.py
CHANGED
@@ -195,7 +195,10 @@ async def process_image(file: UploadFile = File(...), top: int = Form(...), bott
|
|
195 |
shutil.copyfileobj(file.file, buffer)
|
196 |
|
197 |
# Process the uploaded image
|
198 |
-
|
|
|
|
|
|
|
199 |
processed_image, message = model.image_toonify(aligned_face, instyle, model.exstyle, style_degree=0.5, style_type='cartoon1')
|
200 |
|
201 |
# Convert processed image to bytes
|
|
|
195 |
shutil.copyfileobj(file.file, buffer)
|
196 |
|
197 |
# Process the uploaded image
|
198 |
+
# Load the image and convert it from BGR to RGB
|
199 |
+
frame = cv2.imread("uploaded_image.jpg")
|
200 |
+
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
|
201 |
+
aligned_face, instyle, message = model.detect_and_align_image(frame, top, bottom, left, right)
|
202 |
processed_image, message = model.image_toonify(aligned_face, instyle, model.exstyle, style_degree=0.5, style_type='cartoon1')
|
203 |
|
204 |
# Convert processed image to bytes
|