Which is the better programming language? [closed]

asked 2014-08-19 07:56:33 -0600

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?

edit retag flag offensive reopen merge delete

Closed for the following reason the question is answered, right answer was accepted by sturkmen
close date 2020-10-11 11:04:59.790121

Comments

2

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++!

StevenPuttemans gravatar imageStevenPuttemans ( 2014-08-19 08:00:21 -0600 )edit
1

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.

hadoofi gravatar imagehadoofi ( 2014-08-19 10:35:04 -0600 )edit