Differences between AForge and OpenCV

后端 未结 3 1769
深忆病人
深忆病人 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条回答
  •  萌比男神i
    2021-01-30 11:04

    I am using OpenCV for a project in school right now, and I browsed the documentation for AForge and their feature seem to differ. AForge has lots of filters and is probably excellent for different transforms and image manipulation. But it seems to lack quite a bit in other areas. I could not find any matrix operations which was a disappointment as it is so useful in computer vision. Our current project (3D point cloud reconstruction from an image sequence) would, as far as I could see from the docs, be impossible to do with AForge alone.

    Combine AForge with a good linear algebra library and you might have something really useful though.

    As for OpenCV it has a rich feature set but is a bit tricky to program with.

提交回复
热议问题