Skip to content
Advertisement

ValueError: operands could not be broadcast together with shapes (720,1280) (720,1281)

I tried to use the following program to extract slides from a video of a powerpoint:

JavaScript

However, when I run it I get the following error:

JavaScript

Please guide me how I can solve it.

Advertisement

Answer

Integer division will round down rather than rounding towards zero. If you replace:

JavaScript

with:

JavaScript

this should solve it.

Parentheses shown for clarity but are not needed.

JavaScript

You should also do similarly with the ymax. Instead of:

JavaScript

use:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement