remove unnecessary cast

This commit is contained in:
atinfinity 2016-05-18 08:32:29 +09:00
parent ef0931be44
commit 1f1464c925

View File

@ -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);
}
}