我正在编写一个Web应用程序,其唯一目的是处理用户提供的图像。
我明白,大量的编程语言有助于服务器端的图像处理和一些基本的功能等,但是我的关注点是哪些可能是用于穷举图像处理的最好的编程语言/库?
我目前正计划以任何语言(如PHP / Python)完成Web应用程序/用户界面,并将所有图像处理工作委托给专用服务器,并使用c / c ++编写我的应用程序逻辑。
提前致谢
I'm writing a web application whose sole intention is to process the images provided by the user.
I do understand that a multitude of programming languages facilitate server-side image manipulation and some basic functionality etc., but my concern here is which might be the best programming language/ libraries for exhaustive image processing ?
I'm currently planning to do the web application/user-interface in any of the languages i.e. PHP/ Python and delegate all the image-manipulation work to a dedicated server, with my application logic written in c/c++.
thanks in advance
最满意答案
Image Magick对于图像缩放/裁剪等标准内容以及一些更基本的图像处理来说是个不错的选择。 如果您正在进行更复杂的图像处理或更高级别的计算机视觉任务(如面部检测),我会推荐OpenCV,它是一个用于运行实时任务的c ++库。
Image Magick is a good choice for standard stuff like image scaling/cropping and some more basic image manipulations. If you are into more sophisticated image-processing or higher level computer vision tasks like face detection I would recommend OpenCV which is a c++ library meant for running realtime tasks.
Web应用程序图像处理[关闭](web application image processing [closed])我正在编写一个Web应用程序,其唯一目的是处理用户提供的图像。
我明白,大量的编程语言有助于服务器端的图像处理和一些基本的功能等,但是我的关注点是哪些可能是用于穷举图像处理的最好的编程语言/库?
我目前正计划以任何语言(如PHP / Python)完成Web应用程序/用户界面,并将所有图像处理工作委托给专用服务器,并使用c / c ++编写我的应用程序逻辑。
提前致谢
I'm writing a web application whose sole intention is to process the images provided by the user.
I do understand that a multitude of programming languages facilitate server-side image manipulation and some basic functionality etc., but my concern here is which might be the best programming language/ libraries for exhaustive image processing ?
I'm currently planning to do the web application/user-interface in any of the languages i.e. PHP/ Python and delegate all the image-manipulation work to a dedicated server, with my application logic written in c/c++.
thanks in advance
最满意答案
Image Magick对于图像缩放/裁剪等标准内容以及一些更基本的图像处理来说是个不错的选择。 如果您正在进行更复杂的图像处理或更高级别的计算机视觉任务(如面部检测),我会推荐OpenCV,它是一个用于运行实时任务的c ++库。
Image Magick is a good choice for standard stuff like image scaling/cropping and some more basic image manipulations. If you are into more sophisticated image-processing or higher level computer vision tasks like face detection I would recommend OpenCV which is a c++ library meant for running realtime tasks.
发布评论