This repository contains code for the blog post Find the Center of a Blob using OpenCV (C++/Python).
To run the code to find center of a single blob, run the following commands.
Python
python3 single_blob.py --ipimage image_name
C++
-
g++ single_blob.cpp `pkg-config opencv --cflags --libs` -o output
-
./output image_name
To run the code to find center of multiple blobs, run the following commands:-
Python
python3 center_of_multiple_blob.py --ipimage image_name
C++
-
g++ center_of_multiple_blob.cpp `pkg-config opencv --cflags --libs` -o output
-
./output image_name
Want to become an expert in AI? AI Courses by OpenCV is a great place to start.