Fixed cv::norm accuracy test allowed error

This commit is contained in:
Andrey Kamaev 2011-12-19 15:15:40 +00:00
parent 209aaac95c
commit ce81868ba4

View File

@ -1246,11 +1246,7 @@ struct NormOp : public BaseElemWiseOp
}
double getMaxErr(int)
{
#ifdef HAVE_TEGRA_OPTIMIZATION
return 2e-6;
#else
return 1e-6;
#endif
return 1e-6;
}
int normType;
};