openmv4 H7 PLUS Measure the distance with ov5640,framesize=sensor.FHD,memory errors!

# Measure the distance
#
# This example shows off how to measure the distance through the size in imgage
# This example in particular looks for yellow pingpong ball.

import sensor, image, time

# For color tracking to work really well you should ideally be in a very, very,
# very, controlled enviroment where the lighting is constant...
yellow_threshold   = (2, 85, -128, 127, 18, 64)
# You may need to tweak the above settings for tracking green things...
# Select an area in the Framebuffer to copy the color settings.

sensor.reset() # Initialize the camera sensor.
sensor.set_pixformat(sensor.RGB565) # use RGB565.
sensor.set_framesize(sensor.FHD) #【ov5640】<-------------change here
sensor.skip_frames(10) # Let new settings take affect.
sensor.set_auto_whitebal(False) # turn this off.
clock = time.clock() # Tracks FPS.

K=5000#the value should be measured

while(True):
    clock.tick() # Track elapsed milliseconds between snapshots().
    img = sensor.snapshot() # Take a picture and return the image.

    blobs = img.find_blobs([yellow_threshold], x_stride=2, y_stride=1)
    if len(blobs) == 1:
        # Draw a rect around the blob.
        b = blobs[0]
        img.draw_rectangle(b[0:4]) # rect
        img.draw_cross(b[5], b[6]) # cx, cy
        Lm = (b[2]+b[3])/2
        length = K/Lm
        print(length)

    #print(clock.fps()) # Note: Your OpenMV Cam runs about half as fast while
    # connected to your computer. The FPS should increase once disconnected.

openmv4 H7 PLUS Measure the distance with ov5640,framesize=sensor.FHD,memory errors!_第1张图片

openmv ide 3.0.3,windows7 ,openmv4 H7 PLUS

openmv的星瞳没有技术支持!国内论坛过去3天了。没有人回答。

国外论坛一天后有回复了。# openmv4 H7 PLUS Measure the distance with ov5640,change framesize=sensor.FHD,memory errors! - #9 by sjh2100 - OpenMV Products - OpenMV Forums

通过对比系统内的示例,我发现import部分我漏写了math!原代码sensor.skip_frames(10)改成sensor.skip_frames(time = 2000)

但是,然并卵!

你可能感兴趣的:(计算机视觉)