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.
38 lines
1.0 KiB
38 lines
1.0 KiB
#ifndef __OPEN_CV_ENGINE_H__ |
|
#define __OPEN_CV_ENGINE_H__ |
|
|
|
#include "EngineCommon.h" |
|
#include "IOpenCVEngine.h" |
|
#include "BnOpenCVEngine.h" |
|
#include "IPackageManager.h" |
|
#include <binder/IInterface.h> |
|
#include <binder/Parcel.h> |
|
#include <utils/String8.h> |
|
#include <utils/String16.h> |
|
#include <string> |
|
#include <set> |
|
|
|
class OpenCVEngine: public BnOpenCVEngine |
|
{ |
|
public: |
|
OpenCVEngine(IPackageManager* PkgManager); |
|
int32_t GetVersion(); |
|
android::String16 GetLibPathByVersion(android::String16 version); |
|
virtual android::String16 GetLibraryList(android::String16 version); |
|
bool InstallVersion(android::String16 version); |
|
|
|
protected: |
|
IPackageManager* PackageManager; |
|
static const std::set<std::string> KnownVersions; |
|
|
|
OpenCVEngine(); |
|
static std::set<std::string> InitKnownOpenCVersions(); |
|
bool ValidateVersionString(const std::string& version); |
|
std::string NormalizeVersionString(std::string version); |
|
bool FixPermissions(const std::string& path); |
|
|
|
static const int Platform; |
|
static const int CpuID; |
|
}; |
|
|
|
#endif |