Anyone else having this issue the the OpenMV H7 CAM?
I have deployed my EdgeImpulse project to my H7 and running the default python program gives this error. I was looking at some other posts on the OpenMV site and they say to reduce the image resolution, which I did, but still get the error.
The Plus model adds 32 MB of SDRAM and another 32 MB of flash, which is a pretty big addition to the 1 MB RAM and 2 MB flash on the non-plus version. (source: https://openmv.io/products/openmv-cam-h7-plus)
@kevincrum, yeah your model is 1K too big, I’m not entirely sure how the OpenMV does its memory management works and if application size has anything to do with it, but probably reducing to 44x44 or something would help.
I cant seem to get edge impulse UI to downsize past 48x48 (it reloads as 48x48) I havent tried using ‘expert mode’ and changing the parameter there. However when I downsize and try grey scale etc I run into
MemoryError: Out of fast Frame Buffer Stack Memory! Please reduce the resolution of the image you are running this algorithm on to bypass this issue!
on line
for obj in tf.classify(net, img, min_scale=1.0, scale_mul=0.8, x_overlap=0.5, y_overlap=0.5):