Can the OpenMV Cam H7 Plus be used to perform shape detection, particularly squares, pentagons, and hexagons?
We can detect rectangles now via the find_rects() function. However, this is just the quad detector from AprilTags. While it kinda works, I plan to remove it in the future for CNN-based approaches.
I need to detect several shapes that I mentioned earlier. Are there any alternatives to the shape detection algorithm in OpenMV?
Yes, please train a CNN on the objects you want to detect. This is generally going to be the way moving forwards. See Edge Impulse for more information about how to do this.
Okay thanks for the solution, i will try it.