opencv/samples/cpp/distrans.cpp

186 lines
5.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-28 07:15:16 +08:00
#include <stdio.h>
using namespace std;
2010-11-28 07:15:16 +08:00
using namespace cv;
int maskSize0 = DIST_MASK_5;
int voronoiType = -1;
2010-11-28 07:15:16 +08:00
int edgeThresh = 100;
int distType0 = DIST_L1;
2010-11-28 07:15:16 +08:00
// The output and temporary images
Mat gray;
// threshold trackbar callback
2012-06-08 01:21:29 +08:00
static void onTrackbar( int, void* )
2010-11-28 07:15:16 +08:00
{
static const Scalar colors[] =
{
Scalar(0,0,0),
Scalar(255,0,0),
Scalar(255,128,0),
Scalar(255,255,0),
Scalar(0,255,0),
Scalar(0,128,255),
Scalar(0,255,255),
Scalar(0,0,255),
Scalar(255,0,255)
};
int maskSize = voronoiType >= 0 ? DIST_MASK_5 : maskSize0;
int distType = voronoiType >= 0 ? DIST_L2 : distType0;
2010-11-28 07:15:16 +08:00
Mat edge = gray >= edgeThresh, dist, labels, dist8u;
if( voronoiType < 0 )
2010-11-28 07:15:16 +08:00
distanceTransform( edge, dist, distType, maskSize );
else
distanceTransform( edge, dist, labels, distType, maskSize, voronoiType );
2010-11-28 07:15:16 +08:00
if( voronoiType < 0 )
2010-11-28 07:15:16 +08:00
{
// begin "painting" the distance transform result
dist *= 5000;
pow(dist, 0.5, dist);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
Mat dist32s, dist8u1, dist8u2;
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
dist.convertTo(dist32s, CV_32S, 1, 0.5);
dist32s &= Scalar::all(255);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
dist32s.convertTo(dist8u1, CV_8U, 1, 0);
dist32s *= -1;
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
dist32s += Scalar::all(255);
dist32s.convertTo(dist8u2, CV_8U);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
Mat planes[] = {dist8u1, dist8u2, dist8u2};
2012-06-08 01:21:29 +08:00
merge(planes, 3, dist8u);
2010-11-28 07:15:16 +08:00
}
else
{
dist8u.create(labels.size(), CV_8UC3);
for( int i = 0; i < labels.rows; i++ )
{
const int* ll = (const int*)labels.ptr(i);
const float* dd = (const float*)dist.ptr(i);
uchar* d = (uchar*)dist8u.ptr(i);
for( int j = 0; j < labels.cols; j++ )
{
int idx = ll[j] == 0 || dd[j] == 0 ? 0 : (ll[j]-1)%8 + 1;
float scale = 1.f/(1 + dd[j]*dd[j]*0.0004f);
int b = cvRound(colors[idx][0]*scale);
int g = cvRound(colors[idx][1]*scale);
int r = cvRound(colors[idx][2]*scale);
2010-11-28 07:15:16 +08:00
d[j*3] = (uchar)b;
d[j*3+1] = (uchar)g;
d[j*3+2] = (uchar)r;
}
}
}
imshow("Distance Map", dist8u );
}
2012-06-08 01:21:29 +08:00
static void help()
2011-08-11 14:46:09 +08:00
{
2012-06-08 01:21:29 +08:00
printf("\nProgram to demonstrate the use of the distance transform function between edge images.\n"
"Usage:\n"
2014-09-13 22:28:41 +08:00
"./distrans [image_name -- default image is ../data/stuff.jpg]\n"
2012-06-08 01:21:29 +08:00
"\nHot keys: \n"
"\tESC - quit the program\n"
"\tC - use C/Inf metric\n"
"\tL1 - use L1 metric\n"
"\tL2 - use L2 metric\n"
"\t3 - use 3x3 mask\n"
"\t5 - use 5x5 mask\n"
"\t0 - use precise distance transform\n"
"\tv - switch to Voronoi diagram mode\n"
"\tp - switch to pixel-based Voronoi diagram mode\n"
2012-06-08 01:21:29 +08:00
"\tSPACE - loop through all the modes\n\n");
2011-08-11 14:46:09 +08:00
}
2012-06-08 01:21:29 +08:00
const char* keys =
2010-11-28 07:15:16 +08:00
{
2015-08-01 23:24:23 +08:00
"{help h||}{@image |../data/stuff.jpg|input image file}"
2011-08-11 14:46:09 +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
help();
if (parser.has("help"))
return 0;
2013-01-31 16:08:43 +08:00
string filename = parser.get<string>(0);
2015-08-01 23:24:23 +08:00
gray = imread(filename, 0);
2010-11-28 07:15:16 +08:00
if(gray.empty())
{
2012-06-08 01:21:29 +08:00
printf("Cannot read image file: %s\n", filename.c_str());
help();
return -1;
2010-11-28 07:15:16 +08:00
}
namedWindow("Distance Map", 1);
createTrackbar("Brightness Threshold", "Distance Map", &edgeThresh, 255, onTrackbar, 0);
for(;;)
{
// Call to update the view
onTrackbar(0, 0);
char c = (char)waitKey(0);
2010-11-28 07:15:16 +08:00
if( c == 27 )
2010-11-28 07:15:16 +08:00
break;
if( c == 'c' || c == 'C' || c == '1' || c == '2' ||
c == '3' || c == '5' || c == '0' )
voronoiType = -1;
2012-06-08 01:21:29 +08:00
if( c == 'c' || c == 'C' )
distType0 = DIST_C;
else if( c == '1' )
distType0 = DIST_L1;
else if( c == '2' )
distType0 = DIST_L2;
else if( c == '3' )
maskSize0 = DIST_MASK_3;
else if( c == '5' )
maskSize0 = DIST_MASK_5;
else if( c == '0' )
maskSize0 = DIST_MASK_PRECISE;
else if( c == 'v' )
voronoiType = 0;
else if( c == 'p' )
voronoiType = 1;
else if( c == ' ' )
2010-11-28 07:15:16 +08:00
{
if( voronoiType == 0 )
voronoiType = 1;
else if( voronoiType == 1 )
2010-11-28 07:15:16 +08:00
{
voronoiType = -1;
maskSize0 = DIST_MASK_3;
distType0 = DIST_C;
2010-11-28 07:15:16 +08:00
}
else if( distType0 == DIST_C )
distType0 = DIST_L1;
else if( distType0 == DIST_L1 )
distType0 = DIST_L2;
else if( maskSize0 == DIST_MASK_3 )
maskSize0 = DIST_MASK_5;
else if( maskSize0 == DIST_MASK_5 )
maskSize0 = DIST_MASK_PRECISE;
else if( maskSize0 == DIST_MASK_PRECISE )
voronoiType = 0;
2010-11-28 07:15:16 +08:00
}
}
return 0;
}