We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9599677 commit f3d8c11Copy full SHA for f3d8c11
examples/ex02_imread_imwrite.py
@@ -11,7 +11,11 @@
11
# Note - only BMP and PNG formats are currently supported in MicroPython OpenCV
12
img = cv2.imread("test_images/sparkfun_logo.png")
13
14
-# Show the image for a moment
+# Show the image for 1 second
15
+#
16
+# Note - If the image is larger or smaller than the display, the behavior will
17
+# depend on the display driver. For example, the default ST7789 display driver
18
+# will crop large images, and show small images in the top-left corner
19
cv2.imshow(display, img)
20
key = cv2.waitKey(1000)
21
0 commit comments