added data type check for back projection fix

pull/2468/head
mlyashko 11 years ago
parent 702a2a6ff6
commit 5252aa8fdd
  1. 4
      modules/imgproc/src/histogram.cpp

@ -2035,6 +2035,10 @@ static bool ocl_calcBackProject( InputArrayOfArrays _images, std::vector<int> ch
Size size = images[0].size();
int depth = images[0].depth();
//kernels are valid for this type only
if (depth != CV_8U)
return false;
for (size_t i = 1; i < nimages; ++i)
{
const UMat & m = images[i];

Loading…
Cancel
Save