Using AKAZE for feature extraction using opencv on android is extreamly slow, how can it be made faster ?

asked 2015-10-05 05:44:27 -0600

Pallavi gravatar image

updated 2015-10-05 05:45:37 -0600

Hi ,

I am using AKAZE for feature extraction, and it is very slow compared to other feature extractors such as FAST. Any way to make it faster.

edit retag flag offensive close merge delete

Comments

Have you tried downscaling or compressing image before finding feature points. It is usually better to do image processing on a server, then access the services from android.

iamprivate gravatar imageiamprivate ( 2015-10-11 00:53:25 -0600 )edit

I have not down scaled the image,but i am just extracting descriptors and sending it to the server and there the matching happens.

Pallavi gravatar imagePallavi ( 2015-10-12 23:36:54 -0600 )edit

I personally prefer 512 x (previous height/previous width)*512 downsizing to extract descriptors. Reason being that modern phones have really good camera and algorithm ll slow down operating on such high quality image

iamprivate gravatar imageiamprivate ( 2015-10-18 09:02:32 -0600 )edit