Commit a6aff185 authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

removed check disabling GPU face detection under Linux, i've checked -- it works

parent e06557c4
......@@ -264,10 +264,6 @@ Size cv::gpu::CascadeClassifier_GPU::getClassifierSize() const
int cv::gpu::CascadeClassifier_GPU::detectMultiScale( const GpuMat& image, GpuMat& objectsBuf, double scaleFactor, int minNeighbors, Size minSize)
{
#if !defined(_MSC_VER)
CV_Assert(!"FD under not-VS2008 is not implemented");
#endif
CV_Assert( scaleFactor > 1 && image.depth() == CV_8U);
CV_Assert( !this->empty());
......
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