Back to project page android-opencv-template.
The source code is released under:
MIT License
If you think the Android project android-opencv-template listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.opencv.android; /*ww w . ja va 2s .c o m*/ /** * Installation callback interface. */ public interface InstallCallbackInterface { /** * New package installation is required. */ static final int NEW_INSTALLATION = 0; /** * Current package installation is in progress. */ static final int INSTALLATION_PROGRESS = 1; /** * Target package name. * @return Return target package name. */ public String getPackageName(); /** * Installation is approved. */ public void install(); /** * Installation is canceled. */ public void cancel(); /** * Wait for package installation. */ public void wait_install(); };