|
|
|
@ -43,6 +43,10 @@ |
|
|
|
|
#include "precomp.hpp" |
|
|
|
|
#include "opencl_kernels_imgproc.hpp" |
|
|
|
|
|
|
|
|
|
#ifdef _MSC_VER |
|
|
|
|
#pragma warning( disable: 4127 ) // conditional expression is constant
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined (HAVE_IPP) && (IPP_VERSION_X100 >= 700) |
|
|
|
|
#define USE_IPP_CANNY 1 |
|
|
|
@ -53,34 +57,45 @@ |
|
|
|
|
|
|
|
|
|
namespace cv |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
static void CannyImpl(Mat& dx_, Mat& dy_, Mat& _dst, double low_thresh, double high_thresh, bool L2gradient); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_IPP |
|
|
|
|
static bool ippCanny(const Mat& _src, Mat& _dst, float low, float high) |
|
|
|
|
template <bool useCustomDeriv> |
|
|
|
|
static bool ippCanny(const Mat& _src, const Mat& dx_, const Mat& dy_, Mat& _dst, float low, float high) |
|
|
|
|
{ |
|
|
|
|
#if USE_IPP_CANNY |
|
|
|
|
int size = 0, size1 = 0; |
|
|
|
|
IppiSize roi = { _src.cols, _src.rows }; |
|
|
|
|
|
|
|
|
|
if (ippiCannyGetSize(roi, &size) < 0) |
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
if (!useCustomDeriv) |
|
|
|
|
{ |
|
|
|
|
#if IPP_VERSION_X100 < 900 |
|
|
|
|
if (ippiFilterSobelNegVertGetBufferSize_8u16s_C1R(roi, ippMskSize3x3, &size) < 0) |
|
|
|
|
if (ippiFilterSobelNegVertGetBufferSize_8u16s_C1R(roi, ippMskSize3x3, &size1) < 0) |
|
|
|
|
return false; |
|
|
|
|
size = std::max(size, size1); |
|
|
|
|
if (ippiFilterSobelHorizGetBufferSize_8u16s_C1R(roi, ippMskSize3x3, &size1) < 0) |
|
|
|
|
return false; |
|
|
|
|
#else |
|
|
|
|
if (ippiFilterSobelNegVertBorderGetBufferSize(roi, ippMskSize3x3, ipp8u, ipp16s, 1, &size) < 0) |
|
|
|
|
if (ippiFilterSobelNegVertBorderGetBufferSize(roi, ippMskSize3x3, ipp8u, ipp16s, 1, &size1) < 0) |
|
|
|
|
return false; |
|
|
|
|
size = std::max(size, size1); |
|
|
|
|
if (ippiFilterSobelHorizBorderGetBufferSize(roi, ippMskSize3x3, ipp8u, ipp16s, 1, &size1) < 0) |
|
|
|
|
return false; |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
size = std::max(size, size1); |
|
|
|
|
|
|
|
|
|
if (ippiCannyGetSize(roi, &size1) < 0) |
|
|
|
|
return false; |
|
|
|
|
size = std::max(size, size1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
AutoBuffer<uchar> buf(size + 64); |
|
|
|
|
uchar* buffer = alignPtr((uchar*)buf, 32); |
|
|
|
|
|
|
|
|
|
Mat dx, dy; |
|
|
|
|
if (!useCustomDeriv) |
|
|
|
|
{ |
|
|
|
|
Mat _dx(_src.rows, _src.cols, CV_16S); |
|
|
|
|
if( ippiFilterSobelNegVertBorder_8u16s_C1R(_src.ptr(), (int)_src.step, |
|
|
|
|
_dx.ptr<short>(), (int)_dx.step, roi, |
|
|
|
@ -93,13 +108,22 @@ static bool ippCanny(const Mat& _src, Mat& _dst, float low, float high) |
|
|
|
|
ippMskSize3x3, ippBorderRepl, 0, buffer) < 0 ) |
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
if( ippiCanny_16s8u_C1R(_dx.ptr<short>(), (int)_dx.step, |
|
|
|
|
_dy.ptr<short>(), (int)_dy.step, |
|
|
|
|
swap(dx, _dx); |
|
|
|
|
swap(dy, _dy); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
dx = dx_; |
|
|
|
|
dy = dy_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if( ippiCanny_16s8u_C1R(dx.ptr<short>(), (int)dx.step, |
|
|
|
|
dy.ptr<short>(), (int)dy.step, |
|
|
|
|
_dst.ptr(), (int)_dst.step, roi, low, high, buffer) < 0 ) |
|
|
|
|
return false; |
|
|
|
|
return true; |
|
|
|
|
#else |
|
|
|
|
CV_UNUSED(_src); CV_UNUSED(_dst); CV_UNUSED(low); CV_UNUSED(high); |
|
|
|
|
CV_UNUSED(_src); CV_UNUSED(dx_); CV_UNUSED(dy_); CV_UNUSED(_dst); CV_UNUSED(low); CV_UNUSED(high); |
|
|
|
|
return false; |
|
|
|
|
#endif |
|
|
|
|
} |
|
|
|
@ -107,7 +131,8 @@ static bool ippCanny(const Mat& _src, Mat& _dst, float low, float high) |
|
|
|
|
|
|
|
|
|
#ifdef HAVE_OPENCL |
|
|
|
|
|
|
|
|
|
static bool ocl_Canny(InputArray _src, OutputArray _dst, float low_thresh, float high_thresh, |
|
|
|
|
template <bool useCustomDeriv> |
|
|
|
|
static bool ocl_Canny(InputArray _src, const UMat& dx_, const UMat& dy_, OutputArray _dst, float low_thresh, float high_thresh, |
|
|
|
|
int aperture_size, bool L2gradient, int cn, const Size & size) |
|
|
|
|
{ |
|
|
|
|
UMat map; |
|
|
|
@ -140,7 +165,8 @@ static bool ocl_Canny(InputArray _src, OutputArray _dst, float low_thresh, float |
|
|
|
|
} |
|
|
|
|
int low = cvFloor(low_thresh), high = cvFloor(high_thresh); |
|
|
|
|
|
|
|
|
|
if (aperture_size == 3 && !_src.isSubmatrix()) |
|
|
|
|
if (!useCustomDeriv && |
|
|
|
|
aperture_size == 3 && !_src.isSubmatrix()) |
|
|
|
|
{ |
|
|
|
|
/*
|
|
|
|
|
stage1_with_sobel: |
|
|
|
@ -181,8 +207,16 @@ static bool ocl_Canny(InputArray _src, OutputArray _dst, float low_thresh, float |
|
|
|
|
Double thresholding |
|
|
|
|
*/ |
|
|
|
|
UMat dx, dy; |
|
|
|
|
if (!useCustomDeriv) |
|
|
|
|
{ |
|
|
|
|
Sobel(_src, dx, CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE); |
|
|
|
|
Sobel(_src, dy, CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
dx = dx_; |
|
|
|
|
dy = dy_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ocl::Kernel without_sobel("stage1_without_sobel", ocl::imgproc::canny_oclsrc, |
|
|
|
|
format("-D WITHOUT_SOBEL -D cn=%d -D GRP_SIZEX=%d -D GRP_SIZEY=%d%s", |
|
|
|
@ -585,9 +619,7 @@ private: |
|
|
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
} // namespace cv
|
|
|
|
|
|
|
|
|
|
void cv::Canny( InputArray _src, OutputArray _dst, |
|
|
|
|
void Canny( InputArray _src, OutputArray _dst, |
|
|
|
|
double low_thresh, double high_thresh, |
|
|
|
|
int aperture_size, bool L2gradient ) |
|
|
|
|
{ |
|
|
|
@ -611,7 +643,7 @@ void cv::Canny( InputArray _src, OutputArray _dst, |
|
|
|
|
std::swap(low_thresh, high_thresh); |
|
|
|
|
|
|
|
|
|
CV_OCL_RUN(_dst.isUMat() && (cn == 1 || cn == 3), |
|
|
|
|
ocl_Canny(_src, _dst, (float)low_thresh, (float)high_thresh, aperture_size, L2gradient, cn, size)) |
|
|
|
|
ocl_Canny<false>(_src, UMat(), UMat(), _dst, (float)low_thresh, (float)high_thresh, aperture_size, L2gradient, cn, size)) |
|
|
|
|
|
|
|
|
|
Mat src = _src.getMat(), dst = _dst.getMat(); |
|
|
|
|
|
|
|
|
@ -620,7 +652,7 @@ void cv::Canny( InputArray _src, OutputArray _dst, |
|
|
|
|
return; |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
CV_IPP_RUN(USE_IPP_CANNY && (aperture_size == 3 && !L2gradient && 1 == cn), ippCanny(src, dst, (float)low_thresh, (float)high_thresh)) |
|
|
|
|
CV_IPP_RUN(USE_IPP_CANNY && (aperture_size == 3 && !L2gradient && 1 == cn), ippCanny<false>(src, Mat(), Mat(), dst, (float)low_thresh, (float)high_thresh)) |
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TBB |
|
|
|
|
|
|
|
|
@ -683,14 +715,66 @@ while (borderPeaks.try_pop(m)) |
|
|
|
|
if (!m[mapstep+1]) CANNY_PUSH_SERIAL(m + mapstep + 1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#else |
|
|
|
|
// the final pass, form the final image
|
|
|
|
|
const uchar* pmap = map + mapstep + 1; |
|
|
|
|
uchar* pdst = dst.ptr(); |
|
|
|
|
for (int i = 0; i < src.rows; i++, pmap += mapstep, pdst += dst.step) |
|
|
|
|
{ |
|
|
|
|
for (int j = 0; j < src.cols; j++) |
|
|
|
|
pdst[j] = (uchar)-(pmap[j] >> 1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#else |
|
|
|
|
Mat dx(src.rows, src.cols, CV_16SC(cn)); |
|
|
|
|
Mat dy(src.rows, src.cols, CV_16SC(cn)); |
|
|
|
|
|
|
|
|
|
Sobel(src, dx, CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE); |
|
|
|
|
Sobel(src, dy, CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE); |
|
|
|
|
|
|
|
|
|
CannyImpl(dx, dy, dst, low_thresh, high_thresh, L2gradient); |
|
|
|
|
#endif |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void Canny( InputArray _dx, InputArray _dy, OutputArray _dst, |
|
|
|
|
double low_thresh, double high_thresh, |
|
|
|
|
bool L2gradient ) |
|
|
|
|
{ |
|
|
|
|
CV_Assert(_dx.dims() == 2); |
|
|
|
|
CV_Assert(_dx.type() == CV_16SC1 || _dx.type() == CV_16SC3); |
|
|
|
|
CV_Assert(_dy.type() == _dx.type()); |
|
|
|
|
CV_Assert(_dx.sameSize(_dy)); |
|
|
|
|
|
|
|
|
|
if (low_thresh > high_thresh) |
|
|
|
|
std::swap(low_thresh, high_thresh); |
|
|
|
|
|
|
|
|
|
const int cn = _dx.channels(); |
|
|
|
|
const Size size = _dx.size(); |
|
|
|
|
|
|
|
|
|
CV_OCL_RUN(_dst.isUMat(), |
|
|
|
|
ocl_Canny<true>(UMat(), _dx.getUMat(), _dy.getUMat(), _dst, (float)low_thresh, (float)high_thresh, 0, L2gradient, cn, size)) |
|
|
|
|
|
|
|
|
|
_dst.create(size, CV_8U); |
|
|
|
|
Mat dst = _dst.getMat(); |
|
|
|
|
|
|
|
|
|
Mat dx = _dx.getMat(); |
|
|
|
|
Mat dy = _dy.getMat(); |
|
|
|
|
|
|
|
|
|
CV_IPP_RUN(USE_IPP_CANNY && (!L2gradient && 1 == cn), ippCanny<true>(Mat(), dx, dy, dst, (float)low_thresh, (float)high_thresh)) |
|
|
|
|
|
|
|
|
|
if (cn > 1) |
|
|
|
|
{ |
|
|
|
|
dx = dx.clone(); |
|
|
|
|
dy = dy.clone(); |
|
|
|
|
} |
|
|
|
|
CannyImpl(dx, dy, dst, low_thresh, high_thresh, L2gradient); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void CannyImpl(Mat& dx, Mat& dy, Mat& dst, |
|
|
|
|
double low_thresh, double high_thresh, bool L2gradient) |
|
|
|
|
{ |
|
|
|
|
const int cn = dx.channels(); |
|
|
|
|
const int cols = dx.cols, rows = dx.rows; |
|
|
|
|
|
|
|
|
|
if (L2gradient) |
|
|
|
|
{ |
|
|
|
|
low_thresh = std::min(32767.0, low_thresh); |
|
|
|
@ -702,8 +786,8 @@ while (borderPeaks.try_pop(m)) |
|
|
|
|
int low = cvFloor(low_thresh); |
|
|
|
|
int high = cvFloor(high_thresh); |
|
|
|
|
|
|
|
|
|
ptrdiff_t mapstep = src.cols + 2; |
|
|
|
|
AutoBuffer<uchar> buffer((src.cols+2)*(src.rows+2) + cn * mapstep * 3 * sizeof(int)); |
|
|
|
|
ptrdiff_t mapstep = cols + 2; |
|
|
|
|
AutoBuffer<uchar> buffer((cols+2)*(rows+2) + cn * mapstep * 3 * sizeof(int)); |
|
|
|
|
|
|
|
|
|
int* mag_buf[3]; |
|
|
|
|
mag_buf[0] = (int*)(uchar*)buffer; |
|
|
|
@ -713,9 +797,9 @@ while (borderPeaks.try_pop(m)) |
|
|
|
|
|
|
|
|
|
uchar* map = (uchar*)(mag_buf[2] + mapstep*cn); |
|
|
|
|
memset(map, 1, mapstep); |
|
|
|
|
memset(map + mapstep*(src.rows + 1), 1, mapstep); |
|
|
|
|
memset(map + mapstep*(rows + 1), 1, mapstep); |
|
|
|
|
|
|
|
|
|
int maxsize = std::max(1 << 10, src.cols * src.rows / 10); |
|
|
|
|
int maxsize = std::max(1 << 10, cols * rows / 10); |
|
|
|
|
std::vector<uchar*> stack(maxsize); |
|
|
|
|
uchar **stack_top = &stack[0]; |
|
|
|
|
uchar **stack_bottom = &stack[0]; |
|
|
|
@ -744,17 +828,17 @@ while (borderPeaks.try_pop(m)) |
|
|
|
|
// 0 - the pixel might belong to an edge
|
|
|
|
|
// 1 - the pixel can not belong to an edge
|
|
|
|
|
// 2 - the pixel does belong to an edge
|
|
|
|
|
for (int i = 0; i <= src.rows; i++) |
|
|
|
|
for (int i = 0; i <= rows; i++) |
|
|
|
|
{ |
|
|
|
|
int* _norm = mag_buf[(i > 0) + 1] + 1; |
|
|
|
|
if (i < src.rows) |
|
|
|
|
if (i < rows) |
|
|
|
|
{ |
|
|
|
|
short* _dx = dx.ptr<short>(i); |
|
|
|
|
short* _dy = dy.ptr<short>(i); |
|
|
|
|
|
|
|
|
|
if (!L2gradient) |
|
|
|
|
{ |
|
|
|
|
int j = 0, width = src.cols * cn; |
|
|
|
|
int j = 0, width = cols * cn; |
|
|
|
|
#if CV_SSE2 |
|
|
|
|
if (haveSSE2) |
|
|
|
|
{ |
|
|
|
@ -788,7 +872,7 @@ while (borderPeaks.try_pop(m)) |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
int j = 0, width = src.cols * cn; |
|
|
|
|
int j = 0, width = cols * cn; |
|
|
|
|
#if CV_SSE2 |
|
|
|
|
if (haveSSE2) |
|
|
|
|
{ |
|
|
|
@ -824,7 +908,7 @@ while (borderPeaks.try_pop(m)) |
|
|
|
|
|
|
|
|
|
if (cn > 1) |
|
|
|
|
{ |
|
|
|
|
for(int j = 0, jn = 0; j < src.cols; ++j, jn += cn) |
|
|
|
|
for(int j = 0, jn = 0; j < cols; ++j, jn += cn) |
|
|
|
|
{ |
|
|
|
|
int maxIdx = jn; |
|
|
|
|
for(int k = 1; k < cn; ++k) |
|
|
|
@ -834,7 +918,7 @@ while (borderPeaks.try_pop(m)) |
|
|
|
|
_dy[j] = _dy[maxIdx]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
_norm[-1] = _norm[src.cols] = 0; |
|
|
|
|
_norm[-1] = _norm[cols] = 0; |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
memset(_norm-1, 0, /* cn* */mapstep*sizeof(int)); |
|
|
|
@ -845,7 +929,7 @@ while (borderPeaks.try_pop(m)) |
|
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
uchar* _map = map + mapstep*i + 1; |
|
|
|
|
_map[-1] = _map[src.cols] = 1; |
|
|
|
|
_map[-1] = _map[cols] = 1; |
|
|
|
|
|
|
|
|
|
int* _mag = mag_buf[1] + 1; // take the central row
|
|
|
|
|
ptrdiff_t magstep1 = mag_buf[2] - mag_buf[1]; |
|
|
|
@ -854,17 +938,17 @@ while (borderPeaks.try_pop(m)) |
|
|
|
|
const short* _x = dx.ptr<short>(i-1); |
|
|
|
|
const short* _y = dy.ptr<short>(i-1); |
|
|
|
|
|
|
|
|
|
if ((stack_top - stack_bottom) + src.cols > maxsize) |
|
|
|
|
if ((stack_top - stack_bottom) + cols > maxsize) |
|
|
|
|
{ |
|
|
|
|
int sz = (int)(stack_top - stack_bottom); |
|
|
|
|
maxsize = std::max(maxsize * 3/2, sz + src.cols); |
|
|
|
|
maxsize = std::max(maxsize * 3/2, sz + cols); |
|
|
|
|
stack.resize(maxsize); |
|
|
|
|
stack_bottom = &stack[0]; |
|
|
|
|
stack_top = stack_bottom + sz; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int prev_flag = 0; |
|
|
|
|
for (int j = 0; j < src.cols; j++) |
|
|
|
|
for (int j = 0; j < cols; j++) |
|
|
|
|
{ |
|
|
|
|
#define CANNY_SHIFT 15 |
|
|
|
|
const int TG22 = (int)(0.4142135623730950488016887242097*(1<<CANNY_SHIFT) + 0.5); |
|
|
|
@ -943,18 +1027,18 @@ __ocv_canny_push: |
|
|
|
|
if (!m[mapstep+1]) CANNY_PUSH(m + mapstep + 1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
// the final pass, form the final image
|
|
|
|
|
const uchar* pmap = map + mapstep + 1; |
|
|
|
|
uchar* pdst = dst.ptr(); |
|
|
|
|
for (int i = 0; i < src.rows; i++, pmap += mapstep, pdst += dst.step) |
|
|
|
|
for (int i = 0; i < rows; i++, pmap += mapstep, pdst += dst.step) |
|
|
|
|
{ |
|
|
|
|
for (int j = 0; j < src.cols; j++) |
|
|
|
|
for (int j = 0; j < cols; j++) |
|
|
|
|
pdst[j] = (uchar)-(pmap[j] >> 1); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} // namespace cv
|
|
|
|
|
|
|
|
|
|
void cvCanny( const CvArr* image, CvArr* edges, double threshold1, |
|
|
|
|
double threshold2, int aperture_size ) |
|
|
|
|
{ |
|
|
|
|