image_drawing.py

# هذا العمل مرخص بموجب ترخيص MIT.
# حقوق النشر (c) 2013-2023 OpenMV LLC. جميع الحقوق محفوظة.
# https://github.com/openmv/openmv/blob/master/LICENSE
#
# مثال رسم الصور
#
# يوضح هذا المثال كيفية رسم الصور في ذاكرة الإطار المؤقتة.

import csi
import time
import image

csi0 = csi.CSI()
csi0.reset()
csi0.pixformat(csi.RGB565)  # أو GRAYSCALE...
csi0.framesize(csi.QVGA)  # أو QQVGA...
csi0.snapshot(time=2000)

clock = time.clock()

while True:
    clock.tick()

    img = csi0.snapshot()
    small_img = img.scale(x_scale=0.25, y_scale=0.25, hint=image.AREA, copy=True)

    x = (img.width() // 2) - (small_img.width() // 2)
    y = (img.height() // 2) - (small_img.height() // 2)
    # يرسم صورة في ذاكرة الإطار المؤقتة. مرّر صورة
    # قناع اختيارية للتحكم في البكسلات التي سيتم رسمها.
    img.draw_image(small_img, x, y, x_scale=1, y_scale=1)

    print(clock.fps())

results matching ""

    No results matching ""