How opencv 4.x API is different from previous version?

前端 未结 3 2023
别那么骄傲
别那么骄傲 2021-02-07 06:08

I noted that opencv 4 is released and one difference is that API changed to be c++11 compliant.

What this really means?

How should I change my codes to be compat

3条回答
  •  鱼传尺愫
    2021-02-07 06:32

    I think the most vital impact is you need to use a c++11 compiler.

    Also, it may not change the interface but allow them to make use of the updated Language changes, such as smart pointers, etc.

提交回复
热议问题