ルーチン説明-03-cross_drawing十字を描く
このルーチンは 03-Drawing-cross_drawing.py です。
# 绘制十字
#
# 这个例子展示了如何使用OpenMV内置的画十字功能。
import sensor
import time
from random import randint
sensor.reset()
sensor.set_pixformat(sensor.RGB565) # or GRAYSCALE...
sensor.set_framesize(sensor.QVGA) # or QQVGA...
sensor.skip_frames(time=2000)
clock = time.clock()
while True:
clock.tick()
img = sensor.snapshot()
for i in range(10):
x = randint(0, 2 * img.width()) - img.width() // 2
y = randint(0, 2 * img.height()) - img.height() // 2
r = randint(0, 127) + 128
g = randint(0, 127) + 128
b = randint(0, 127) + 128
# 如果第一个参数是scaler,则此方法需要传递x和y。否则,它需要传递一个(x,y)元组。
img.draw_cross(x, y, color=(r, g, b), size=10, thickness=2)
print(clock.fps())
操作のレンダリング: