mirror of
https://github.com/opencv/opencv.git
synced 2024-12-14 08:59:11 +08:00
25 lines
747 B
C++
25 lines
747 B
C++
|
#include "HardwareDetector_jni.h"
|
||
|
#include "HardwareDetector.h"
|
||
|
#include <jni.h>
|
||
|
#include <string>
|
||
|
|
||
|
JNIEXPORT jint JNICALL Java_org_opencv_engine_manager_HardwareDetector_GetCpuID(JNIEnv* env, jclass)
|
||
|
{
|
||
|
return GetCpuID();
|
||
|
}
|
||
|
|
||
|
JNIEXPORT jstring JNICALL Java_org_opencv_engine_manager_HardwareDetector_GetPlatformName(JNIEnv* env, jclass)
|
||
|
{
|
||
|
std::string hardware_name = GetPlatformName();
|
||
|
return env->NewStringUTF(hardware_name.c_str());
|
||
|
}
|
||
|
|
||
|
JNIEXPORT jint JNICALL Java_org_opencv_engine_manager_HardwareDetector_GetProcessorCount(JNIEnv* env, jclass)
|
||
|
{
|
||
|
return GetProcessorCount();
|
||
|
}
|
||
|
|
||
|
JNIEXPORT jint JNICALL Java_org_opencv_engine_manager_HardwareDetector_DetectKnownPlatforms(JNIEnv* env, jclass)
|
||
|
{
|
||
|
return DetectKnownPlatforms();
|
||
|
}
|