Hi,
I’m using an openMV M7 to track a line using color detection. So basically, i’m setting the camera, all my com stuff and calling :
img = sensor.snapshot()
My application crashes sometimes with a pop-up indicated only “MemoryError: Memory allocation failed, allocating 1024 bytes” when calling this line that evaluates the current luminosity :
gs_mean = img.get_histogram(roi=roi_bottom).get_statistics().mean()
I was wondering the memory capabilities of the board, could anyone tell me more about this subject ? How much RAM is available ? How big is the frame buffer ?
thanks !