Which is the better programming language? [closed]
Hi I want to develop a face recognition application in which i need as higher speed as possible speed. I wanted to know which language to use? C++, python or java, which will give me the highest speed?
Basically digging deep in C++ optimizations using SSE and NEON instructions will get you the fastest processing possible. Keep in mind that the others always come as wrapper functionality as far as I understand (someone correct me if I am wrong here), so I would say, definitely C++!
As @StevenPuttemans said, C++ would the best and it gives you the freedom to optimize your code. Python is also a very nice programming language for some applications. Sometimes you a very simple class, in which writing it in python could be more practical than C++. Honestly speaking, if you don't try most of them you won't get a clear picture you want.