Differences between AForge and OpenCV

后端 未结 3 1784
深忆病人
深忆病人 2021-01-30 10:49

I am just learning about computer vision and C#. It seems like two prominent image processing libraries are OpenCV and AForge. What are some of the differences of the two?

3条回答
  •  臣服心动
    2021-01-30 10:55

    Well, why not using both ;) ??

    I am using (literally in C# ... lol) EMGUCV.NET (which is an OpenCV C# wrapper) and AFORGE.NET at the same time:

    AFORGE.NET plus its "Image Processing Lab" makes much sense for filtering options (edge detection, thresholds, and so forth) and easing viewing functionalities.

    OpenCV provides all the rest like SIFT/SURF and other more sophisticated image processing routines.

    That's why you use .NET: simply bring all the components you need together in one application :)

提交回复
热议问题