This python script will allow us to identify objects in an image.
sudo apt-get install python3
sudo apt-get install python3-pip
pip3 install numpy
pip3 install opencv-python
sudo apt-get install python3-tk
User is prompted to select two images -
- the image in which we wish to detect objects
- the template/image of object which is to be identified in the original image.
(Note The size of the image is larger than that of template)
The output image is written/stored in the current folder.
Github: invigorzz313