Closed ArcherFMY closed 7 years ago
Hi,
INTER_LINEAR is one of the types in cv::InterpolationFlags, so you may possibly need to check you opencv installation first.
Best, Sifei
@Liusifei
Thank you!
I found it was the problem of the version of the OpenCV.
I replaced 'INTER_NEAREST' with 'CV_INTER_NN' and 'INTER_LINEAR' with 'CV_INTER_LINEAR' and it worked.
Hi,
Thank you for you sharing your codes!
Recently I am studying your ECCV paper---Learning Recursive Filter for Low-Level Vision via a Hybrid Network, and I cloned the codes to my computer.
But I got Some Errors when compiling ImgAffineWarp.cpp & ImgAffineWarp.h 1) the INTER_LINEAR used in ImgAffineWarp.h was not declared 2) the INTER_NEAREST used in ImgAffineWarp.cpp was not declared
Here are the detailed messages:
I'm using GTX1080 + Cuda 8.0 + Opencv3.1
I wonder if there are some modified things in Cuda and Opencv?
Thanks!