I am using the wrapped version of the OpenCV
image processing library for java (opencv java api
by OpenCv) in order to detect cars' plates at the real time. Where in order to do so, I must gain the maximum possible processing speed for better performance, so I intended to try moving the calculations into the GPU where the OpenCV
library has added, since 2010, what is called the OpenCV GPU module into the c++ library
, supported by NVIDIA-CUDA
. However, After a lot of research, I find that this GPU module is not supported in any of the opencv java api
versions.
Then the question says:
Is it ever possible in JAVA to move the OpenCv
processing procedures to the GPU without this GPU module? or is there any wrapped version out there for the OpenCv
that supports this module in JAVA? or any other ideas?!!
Any help would be appreciated. Thanks in advance!!