Commit 7e15f2ac authored by Roman Donchenko's avatar Roman Donchenko Committed by OpenCV Buildbot

Merge pull request #1141 from apavlenko:fix_warning_unreach_code

parents 1b38d1e6 6b047ca0
...@@ -777,8 +777,7 @@ calcHist_( vector<uchar*>& _ptrs, const vector<int>& _deltas, ...@@ -777,8 +777,7 @@ calcHist_( vector<uchar*>& _ptrs, const vector<int>& _deltas,
#ifdef HAVE_TBB #ifdef HAVE_TBB
calcHist1D_Invoker<T> body(_ptrs, _deltas, hist, _uniranges, size[0], dims, imsize); calcHist1D_Invoker<T> body(_ptrs, _deltas, hist, _uniranges, size[0], dims, imsize);
parallel_for(BlockedRange(0, imsize.height), body); parallel_for(BlockedRange(0, imsize.height), body);
return; #else
#endif
double a = uniranges[0], b = uniranges[1]; double a = uniranges[0], b = uniranges[1];
int sz = size[0], d0 = deltas[0], step0 = deltas[1]; int sz = size[0], d0 = deltas[0], step0 = deltas[1];
const T* p0 = (const T*)ptrs[0]; const T* p0 = (const T*)ptrs[0];
...@@ -801,14 +800,15 @@ calcHist_( vector<uchar*>& _ptrs, const vector<int>& _deltas, ...@@ -801,14 +800,15 @@ calcHist_( vector<uchar*>& _ptrs, const vector<int>& _deltas,
((int*)H)[idx]++; ((int*)H)[idx]++;
} }
} }
#endif //HAVE_TBB
return;
} }
else if( dims == 2 ) else if( dims == 2 )
{ {
#ifdef HAVE_TBB #ifdef HAVE_TBB
calcHist2D_Invoker<T> body(_ptrs, _deltas, hist, _uniranges, size, dims, imsize, hstep); calcHist2D_Invoker<T> body(_ptrs, _deltas, hist, _uniranges, size, dims, imsize, hstep);
parallel_for(BlockedRange(0, imsize.height), body); parallel_for(BlockedRange(0, imsize.height), body);
return; #else
#endif
double a0 = uniranges[0], b0 = uniranges[1], a1 = uniranges[2], b1 = uniranges[3]; double a0 = uniranges[0], b0 = uniranges[1], a1 = uniranges[2], b1 = uniranges[3];
int sz0 = size[0], sz1 = size[1]; int sz0 = size[0], sz1 = size[1];
int d0 = deltas[0], step0 = deltas[1], int d0 = deltas[0], step0 = deltas[1],
...@@ -837,6 +837,8 @@ calcHist_( vector<uchar*>& _ptrs, const vector<int>& _deltas, ...@@ -837,6 +837,8 @@ calcHist_( vector<uchar*>& _ptrs, const vector<int>& _deltas,
((int*)(H + hstep0*idx0))[idx1]++; ((int*)(H + hstep0*idx0))[idx1]++;
} }
} }
#endif //HAVE_TBB
return;
} }
else if( dims == 3 ) else if( dims == 3 )
{ {
......
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