Which language is best suited for image processing ? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 1

Which language is best suited for image processing ?

I have been using MATLAB for this purpose in my college days. Currently I am learning python. Interested to know if any one has to share some thoughts on this

3rd Jul 2017, 7:35 PM
Ajay Prabhu
Ajay Prabhu - avatar
3 Antworten
+ 1
Image processing is a very low level execution that requires precise memory management, consistency and security. If you want to have effective image processing then you need C or highest C++ The duo provide the lowest control to you for doing such tasks. You can use Python because of its many libraries. But i wud prefer C
3rd Jul 2017, 8:03 PM
Zemuldo
Zemuldo - avatar
0
Python can handle image processing pretty easily. Modules such as numpy make this almost effortless. Heck, this was demonstrated in one of my lectures within 10 minutes. A few lines of code and you can easily identify patterns, and manipulate them (outline a specific object in an image for example). I can't speak for other languages on their effectiveness, but I can tell you first hand that Python is more than capable of handling the job with ease.
4th Jul 2017, 5:29 AM
Sapphire
0
Thanks guys.. Lemme try numpy
4th Jul 2017, 6:30 AM
Ajay Prabhu
Ajay Prabhu - avatar