int mv_create_source(
mv_source_h *source)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(source);
MEDIA_VISION_FUNCTION_ENTER();
int mv_destroy_source(
mv_source_h source)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_FUNCTION_ENTER();
mv_source_h source,
media_packet_h media_packet)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_INSTANCE_CHECK(media_packet);
unsigned int image_height,
mv_colorspace_e image_colorspace)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_NULL_ARG_CHECK(data_buffer);
int mv_source_clear(
mv_source_h source)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_FUNCTION_ENTER();
unsigned char **data_buffer,
unsigned int *buffer_size)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_NULL_ARG_CHECK(data_buffer);
MEDIA_VISION_NULL_ARG_CHECK(buffer_size);
mv_source_h source,
unsigned int *image_height)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_NULL_ARG_CHECK(image_height);
mv_source_h source,
unsigned int *image_width)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_NULL_ARG_CHECK(image_width);
mv_source_h source,
mv_colorspace_e *image_colorspace)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_NULL_ARG_CHECK(image_colorspace);
int mv_create_engine_config(
mv_engine_config_h *engine_cfg)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(engine_cfg);
MEDIA_VISION_FUNCTION_ENTER();
int mv_destroy_engine_config(
mv_engine_config_h engine_cfg)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(engine_cfg);
MEDIA_VISION_FUNCTION_ENTER();
const char *name,
double value)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(engine_cfg);
MEDIA_VISION_NULL_ARG_CHECK(name);
const char *name,
int value)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(engine_cfg);
MEDIA_VISION_NULL_ARG_CHECK(name);
const char *name,
bool value)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(engine_cfg);
MEDIA_VISION_NULL_ARG_CHECK(name);
const char *name,
const char *value)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(engine_cfg);
MEDIA_VISION_NULL_ARG_CHECK(name);
MEDIA_VISION_NULL_ARG_CHECK(value);
const char *name,
double *value)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(engine_cfg);
MEDIA_VISION_NULL_ARG_CHECK(name);
MEDIA_VISION_NULL_ARG_CHECK(value);
const char *name,
int *value)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(engine_cfg);
MEDIA_VISION_NULL_ARG_CHECK(name);
MEDIA_VISION_NULL_ARG_CHECK(value);
const char *name,
bool *value)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(engine_cfg);
MEDIA_VISION_NULL_ARG_CHECK(name);
MEDIA_VISION_NULL_ARG_CHECK(value);
const char *name,
char **value)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(engine_cfg);
MEDIA_VISION_NULL_ARG_CHECK(name);
MEDIA_VISION_NULL_ARG_CHECK(value);
mv_supported_attribute_cb callback,
void *user_data)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(callback);
MEDIA_VISION_FUNCTION_ENTER();
mv_face_detected_cb detected_cb,
void *user_data)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_NULL_ARG_CHECK(detected_cb);
mv_face_recognized_cb recognized_cb,
void *user_data)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_INSTANCE_CHECK(recognition_model);
MEDIA_VISION_NULL_ARG_CHECK(recognized_cb);
bool do_learn,
void *user_data)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_INSTANCE_CHECK(tracking_model);
MEDIA_VISION_NULL_ARG_CHECK(tracked_cb);
mv_face_eye_condition_recognized_cb eye_condition_recognized_cb,
void *user_data)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_NULL_ARG_CHECK(eye_condition_recognized_cb);
mv_face_facial_expression_recognized_cb expression_recognized_cb,
void *user_data)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_NULL_ARG_CHECK(expression_recognized_cb);
int mv_face_recognition_model_create(
mv_face_recognition_model_h *recognition_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(recognition_model);
MEDIA_VISION_FUNCTION_ENTER();
int mv_face_recognition_model_destroy(
mv_face_recognition_model_h recognition_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(recognition_model);
MEDIA_VISION_FUNCTION_ENTER();
mv_face_recognition_model_h src,
mv_face_recognition_model_h *dst)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(src);
MEDIA_VISION_NULL_ARG_CHECK(dst);
const char *file_name,
mv_face_recognition_model_h recognition_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(recognition_model);
if (file_name == NULL)
const char *file_name,
mv_face_recognition_model_h *recognition_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(recognition_model);
if (file_name == NULL)
const mv_rectangle_s *example_location,
int face_label)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_INSTANCE_CHECK(recognition_model);
mv_face_recognition_model_h recognition_model,
int *face_label)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(recognition_model);
MEDIA_VISION_FUNCTION_ENTER();
mv_engine_config_h engine_cfg,
mv_face_recognition_model_h recognition_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(recognition_model);
MEDIA_VISION_FUNCTION_ENTER();
int **labels,
unsigned int *number_of_labels)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(recognition_model);
MEDIA_VISION_NULL_ARG_CHECK(labels);
MEDIA_VISION_NULL_ARG_CHECK(number_of_labels);
int mv_face_tracking_model_create(
mv_face_tracking_model_h *tracking_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(tracking_model);
MEDIA_VISION_FUNCTION_ENTER();
int mv_face_tracking_model_destroy(
mv_face_tracking_model_h tracking_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(tracking_model);
MEDIA_VISION_FUNCTION_ENTER();
mv_source_h source,
mv_quadrangle_s *location)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(tracking_model);
MEDIA_VISION_INSTANCE_CHECK(source);
mv_face_tracking_model_h src,
mv_face_tracking_model_h *dst)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(src);
MEDIA_VISION_NULL_ARG_CHECK(dst);
const char *file_name,
mv_face_tracking_model_h tracking_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(tracking_model);
if (file_name == NULL)
const char *file_name,
mv_face_tracking_model_h *tracking_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_face_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(tracking_model);
if (file_name == NULL)
mv_image_recognized_cb recognized_cb,
void *user_data)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_NULL_ARG_CHECK(image_objects);
int object_num = 0;
mv_image_tracked_cb tracked_cb,
void *user_data)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(source);
MEDIA_VISION_INSTANCE_CHECK(image_tracking_model);
MEDIA_VISION_NULL_ARG_CHECK(tracked_cb);
int mv_image_object_create(
mv_image_object_h *image_object)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(image_object);
MEDIA_VISION_FUNCTION_ENTER();
int mv_image_object_destroy(
mv_image_object_h image_object)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_object);
MEDIA_VISION_FUNCTION_ENTER();
mv_source_h source,
mv_rectangle_s *location)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_object);
MEDIA_VISION_INSTANCE_CHECK(source);
mv_image_object_h image_object,
double *recognition_rate)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_object);
MEDIA_VISION_NULL_ARG_CHECK(recognition_rate);
mv_image_object_h image_object,
int label)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_object);
MEDIA_VISION_FUNCTION_ENTER();
mv_image_object_h image_object,
int *label)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_object);
MEDIA_VISION_NULL_ARG_CHECK(label);
mv_image_object_h src,
mv_image_object_h *dst)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(src);
MEDIA_VISION_NULL_ARG_CHECK(dst);
int mv_image_object_save(
const char *file_name, mv_image_object_h image_object)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_object);
if (file_name == NULL)
int mv_image_object_load(
const char *file_name, mv_image_object_h *image_object)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(image_object);
if (file_name == NULL)
int mv_image_tracking_model_create(
mv_image_tracking_model_h *image_tracking_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(image_tracking_model);
MEDIA_VISION_FUNCTION_ENTER();
mv_image_object_h image_object,
mv_image_tracking_model_h image_tracking_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_tracking_model);
MEDIA_VISION_INSTANCE_CHECK(image_object);
int mv_image_tracking_model_destroy(
mv_image_tracking_model_h image_tracking_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_tracking_model);
MEDIA_VISION_FUNCTION_ENTER();
mv_image_tracking_model_h image_tracking_model,
mv_engine_config_h engine_cfg)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_tracking_model);
MEDIA_VISION_FUNCTION_ENTER();
mv_image_tracking_model_h src,
mv_image_tracking_model_h *dst)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(src);
MEDIA_VISION_NULL_ARG_CHECK(dst);
int mv_image_tracking_model_save(
const char *file_name, mv_image_tracking_model_h image_tracking_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_INSTANCE_CHECK(image_tracking_model);
if (file_name == NULL)
int mv_image_tracking_model_load(
const char *file_name, mv_image_tracking_model_h *image_tracking_model)
{
- MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported);
+ MEDIA_VISION_SUPPORT_CHECK(__mv_image_check_system_info_feature_supported());
MEDIA_VISION_NULL_ARG_CHECK(image_tracking_model);
if (file_name == NULL)
bool __mv_check_system_info_feature_supported()
{
- // return true is temporary added to allow correct flow for UTC
- // todo: remove when vision.barcode_detection and vision.barcode_generation
- // will be added
- return true;
-
bool isBarcodeDetectionSupported = false;
bool isBarcodeGenerationSupported = false;
bool isFaceRecognitionSupported = false;
const int nRetVal4 = system_info_get_platform_bool("http://tizen.org/feature/vision.image_recognition", &isImageRecognitionSupported);
- if (nRetVal2 != SYSTEM_INFO_ERROR_NONE)
+ if (nRetVal4 != SYSTEM_INFO_ERROR_NONE)
{
LOGE("[%s] SYSTEM_INFO_ERROR: __FUNCTION__");
return false;
}
+
(isBarcodeDetectionSupported || isBarcodeGenerationSupported ||
isFaceRecognitionSupported || isImageRecognitionSupported) ?
LOGI("system_info_get_platform_bool returned"
bool __mv_barcode_detect_check_system_info_feature_supported()
{
- // return true is temporary added to allow correct flow for UTC
- // todo: remove when vision.barcode_detection feature will be added
- return true;
-
bool isBarcodeDetectionSupported = false;
const int nRetVal = system_info_get_platform_bool("http://tizen.org/feature/vision.barcode_detection", &isBarcodeDetectionSupported);
bool __mv_barcode_generate_check_system_info_feature_supported()
{
- // return true is temporary added to allow correct flow for UTC
- // todo: remove when vision.barcode_generation feature will be added
- return true;
-
bool isBarcodeGenerationSupported = false;
const int nRetVal = system_info_get_platform_bool("http://tizen.org/feature/vision.barcode_generation", &isBarcodeGenerationSupported);
bool __mv_face_check_system_info_feature_supported()
{
- // return true is temporary added to allow correct flow for UTC
- // todo: remove when vision.face_recognition feature will be added
- return true;
-
bool isFaceRecognitionSupported = false;
const int nRetVal = system_info_get_platform_bool("http://tizen.org/feature/vision.face_recognition", &isFaceRecognitionSupported);
bool __mv_image_check_system_info_feature_supported()
{
- // return true is temporary added to allow correct flow for UTC
- // todo: remove when vision.image_recognition feature will be added
- return true;
-
bool isImageRecognitionSupported = false;
const int nRetVal = system_info_get_platform_bool("http://tizen.org/feature/vision.image_recognition", &isImageRecognitionSupported);