opencv/android/service/doc/LoaderCallbackInterface.rst

53 lines
1.4 KiB
ReStructuredText
Raw Normal View History

2012-06-21 16:50:05 +02:00
*************************
Loader Callback Interface
*************************
.. highlight:: java
.. class:: LoaderCallbackInterface
Interface for a callback object in case of asynchronous initialization of OpenCV.
2012-06-21 16:50:05 +02:00
void onManagerConnected()
-------------------------
2012-06-21 16:50:05 +02:00
.. method:: void onManagerConnected(int status)
Callback method that is called after OpenCV Library initialization.
2012-06-21 16:50:05 +02:00
:param status: status of initialization (see Initialization Status Constants).
2012-06-21 16:50:05 +02:00
void onPackageInstall()
-----------------------
.. method:: void onPackageInstall(InstallCallbackInterface Callback)
Callback method that is called in case when package installation is needed.
2012-06-21 16:50:05 +02:00
:param callback: answer object with approve and cancel methods and package description.
2012-06-21 16:50:05 +02:00
Initialization status constants
-------------------------------
.. data:: SUCCESS
OpenCV initialization finished successfully.
2012-06-21 16:50:05 +02:00
.. data:: RESTART_REQUIRED
OpenCV library installation via Google Play service was initialized. Application restart is required
.. 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