Closed sdoro closed 2 years ago
The first function instruction of imshow has a problem because the length t-uple ranges between 2 and 3. We have resolved the problem by replacing the line:
height, width = I.shape
with:
height, width = I.shape[0], I.shape[1]
bye
ps. What a great book! :-)
Thanks. Can you make a PR?
Thx
The first function instruction of imshow has a problem because the length t-uple ranges between 2 and 3. We have resolved the problem by replacing the line:
height, width = I.shape
with:
height, width = I.shape[0], I.shape[1]
bye
ps. What a great book! :-)