We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On Mac with 1920x1080 webcam, "deface cam" will freeze on first frame. When using an older Mac with 1280x720 webcam no issue there.
There is a fix for frame grabbing using imageio.imiter, but I am not sure how to fix for the case of imageio.imread:
For example, this line will fail on 1920x1080 webcam:
for idx, frame in enumerate(iio.imiter("<%video0%>")):
This will pass on 1920x1080 webcam:
for idx, frame in enumerate(iio.imiter("<%video0%>", size=(1280, 720))):
Please help.
The text was updated successfully, but these errors were encountered:
Found a workaround:
Instead of this:
for frame in read_iter:
Use this:
for frame in imageio.imiter(ipath, size=(1280, 720)):
Sorry, something went wrong.
No branches or pull requests
On Mac with 1920x1080 webcam, "deface cam" will freeze on first frame. When using an older Mac with 1280x720 webcam no issue there.
There is a fix for frame grabbing using imageio.imiter, but I am not sure how to fix for the case of imageio.imread:
For example, this line will fail on 1920x1080 webcam:
This will pass on 1920x1080 webcam:
Please help.
The text was updated successfully, but these errors were encountered: