I don’t understand where is the bottleneck to the FPS on my new H7plus
Whatever I try (simple examples, down to QQQVGA), I’m ceiling to about 46.6 FPS on my new H7 plus with frame buffer disabled.
If I enable frame buffer, I got ~23.5 (half the speed) and if I do few blob detections it goes down to ~12 (quarter of the speed).
I got always those kind of FPS, no other ones.
import sensor, image, time
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QQQVGA)
sensor.skip_frames(time = 2000)
clock = time.clock()
while(True):
clock.tick()
img = sensor.snapshot()
print(clock.fps())