Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open CV samples prompt for OpenCV Manager download

Open CV applications for android prompts me to download and install Open CV Manager... I just want to know whether there will be a prompt in every application that uses the OpenCV library?If yes is there any way to avoid this? Thanking you in advance for your valuable efforts

like image 732
Sreekanth Karumanaghat Avatar asked Jul 27 '12 09:07

Sreekanth Karumanaghat


2 Answers

Yes, with opencv 2.4.2 it will prompt IF you do not have the opencv manager installed (yet).

The way to avoid that is explained here:

like image 153
Rui Marques Avatar answered Nov 03 '22 02:11

Rui Marques


You should read static initialization on opencv.org

Brief: you add native libraries to your project libs folder.

After in generally or with_manager style Library loads with ..initAsync(...) method. You should change this to initDebug().

Your project runs without needs Manager.

like image 22
atasoyh Avatar answered Nov 03 '22 02:11

atasoyh