mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 07:13:02 +04:00
[+] Pixel types via templates
[+] Color conversions stub via pixel types [+] Pyramid calculation (required for mipmaps in CUDA 4.1) [~] Changed C strings to C++ throughout NCV [~] Fixed a couple of bugs in NCV
This commit is contained in:
@@ -68,10 +68,7 @@ namespace
|
||||
|
||||
namespace
|
||||
{
|
||||
void outputHandler(const char* msg)
|
||||
{
|
||||
CV_Error(CV_GpuApiCallError, msg);
|
||||
}
|
||||
static void outputHandler(const std::string &msg) { CV_Error(CV_GpuApiCallError, msg.c_str()); }
|
||||
}
|
||||
|
||||
void cv::gpu::BroxOpticalFlow::operator ()(const GpuMat& frame0, const GpuMat& frame1, GpuMat& u, GpuMat& v, Stream& s)
|
||||
|
||||
Reference in New Issue
Block a user