mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
6 lines
129 B
Python
6 lines
129 B
Python
import sensor, time
|
|
sensor.set_pixformat(sensor.GRAYSCALE)
|
|
fb = sensor.snapshot()
|
|
img = Image("minion.pgm")
|
|
fb.blit((0, 0), img)
|