OpenCV Image Processing — C++ vs C vs Python

后端 未结 4 1022
执笔经年
执笔经年 2021-02-01 17:20

I was thinking of trying OpenCV for a project and noticed that it had C, C++ and Python.

I am trying to figure out whether I should use C++, C or Python -- and would lik

4条回答
  •  你的背包
    2021-02-01 18:04

    I think it depends how proficient you are in C++. The Mat interface does appear more modern than the old IPLImage C interface. The problem I'm having is that most of the examples you'll find on the web, or even here on stackoverflow are for the C interface (e.g. cvCvtColor), not for the C++ interface. So I'm really struggling to port the C examples to C++.

提交回复
热议问题