So I am having trouble with my OpenMV IDE concerning this code here. This code is in my main.py file.
for c in img.find_circles(threshold = 1600, x_margin = 10, y_margin = 10,r_margin = 10):
img.draw_circle(c.x(),c.y(),c.r(),color = (255,0,0))
print(c)
The first line which is the for loop, is where the IDE highlights the error after I run the program. The error is this "MemoryError: FB Alloc Collision". Im not sure what that error indicates.