Cut an image and count white pixels

Good afternoon, I’m new to using the openmv H7, how can I cut an image into 4 parts and count its white pixels, to store them in a matrix?
Beforehand thank you very much

Use find_blobs(). Set the threshold to look for white pixels. Then, count the number of pixels in each blog returned. You can target the roi for find_blobs() to an area of the image.

Use find_blobs(). Set the threshold to look for white pixels. Then, count the number of pixels in each blog returned. You can target the roi for find_blobs() to an area of the image.

muchas gracias por la información :smiley: me ayudo mucho.