My objective -
Input: A PNG floorplan (with many electrical equipment symbols on it), and a user who selects one of those symbols using a bounding box.
Output: The same PNG floorplan but with all matching symbols highlighted
I have been looking into feature detection as a way to find matching symbols, but I can't find any examples online of it used on 2D objects- I only ever see it used on photos or used live in videos. Does Feature Detection work for 2D objects as well? If not, why not?
For those interested, I have been developing in C#, using an OpenCV wrapper API called Emgu CV (it has all the OpenCV functions and some more).