OpenCV Image Processing — C++ vs C vs Python

后端 未结 4 946
执笔经年
执笔经年 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 17:58

    Actually Python binding was finished starting with release 2.2. So i would go with python if i were you, because the performance will be almost the same anyway as you are using c libraries in both cases. However python will get you there faster, safely and you will spend more time on your algorithm rather than getting things to build and run not mentioning memory management hassles

提交回复
热议问题