-
Notifications
You must be signed in to change notification settings - Fork 365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resize issue #183
Comments
Try with command line first. |
i dont know how to do that and i dont want to run the interface like that either. the gradio is working fine. just this error relating to resizing |
okay so it seems that echomimic only supports square aspect ratios, so images need to be cut at 512 x 512 or some other square resolution. which is strange because it seems to have a image size slider. i wonder what that is for. |
Yes 512 x 512. just ignore the slider. |
I get the same error, also with square images. no matter if I use my own images or the official test images. |
I found the solution. Open webgui.py and change the part from line 162 to this:
The reason it didn’t work was that crop_and_pad returned a tuple instead of a numpy.ndarray, causing an AttributeError when accessing .shape. Selecting only the first element resolved the issue. |
I got this error:
Traceback (most recent call last):
File "F:\EchoMimic\venv\lib\site-packages\gradio\queueing.py", line 624, in process_events
response = await route_utils.call_process_api(
File "F:\EchoMimic\venv\lib\site-packages\gradio\route_utils.py", line 323, in call_process_api
output = await app.get_blocks().process_api(
File "F:\EchoMimic\venv\lib\site-packages\gradio\blocks.py", line 2018, in process_api
result = await self.call_function(
File "F:\EchoMimic\venv\lib\site-packages\gradio\blocks.py", line 1567, in call_function
prediction = await anyio.to_thread.run_sync( # type: ignore
File "F:\EchoMimic\venv\lib\site-packages\anyio\to_thread.py", line 56, in run_sync
return await get_async_backend().run_sync_in_worker_thread(
File "F:\EchoMimic\venv\lib\site-packages\anyio_backends_asyncio.py", line 2441, in run_sync_in_worker_thread
return await future
File "F:\EchoMimic\venv\lib\site-packages\anyio_backends_asyncio.py", line 943, in run
result = context.run(func, *args)
File "F:\EchoMimic\venv\lib\site-packages\gradio\utils.py", line 846, in wrapper
response = f(*args, **kwargs)
File "F:\EchoMimic\webgui.py", line 233, in generate_video
final_output_path = process_video(
File "F:\EchoMimic\webgui.py", line 169, in process_video
face_img = cv2.resize(face_img, (width, height))
cv2.error: OpenCV(4.10.0) 👎 error: (-5:Bad argument) in function 'resize'
Seems to be an issue with resizing. but it shouldnt be. any help suggestion?
The text was updated successfully, but these errors were encountered: