opencv/samples/cpp/connected_components.cpp

76 lines
2.1 KiB
C++
Raw Normal View History

#include <opencv2/core/utility.hpp>
#include "opencv2/imgproc.hpp"
2014-07-04 22:48:15 +08:00
#include "opencv2/imgcodecs.hpp"
#include "opencv2/highgui.hpp"
2010-11-24 13:51:04 +08:00
#include <iostream>
using namespace cv;
using namespace std;
Mat img;
int threshval = 100;
2012-06-08 01:21:29 +08:00
static void on_trackbar(int, void*)
{
2012-06-08 01:21:29 +08:00
Mat bw = threshval < 128 ? (img < threshval) : (img > threshval);
Mat labelImage(img.size(), CV_32S);
int nLabels = connectedComponents(bw, labelImage, 8);
std::vector<Vec3b> colors(nLabels);
colors[0] = Vec3b(0, 0, 0);//background
for(int label = 1; label < nLabels; ++label){
colors[label] = Vec3b( (rand()&255), (rand()&255), (rand()&255) );
}
Mat dst(img.size(), CV_8UC3);
for(int r = 0; r < dst.rows; ++r){
for(int c = 0; c < dst.cols; ++c){
int label = labelImage.at<int>(r, c);
Vec3b &pixel = dst.at<Vec3b>(r, c);
pixel = colors[label];
}
}
2012-06-08 01:21:29 +08:00
imshow( "Connected Components", dst );
}
2012-06-08 01:21:29 +08:00
static void help()
2011-08-10 19:29:32 +08:00
{
2011-08-10 19:49:10 +08:00
cout << "\n This program demonstrates connected components and use of the trackbar\n"
2012-06-08 01:21:29 +08:00
"Usage: \n"
2014-09-13 22:28:41 +08:00
" ./connected_components <image(../data/stuff.jpg as default)>\n"
2012-06-08 01:21:29 +08:00
"The image is converted to grayscale and displayed, another image has a trackbar\n"
2011-08-10 19:49:10 +08:00
"that controls thresholding and thereby the extracted contours which are drawn in color\n";
2011-08-10 19:29:32 +08:00
}
2012-06-08 01:21:29 +08:00
const char* keys =
{
2015-08-01 23:24:23 +08:00
"{help h||}{@image|../data/stuff.jpg|image for converting to a grayscale}"
2011-08-10 19:29:32 +08:00
};
int main( int argc, const char** argv )
{
2012-06-08 01:21:29 +08:00
CommandLineParser parser(argc, argv, keys);
2015-08-01 23:24:23 +08:00
if (parser.has("help"))
{
help();
return 0;
}
2013-01-31 16:08:43 +08:00
string inputImage = parser.get<string>(0);
2012-06-08 01:21:29 +08:00
img = imread(inputImage.c_str(), 0);
2011-08-10 19:29:32 +08:00
2012-06-08 01:21:29 +08:00
if(img.empty())
{
2011-08-10 19:49:10 +08:00
cout << "Could not read input image file: " << inputImage << endl;
2012-06-08 01:21:29 +08:00
return -1;
}
2012-06-08 01:21:29 +08:00
namedWindow( "Image", 1 );
imshow( "Image", img );
2012-06-08 01:21:29 +08:00
namedWindow( "Connected Components", 1 );
createTrackbar( "Threshold", "Connected Components", &threshval, 255, on_trackbar );
on_trackbar(threshval, 0);
waitKey(0);
return 0;
}