remove unnecessary cast

pull/6546/head
atinfinity 9 years ago
parent ef0931be44
commit 1f1464c925
  1. 2
      modules/imgproc/src/thresh.cpp

@ -1210,7 +1210,7 @@ public:
}
else if( srcStripe.depth() == CV_64F )
{
thresh_64f(srcStripe, dstStripe, (double)thresh, (double)maxval, thresholdType);
thresh_64f(srcStripe, dstStripe, thresh, maxval, thresholdType);
}
}

Loading…
Cancel
Save