|
|
|
Using Golang on processing images and machine learning
|
|
13 points
by hoangvukenshin
3649 days ago
|
|
Hi All,
I'm building a server for mobile application. Server must using OpenCv for processing images and machine learning for searching or some task. So i'm consider use python or golang for server.
Can you suggest something for my choose.Thank you so much |
|
The long answer: It depends on what your biggest constraint is. If your biggest constraint is server cost, then I would suggest C++. C++ has come a long way in terms of web services, and if you are doing both image processing and machine learning, then C++ will give you unparalleled performance and access to libraries. However, if your primary constraint is developer hours, then python is the way to go. You won't have the same explicit control, but for OpenCV and Machine Learning, Python has excellent support and you will end up having much more concise, readable code.