Commit 90c398ea authored by Seon-Wook Park's avatar Seon-Wook Park

spatialGradient: Add CV_SSE2 check

parent ed38ca51
...@@ -128,7 +128,7 @@ void spatialGradient( InputArray _src, OutputArray _dx, OutputArray _dy, ...@@ -128,7 +128,7 @@ void spatialGradient( InputArray _src, OutputArray _dx, OutputArray _dy,
int i_start = 0; int i_start = 0;
int j_start = 0; int j_start = 0;
#if CV_SIMD128 #if CV_SIMD128 && CV_SSE2
uchar *m_src; uchar *m_src;
short *n_dx, *n_dy; short *n_dx, *n_dy;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment