Is there a way to invert the way pixel threashold works?

I the find_blobs() function to ignore objects larger than a certain amount of pixels instead of less than a certain amount of pixels. Is there any easy way to achieve this?

There’s a callback method you can add which you can do custom filtering. Alternatively, you can also just filter the list of returned objects.

Sorry I’m pretty new to this stuff. What callback method are you referring to exactly? And how would I use it to achieve this? I see what you mean about filtering them out by size. I’m trying to figure that out right now.

Dear friend…
Using “if” statements for blob area or pixels work for me…

Oh probably should have known you could that. Thanks so much.