Opencv vs Opengl for image filters

白昼怎懂夜的黑 提交于 2020-01-06 09:08:13

问题


I'm a complete beginner in image processing thing so please do excuse me if my question is foolish .Basically I'm trying to develope an image filter app .So, when I googled I came to know that both openCV and openGL can be used for this purpose .

But I'm not sure which language would be the best means by speed or efficiency ?

Can anyone please enlighten me about this topic a bit?


回答1:


OpenGL stands for Open Graphics Library. It is a 3D graphic rendering library.

OpenCV stands for Open Computer Vision. It is a computer vision library dealing with on real-time image processing.

If you want to create 3D images, you use OpenGL. If you want to make the computer understand the imagery, you use OpenCV.

Regarding your usecase, ie image filtering, OpenCV is the best for you.



来源:https://stackoverflow.com/questions/52382026/opencv-vs-opengl-for-image-filters

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!