bandpass butterworth filter implementation in C++

前端 未结 4 1601
醉酒成梦
醉酒成梦 2021-02-03 11:59

I am implementing an image analysis algorithm using openCV and c++, but I found out openCV doesnt have any function for Butterworth Bandpass filter officially. in my project I

4条回答
  •  花落未央
    2021-02-03 12:26

    There are code which could be found online implementing butterworth filter. If you use the source code to try to get result matching MATLAB results, there will be the same problem.Basically the result you got from the code hasn't been normalized, and in the source code there is a variable sff in bwhp.c. If you set that to 1, the problem will be easily solved. I recommend you to use this source code and the source code and usage could be found here

提交回复
热议问题