cpp-examples-ipcv
cpp-examples-ipcv copied to clipboard
C++ Image Processing and Computer Vision OpenCV Examples used for Teaching
Results
1
cpp-examples-ipcv issues
Sort by
recently updated
recently updated
newest added
Hello Toby, Line 157 in butterworth_lowpass.cpp we read `Mat toMerge[] = { tmp, tmp };` I believe that we should read `Mat toMerge[] = { tmp, Mat::zeros(tmp.size(), CV_32F) };` as...