Algorithms to do a CTRL+F (find object) on an image
We all know the CTRL+F Find text... feature in text editors / browsers.
I'd like to study the available algorithms to do something similar on an image.
Example of UI/UX: let's say you have an electronic schematic. You draw a rectangle around a diode, and then the algorithm will automatically find all similar diodes on this image.
In order to find a pattern on an image, I know (and have already used some of them) the classical tools:
- openCV
matchTemplate
(pros: works with a single training example, cons: doesn't support rotation or scaling) - YOLO (pros: I thing it accepts rotation and scaling, cons: it requires 100s or 1000s of training examples)
Which available algorithms are there which would do their best with 1 or 2 training examples only and accept scaling / rotation?
Topic image-segmentation yolo image-recognition image-classification
Category Data Science