Ashrafb commited on
Commit
d6cf74f
·
verified ·
1 Parent(s): a201976

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +4 -1
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
- aligned_face, instyle, message = model.detect_and_align_image("uploaded_image.jpg", top, bottom, left, right)
 
 
 
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