Ashrafb commited on
Commit
eb9648f
·
verified ·
1 Parent(s): 4a60381

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -3
main.py CHANGED
@@ -14,7 +14,7 @@ import gradio as gr
14
  import pathlib
15
  import sys
16
  sys.path.insert(0, 'vtoonify')
17
-
18
  from util import load_psp_standalone, get_video_crop_parameter, tensor2cv2
19
  import torch
20
  import torch.nn as nn
@@ -191,8 +191,8 @@ async def process_image(file: UploadFile = File(...), top: int = Form(...), bott
191
  shutil.copyfileobj(file.file, buffer)
192
 
193
  # Process the uploaded image
194
- aligned_face, instyle, message = detect_and_align_image("uploaded_image.jpg", top, bottom, left, right)
195
- processed_image, message = image_toonify(aligned_face, instyle, exstyle, style_degree=0.5, style_type='cartoon1')
196
 
197
  # Convert processed image to bytes
198
  image_bytes = cv2.imencode('.jpg', processed_image)[1].tobytes()
 
14
  import pathlib
15
  import sys
16
  sys.path.insert(0, 'vtoonify')
17
+ from vtoonify_model import Model
18
  from util import load_psp_standalone, get_video_crop_parameter, tensor2cv2
19
  import torch
20
  import torch.nn as nn
 
191
  shutil.copyfileobj(file.file, buffer)
192
 
193
  # Process the uploaded image
194
+ aligned_face, instyle, message = model.detect_and_align_image("uploaded_image.jpg", top, bottom, left, right)
195
+ processed_image, message = model.image_toonify(aligned_face, instyle, model.exstyle, style_degree=0.5, style_type='cartoon1')
196
 
197
  # Convert processed image to bytes
198
  image_bytes = cv2.imencode('.jpg', processed_image)[1].tobytes()