mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
************************* |
|
Loader Callback Interface |
|
************************* |
|
|
|
.. highlight:: java |
|
.. class:: LoaderCallbackInterface |
|
|
|
Interface for a callback object in case of asynchronous initialization of OpenCV. |
|
|
|
void onManagerConnected() |
|
------------------------- |
|
|
|
.. method:: void onManagerConnected(int status) |
|
|
|
Callback method that is called after OpenCV Library initialization. |
|
|
|
:param status: status of initialization (see Initialization Status Constants). |
|
|
|
void onPackageInstall() |
|
----------------------- |
|
|
|
.. method:: void onPackageInstall(InstallCallbackInterface Callback) |
|
|
|
Callback method that is called in case when package installation is needed. |
|
|
|
:param callback: answer object with approve and cancel methods and package description. |
|
|
|
Initialization status constants |
|
------------------------------- |
|
|
|
.. data:: SUCCESS |
|
|
|
OpenCV initialization finished successfully |
|
|
|
.. data:: MARKET_ERROR |
|
|
|
Google Play (Android Market) cannot be invoked |
|
|
|
.. data:: INSTALL_CANCELED |
|
|
|
OpenCV library installation was canceled by user |
|
|
|
.. data:: INCOMPATIBLE_MANAGER_VERSION |
|
|
|
Version of OpenCV Manager Service is incompatible with this app. Service update is needed |
|
|
|
.. data:: INIT_FAILED |
|
|
|
OpenCV library initialization failed |