Hello, I have a question about my OpenMV. I have a code where I take a snapshot of an image and then make a copy with an ROI and apply some filters, but the image does not display after the filter.
Hi, it’s because you are working on a copy of the frame buffer. Please just do
sensor.snapshot().crop()
Thank you