Hello. I’ve developing Led Detect Project using OV2640 camera module.
but I get in trouble. because of light issue.
I found that too bright led light makes screen darker.(owing to camera sensor)
I decide to set darker screen(like second picture) in initial setting for clear detect.
However, It is not easy to desired setting despite several attempts.
I need a solution. If you have good idea, Please post reply. There is set code as below.
→
lcd.init()
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QVGA)
sensor.skip_frames(time=2000)
sensor.set_auto_gain(False, 3)
sensor.set_auto_exposure(False, 1200)
sensor.set_auto_whitebal(False,[10,5,5])
sensor.set_contrast(2)
clock = time.clock()