1 | initial version |
Hi,
The statement that you are executing has a syntax error because the arguments does not match the defination of the function: cv::gpu::filter2D(gpuPatch, gpuResponse, CV_32F, m_model.weights[i], cv::Point(-1, -1), 0, cv::BORDER_CONSTANT);
Try executing the following statement, you wont get a compile time error: cv::gpu::filter2D(gpuPatch, gpuResponse, CV_32F, m_model.weights[i], cv::Point(-1, -1),cv::BORDER_CONSTANT);
2 | No.2 Revision |
Hi,
The statement that you are executing has a syntax error because the arguments does do not match the defination of the function:
cv::gpu::filter2D(gpuPatch, gpuResponse, CV_32F, m_model.weights[i], cv::Point(-1, -1), 0, cv::BORDER_CONSTANT);
Try executing the following statement, you wont get a compile time error: cv::gpu::filter2D(gpuPatch, gpuResponse, CV_32F, m_model.weights[i], cv::Point(-1, -1),cv::BORDER_CONSTANT);