new gpu::HoughLinesP implementation

This commit is contained in:
Vladislav Vinogradov
2012-12-13 17:18:25 +04:00
parent 8c057af862
commit caf91ac159
6 changed files with 190 additions and 84 deletions

View File

@@ -74,7 +74,7 @@ int main(int argc, char** argv)
return 0;
}
cv::gpu::GpuMat dframe(frame), roi(frame.rows, frame.cols, CV_8UC1), trois;
cv::gpu::GpuMat dframe(frame), roi(frame.rows, frame.cols, CV_8UC1);
roi.setTo(cv::Scalar::all(1));
cascade.detect(dframe, roi, objects);