Change tizen version 7.5 to 8.0 55/293555/1 accepted/tizen/unified/20230605.170331
authorKwanghoon Son <k.son@samsung.com>
Wed, 31 May 2023 07:30:11 +0000 (16:30 +0900)
committerKwanghoon Son <k.son@samsung.com>
Wed, 31 May 2023 07:30:11 +0000 (16:30 +0900)
[Version] 0.28.2

Change-Id: Ie548bd295c0b3fdd6d70377193da1e6e503e5040
Signed-off-by: Kwanghoon Son <k.son@samsung.com>
18 files changed:
include/mv_barcode_generate.h
include/mv_face_detection_internal.h
include/mv_face_detection_type.h
include/mv_image_classification_internal.h
include/mv_image_classification_type.h
include/mv_inference_type.h
include/mv_object_detection_3d_internal.h
include/mv_object_detection_internal.h
include/mv_object_detection_type.h
mv_common/include/EngineConfig.h
mv_machine_learning/image_classification/include/mv_image_classification_config.h
mv_machine_learning/image_classification/include/mv_image_classification_open.h
mv_machine_learning/object_detection/include/mv_face_detection_open.h
mv_machine_learning/object_detection/include/mv_object_detection_config.h
mv_machine_learning/object_detection/include/mv_object_detection_open.h
mv_machine_learning/object_detection_3d/include/mv_object_detection_3d_config.h
mv_machine_learning/object_detection_3d/include/mv_object_detection_3d_open.h
packaging/capi-media-vision.spec

index ef41953..458789f 100644 (file)
@@ -70,7 +70,7 @@ extern "C" {
  * @brief Defines MV_BARCODE_GENERATE_ATTR_EMBED_IMG_PATH to set
                  Barcode's embed image absolute path attribute of the engine configuration.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_BARCODE_GENERATE_ATTR_EMBED_IMG_PATH "MV_BARCODE_GENERATE_ATTR_EMBED_IMG_PATH"
 
@@ -78,7 +78,7 @@ extern "C" {
  * @brief Defines MV_BARCODE_GENERATE_ATTR_DATA_SHAPE to set
                  Barcode's data shape attribute of the engine configuration.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  * @see mv_barcode_generate_attr_shape_e
  */
 #define MV_BARCODE_GENERATE_ATTR_DATA_SHAPE "MV_BARCODE_GENERATE_ATTR_DATA_SHAPE"
@@ -87,7 +87,7 @@ extern "C" {
  * @brief Defines MV_BARCODE_GENERATE_ATTR_FINDER_SHAPE to set
                  Barcode's finder shape attribute of the engine configuration.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  * @see mv_barcode_generate_attr_shape_e
  */
 #define MV_BARCODE_GENERATE_ATTR_FINDER_SHAPE "MV_BARCODE_GENERATE_ATTR_FINDER_SHAPE"
@@ -99,7 +99,7 @@ extern "C" {
  * be simply ignored.
  *
  * @see mv_engine_config_set_int_attribute
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 typedef enum {
        MV_BARCODE_GENERATE_ATTR_SHAPE_RECT, /**< Rectangular */
index c69aa36..e8d4518 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
  *          mv_face_detection_prepare() function to prepare a network
  *          for the inference.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @remarks The @a infer should be released using mv_face_detection_destroy().
  *
@@ -64,7 +64,7 @@ int mv_face_detection_create(mv_face_detection_h *handle);
  * @internal
  * @brief Destroys inference handle and releases all its resources.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle    The handle to the inference to be destroyed.
  *
@@ -84,7 +84,7 @@ int mv_face_detection_destroy(mv_face_detection_h handle);
  * @brief Sets user-given model information.
  * @details Use this function to change the model information instead of default one after calling @ref mv_face_detection_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the object detection object.
  * @param[in] model_name    Model name.
@@ -106,7 +106,7 @@ int mv_face_detection_set_model(mv_face_detection_h handle, const char *model_na
  * @internal
  * @brief Configures the backend for the object detection inference.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param [in] handle         The handle to the inference
  *
@@ -124,7 +124,7 @@ int mv_face_detection_configure(mv_face_detection_h handle);
  * @details Use this function to prepare the object detection inference based on
  *          the configured network.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the inference.
  *
@@ -144,7 +144,7 @@ int mv_face_detection_prepare(mv_face_detection_h handle);
  * @internal
  * @brief Performs the object detection inference on the @a source.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  * @remarks This function is synchronous and may take considerable time to run.
  *
  * @param[in] handle          The handle to the inference
@@ -169,7 +169,7 @@ int mv_face_detection_inference(mv_face_detection_h handle, mv_source_h source);
  * @internal
  * @brief Gets the object detection inference result on the @a source.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle               The handle to the inference
  * @param[out] number_of_objects  A number of objects detected.
@@ -200,7 +200,7 @@ int mv_face_detection_get_result(mv_face_detection_h handle, unsigned int *numbe
  * @internal
  * @brief Gets the label string to a given index.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle       The handle to the inference
  * @param[in] index       Label index to get the label string.
@@ -225,7 +225,7 @@ int mv_face_detection_get_label(mv_face_detection_h handle, const unsigned int i
  * @brief Sets user-given inference engine and device types for inference.
  * @details Use this function to change the inference engine and device types for inference instead of default ones after calling @ref mv_face_detection_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the object detection object.
  * @param[in] engine_type  A string of inference engine type.
@@ -245,7 +245,7 @@ int mv_face_detection_set_engine(mv_face_detection_h handle, const char *engine_
  * @brief Gets a number of inference engines available for object detection task API.
  * @details Use this function to get how many inference engines are supported for object detection after calling @ref mv_face_detection_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the object detection object.
  * @param[out] engine_count  A number of inference engines available for object detection API.
@@ -264,7 +264,7 @@ int mv_face_detection_get_engine_count(mv_face_detection_h handle, unsigned int
  * @brief Gets engine type to a given inference engine index.
  * @details Use this function to get inference engine type with a given engine index after calling @ref mv_face_detection_get_engine_count().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the object detection object.
  * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -284,7 +284,7 @@ int mv_face_detection_get_engine_type(mv_face_detection_h handle, const unsigned
  * @brief Gets a number of device types available to a given inference engine.
  * @details Use this function to get how many device types are supported for a given inference engine after calling @ref mv_face_detection_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the object detection object.
  * @param[in] engine_type    A inference engine string.
@@ -304,7 +304,7 @@ int mv_face_detection_get_device_count(mv_face_detection_h handle, const char *e
  * @brief Gets device type list available.
  * @details Use this function to get what device types are supported for current inference engine type after calling @ref mv_face_detection_configure().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the object detection object.
  * @param[in] engine_type    A inference engine string.
index dc7eced..6a4e514 100644 (file)
@@ -36,7 +36,7 @@ extern "C" {
 /**
  * @brief The face detection object handle.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 typedef void *mv_face_detection_h;
 
index cdc84b5..9ef41fb 100644 (file)
@@ -31,7 +31,7 @@ extern "C" {
         *          @ref mv_image_classification_prepare() function to prepare
         *               an image classification object.
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[out] out_handle    The handle to the image classification object to be created
         *
@@ -51,7 +51,7 @@ int mv_image_classification_create(mv_image_classification_h *out_handle);
 /**
         * @brief Destroy image classification handle and releases all its resources.
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle    The handle to the image classification object to be destroyed.
         *
@@ -68,7 +68,7 @@ int mv_image_classification_destroy(mv_image_classification_h handle);
 /**
         * @brief Configure the backend to the inference handle
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param [in] handle         The handle to the inference
         *
@@ -84,7 +84,7 @@ int mv_image_classification_configure(mv_image_classification_h handle);
         * @details Use this function to prepare inference based on
         *          the configured network.
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param [in] handle         The handle to the inference
         *
@@ -101,7 +101,7 @@ int mv_image_classification_prepare(mv_image_classification_h handle);
         * @details Use this function to inference with a given source.
         *
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[in] source         The handle to the source of the media.
@@ -123,7 +123,7 @@ int mv_image_classification_inference(mv_image_classification_h handle, mv_sourc
         * @brief Gets the label value as a image classification inference result.
         * @details Use this function to get the label value after calling @ref mv_image_classification_inference().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @remarks The @a result must NOT be released using free()
         *
@@ -143,7 +143,7 @@ int mv_image_classification_get_label(mv_image_classification_h handle, const ch
         * @brief Set user-given model information.
         * @details Use this function to change the model information instead of default one after calling @ref mv_image_classification_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the image classification object.
         * @param[in] model_file    Model file name.
@@ -164,7 +164,7 @@ int mv_image_classification_set_model(mv_image_classification_h handle, const ch
         * @brief Set user-given inference engine and device types for inference.
         * @details Use this function to change the inference engine and device types for inference instead of default ones after calling @ref mv_image_classification_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the image classification object.
         * @param[in] engine_type  A string of inference engine type.
@@ -184,7 +184,7 @@ int mv_image_classification_set_engine(mv_image_classification_h handle, const c
         * @brief Get a number of inference engines available for image classification task API.
         * @details Use this function to get how many inference engines are supported for image classification after calling @ref mv_image_classification_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[out] engine_count  A number of inference engines available for image classification API.
@@ -202,7 +202,7 @@ int mv_image_classification_get_engine_count(mv_image_classification_h handle, u
         * @brief Get engine type to a given inference engine index.
         * @details Use this function to get inference engine type with a given engine index after calling @ref mv_image_classification_get_engine_count().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the image classification object.
         * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -222,7 +222,7 @@ int mv_image_classification_get_engine_type(mv_image_classification_h handle, co
         * @brief Get a number of device types available to a given inference engine.
         * @details Use this function to get how many device types are supported for a given inference engine after calling @ref mv_image_classification_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[in] engine_type    A inference engine string.
@@ -242,7 +242,7 @@ int mv_image_classification_get_device_count(mv_image_classification_h handle, c
         * @brief Get device type list available.
         * @details Use this function to get what device types are supported for current inference engine type after calling @ref mv_image_classification_configure().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[in] engine_type    A inference engine string.
index 8945af1..f0bfd00 100644 (file)
@@ -36,7 +36,7 @@ extern "C" {
 /**
  * @brief The object detection 3d object handle.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 typedef void *mv_image_classification_h;
 
index caaa4fe..f7bf074 100644 (file)
@@ -62,7 +62,7 @@ typedef enum {
        MV_INFERENCE_BACKEND_NONE = -1, /**< None */
        MV_INFERENCE_BACKEND_OPENCV, /**< OpenCV */
        MV_INFERENCE_BACKEND_TFLITE, /**< TensorFlow-Lite */
-       MV_INFERENCE_BACKEND_ARMNN, /**< @deprecated ARMNN (Since 6.0) (Deprecated since 7.5) */
+       MV_INFERENCE_BACKEND_ARMNN, /**< @deprecated ARMNN (Since 6.0) (Deprecated since 8.0) */
        MV_INFERENCE_BACKEND_MLAPI, /**< @deprecated ML Single API of NNStreamer (Deprecated since 7.0) */
        MV_INFERENCE_BACKEND_ONE, /**< On-device Neural Engine (Since 6.0) */
        MV_INFERENCE_BACKEND_NNTRAINER, /**< NNTrainer (Since 7.0) */
index cb46f1a..8eebbdb 100644 (file)
@@ -80,7 +80,7 @@ int mv_object_detection_3d_destroy(mv_object_detection_3d_h infer);
         * @brief Set user-given model information.
         * @details Use this function to change the model information instead of default one after calling @ref mv_object_detection_3d_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the object detection 3d object.
         * @param[in] model_name    Model name.
@@ -225,7 +225,7 @@ int mv_object_detection_3d_get_points(mv_object_detection_3d_h handle, unsigned
         * @brief Set user-given inference engine and device types for inference.
         * @details Use this function to change the inference engine and device types for inference instead of default ones after calling @ref mv_object_detection_3d_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the object detection 3d object.
         * @param[in] engine_type  A string of inference engine type.
@@ -245,7 +245,7 @@ int mv_object_detection_3d_set_engine(mv_object_detection_3d_h handle, const cha
         * @brief Get a number of inference engines available for object detection 3d task API.
         * @details Use this function to get how many inference engines are supported for object detection 3d after calling @ref mv_object_detection_3d_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the object detection 3d object.
         * @param[out] engine_count  A number of inference engines available for object detection 3d API.
@@ -263,7 +263,7 @@ int mv_object_detection_3d_get_engine_count(mv_object_detection_3d_h handle, uns
         * @brief Get engine type to a given inference engine index.
         * @details Use this function to get inference engine type with a given engine index after calling @ref mv_object_detection_3d_get_engine_count().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the object detection 3d object.
         * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -283,7 +283,7 @@ int mv_object_detection_3d_get_engine_type(mv_object_detection_3d_h handle, cons
         * @brief Get a number of device types available to a given inference engine.
         * @details Use this function to get how many device types are supported for a given inference engine after calling @ref mv_object_detection_3d_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the object detection 3d object.
         * @param[in] engine_type    A inference engine string.
@@ -303,7 +303,7 @@ int mv_object_detection_3d_get_device_count(mv_object_detection_3d_h handle, con
         * @brief Get device type list available.
         * @details Use this function to get what device types are supported for current inference engine type after calling @ref mv_object_detection_3d_configure().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the object detection 3d object.
         * @param[in] engine_type    A inference engine string.
index d11dd0f..2be8ee6 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
  *          mv_object_detection_prepare() function to prepare a network
  *          for the inference.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @remarks The @a infer should be released using mv_object_detection_destroy().
  *
@@ -64,7 +64,7 @@ int mv_object_detection_create(mv_object_detection_h *infer);
  * @internal
  * @brief Destroys inference handle and releases all its resources.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] infer    The handle to the inference to be destroyed.
  *
@@ -84,7 +84,7 @@ int mv_object_detection_destroy(mv_object_detection_h infer);
  * @brief Set user-given model information.
  * @details Use this function to change the model information instead of default one after calling @ref mv_object_detection_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the object detection object.
  * @param[in] model_name    Model name.
@@ -106,7 +106,7 @@ int mv_object_detection_set_model(mv_object_detection_h handle, const char *mode
  * @internal
  * @brief Configures the backend for the object detection inference.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param [in] infer         The handle to the inference
  *
@@ -124,7 +124,7 @@ int mv_object_detection_configure(mv_object_detection_h infer);
  * @details Use this function to prepare the object detection inference based on
  *          the configured network.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] infer         The handle to the inference.
  *
@@ -144,7 +144,7 @@ int mv_object_detection_prepare(mv_object_detection_h infer);
  * @internal
  * @brief Performs the object detection inference on the @a source.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  * @remarks This function is synchronous and may take considerable time to run.
  *
  * @param[in] source         The handle to the source of the media
@@ -169,7 +169,7 @@ int mv_object_detection_inference(mv_object_detection_h infer, mv_source_h sourc
  * @internal
  * @brief Gets the object detection inference result on the @a source.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] infer               The handle to the inference
  * @param[out] number_of_objects  A number of objects detected.
@@ -200,7 +200,7 @@ int mv_object_detection_get_result(mv_object_detection_h infer, unsigned int *nu
  * @internal
  * @brief Gets the label string to a given index.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] infer       The handle to the inference
  * @param[in] index       Label index to get the label string.
@@ -225,7 +225,7 @@ int mv_object_detection_get_label(mv_object_detection_h infer, const unsigned in
  * @brief Set user-given inference engine and device types for inference.
  * @details Use this function to change the inference engine and device types for inference instead of default ones after calling @ref mv_object_detection_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the object detection object.
  * @param[in] engine_type  A string of inference engine type.
@@ -245,7 +245,7 @@ int mv_object_detection_set_engine(mv_object_detection_h handle, const char *eng
  * @brief Get a number of inference engines available for object detection task API.
  * @details Use this function to get how many inference engines are supported for object detection after calling @ref mv_object_detection_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the object detection object.
  * @param[out] engine_count  A number of inference engines available for object detection API.
@@ -264,7 +264,7 @@ int mv_object_detection_get_engine_count(mv_object_detection_h handle, unsigned
  * @brief Get engine type to a given inference engine index.
  * @details Use this function to get inference engine type with a given engine index after calling @ref mv_object_detection_get_engine_count().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the object detection object.
  * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -285,7 +285,7 @@ int mv_object_detection_get_engine_type(mv_object_detection_h handle, const unsi
  * @brief Get a number of device types available to a given inference engine.
  * @details Use this function to get how many device types are supported for a given inference engine after calling @ref mv_object_detection_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the object detection object.
  * @param[in] engine_type    A inference engine string.
@@ -306,7 +306,7 @@ int mv_object_detection_get_device_count(mv_object_detection_h handle, const cha
  * @brief Get device type list available.
  * @details Use this function to get what device types are supported for current inference engine type after calling @ref mv_object_detection_configure().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the object detection object.
  * @param[in] engine_type    A inference engine string.
index c5d4f50..52d4dcc 100644 (file)
@@ -36,7 +36,7 @@ extern "C" {
 /**
  * @brief The object detection object handle.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 typedef void *mv_object_detection_h;
 
index 29183b4..e34dfca 100644 (file)
@@ -144,7 +144,7 @@ public:
        /**
         * @brief Gets integer attribute value by attribute name.
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         * @param [in]  key          The string name of the attribute
         * @param [out] value         The vector attribute value of integer to be obtained
         * @return @c MEDIA_VISION_ERROR_NONE on success,\n
index 250b6ca..9c4d6a0 100644 (file)
@@ -21,7 +21,7 @@
  * @brief Defines #MV_IMAGE_CLASSIFICATION_MODEL_DEFAULT_PATH
  *        to set the image classification default path.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_IMAGE_CLASSIFICATION_MODEL_DEFAULT_PATH "MODEL_DEFAULT_PATH"
 
@@ -29,7 +29,7 @@
  * @brief Defines #MV_IMAGE_CLASSIFICATION_MODEL_FILE_NAME
  *        to set the image classification model file path.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_IMAGE_CLASSIFICATION_MODEL_FILE_NAME "MODEL_FILE_NAME"
 
@@ -40,7 +40,7 @@
  *          node names, input tensor's width and height,
  *          mean and standard deviation values for pre-processing.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_IMAGE_CLASSIFICATION_MODEL_META_FILE_NAME "META_FILE_NAME"
 
@@ -49,7 +49,7 @@
  *        models's label file attribute of the engine configuration.
  * @details The file includes inference model's label file.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_IMAGE_CLASSIFICATION_MODEL_LABEL_FILE_NAME "LABEL_FILE_NAME"
 
@@ -57,7 +57,7 @@
  * @brief Defines #MV_IMAGE_CLASSIFICATION_BACKEND_TYPE
  *        to set inference backend engine type. In default, tensorflow lite is used.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_IMAGE_CLASSIFICATION_BACKEND_TYPE "BACKEND_TYPE"
 
@@ -65,7 +65,7 @@
  * @brief Defines #MV_IMAGE_CLASSIFICATION_TARGET_DEVICE_TYPE
  *        to set inference target device type. In default, CPU device is used.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_IMAGE_CLASSIFICATION_TARGET_DEVICE_TYPE "TARGET_DEVICE_TYPE"
 
index aac63bd..31dfc8c 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
         *          @ref mv_image_classification_prepare_open() function to prepare
         *               an image classification object.
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[out] out_handle    The handle to the image classification object to be created
         *
@@ -52,7 +52,7 @@ int mv_image_classification_create_open(mv_image_classification_h *out_handle);
 /**
         * @brief Destroy image classification handle and releases all its resources.
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle    The handle to the image classification object to be destroyed.
         *
@@ -69,7 +69,7 @@ int mv_image_classification_destroy_open(mv_image_classification_h handle);
 /**
         * @brief Configure the backend to the inference handle
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param [in] handle         The handle to the inference
         *
@@ -85,7 +85,7 @@ int mv_image_classification_configure_open(mv_image_classification_h handle);
         * @details Use this function to prepare inference based on
         *          the configured network.
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param [in] handle         The handle to the inference
         *
@@ -102,7 +102,7 @@ int mv_image_classification_prepare_open(mv_image_classification_h handle);
         * @details Use this function to inference with a given source.
         *
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[in] source         The handle to the source of the media.
@@ -124,7 +124,7 @@ int mv_image_classification_inference_open(mv_image_classification_h handle, mv_
         * @brief Gets the label value as a image classification inference result.
         * @details Use this function to get the label value after calling @ref mv_image_classification_inference().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @remarks The @a result must NOT be released using free()
         *
@@ -144,7 +144,7 @@ int mv_image_classification_get_label_open(mv_image_classification_h handle, con
         * @brief Set user-given model information.
         * @details Use this function to change the model information instead of default one after calling @ref mv_image_classification_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the image classification object.
         * @param[in] model_file    Model file name.
@@ -165,7 +165,7 @@ int mv_image_classification_set_model_open(mv_image_classification_h handle, con
         * @brief Set user-given backend and device types for inference.
         * @details Use this function to change the backend and device types for inference instead of default ones after calling @ref mv_image_classification_create_open().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the image classification object.
         * @param[in] backend_type  A string of backend type.
@@ -185,7 +185,7 @@ int mv_image_classification_set_engine_open(mv_image_classification_h handle, co
         * @brief Get a number of inference engines available for image classification task API.
         * @details Use this function to get how many inference engines are supported for image classification after calling @ref mv_image_classification_create_open().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[out] engine_count  A number of inference engines available for image classification API.
@@ -203,7 +203,7 @@ int mv_image_classification_get_engine_count_open(mv_image_classification_h hand
         * @brief Get engine type to a given inference engine index.
         * @details Use this function to get inference engine type with a given engine index after calling @ref mv_image_classification_get_engine_count().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the image classification object.
         * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -223,7 +223,7 @@ int mv_image_classification_get_engine_type_open(mv_image_classification_h handl
         * @brief Get a number of device types available to a given inference engine.
         * @details Use this function to get how many device types are supported for a given inference engine after calling @ref mv_image_classification_create_open().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[in] engine_type    A inference engine string.
@@ -243,7 +243,7 @@ int mv_image_classification_get_device_count_open(mv_image_classification_h hand
         * @brief Get device type list available.
         * @details Use this function to get what device types are supported for current inference engine type after calling @ref mv_image_classification_configure().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[in] engine_type    A inference engine string.
index 9203f79..6741d35 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
  *          @ref mv_face_detection_prepare_open() function to prepare
  *               an face detection object.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[out] handle    The handle to the face detection object to be created
  *
@@ -70,7 +70,7 @@ int mv_face_detection_destroy_open(mv_face_detection_h handle);
  * @brief Set user-given model information.
  * @details Use this function to change the model information instead of default one after calling @ref mv_face_detection_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the face detection object.
  * @param[in] model_name    Model name.
@@ -91,7 +91,7 @@ int mv_face_detection_set_model_open(mv_face_detection_h handle, const char *mod
 /**
  * @brief Configure the backend to the inference handle
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param [in] handle         The handle to the inference
  *
@@ -107,7 +107,7 @@ int mv_face_detection_configure_open(mv_face_detection_h handle);
  * @details Use this function to prepare inference based on
  *          the configured network.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param [in] handle         The handle to the inference
  *
@@ -124,7 +124,7 @@ int mv_face_detection_prepare_open(mv_face_detection_h handle);
  * @details Use this function to inference with a given source.
  *
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the face detection object.
  * @param[in] source         The handle to the source of the media.
@@ -146,7 +146,7 @@ int mv_face_detection_inference_open(mv_face_detection_h handle, mv_source_h sou
 /**
  * @brief Gets the face detection inference result on the @a source.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle              The handle to the inference
  * @param[out] number_of_objects  A number of objects detected.
@@ -176,7 +176,7 @@ int mv_face_detection_get_result_open(mv_face_detection_h handle, unsigned int *
 /**
  * @brief Gets the label string to a given index.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle       The handle to the inference
  * @param[in] index       Label index to get the label string.
@@ -200,7 +200,7 @@ int mv_face_detection_get_label_open(mv_face_detection_h handle, const unsigned
  * @brief Sets user-given backend and device types for inference.
  * @details Use this function to change the backend and device types for inference instead of default ones after calling @ref mv_face_detection_create_open().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the image classification object.
  * @param[in] backend_type  A string of backend type.
@@ -219,7 +219,7 @@ int mv_face_detection_set_engine_open(mv_face_detection_h handle, const char *ba
  * @brief Gets a number of inference engines available for image classification task API.
  * @details Use this function to get how many inference engines are supported for image classification after calling @ref mv_face_detection_create_open().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the image classification object.
  * @param[out] engine_count  A number of inference engines available for image classification API.
@@ -237,7 +237,7 @@ int mv_face_detection_get_engine_count_open(mv_face_detection_h handle, unsigned
  * @brief Gets engine type to a given inference engine index.
  * @details Use this function to get inference engine type with a given engine index after calling @ref mv_face_detection_get_engine_count().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the image classification object.
  * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -257,7 +257,7 @@ int mv_face_detection_get_engine_type_open(mv_face_detection_h handle, const uns
  * @brief Gets a number of device types available to a given inference engine.
  * @details Use this function to get how many device types are supported for a given inference engine after calling @ref mv_face_detection_create_open().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the image classification object.
  * @param[in] engine_type    A inference engine string.
@@ -277,7 +277,7 @@ int mv_face_detection_get_device_count_open(mv_face_detection_h handle, const ch
  * @brief Gets device type list available.
  * @details Use this function to get what device types are supported for current inference engine type after calling @ref mv_face_detection_configure().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the image classification object.
  * @param[in] engine_type    A inference engine string.
index 55514cf..32d527d 100644 (file)
@@ -21,7 +21,7 @@
  * @brief Defines #MV_OBJECT_DETECTION_MODEL_DEFAULT_PATH
  *        to set the object detection default path.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_OBJECT_DETECTION_MODEL_DEFAULT_PATH "MODEL_DEFAULT_PATH"
 
@@ -29,7 +29,7 @@
  * @brief Defines #MV_OBJECT_DETECTION_MODEL_FILE_PATH
  *        to set the object detection model file path.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_OBJECT_DETECTION_MODEL_FILE_PATH "MODEL_FILE_NAME"
 
@@ -40,7 +40,7 @@
  *          node names, input tensor's width and height,
  *          mean and standard deviation values for pre-processing.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_OBJECT_DETECTION_MODEL_META_FILE_PATH "META_FILE_NAME"
 
@@ -50,7 +50,7 @@
  * @brief Defines #MV_OBJECT_DETECT_BACKEND_TYPE
  *        to set inference backend engine type. In default, tensorflow lite is used.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_OBJECT_DETECTION_BACKEND_TYPE "BACKEND_TYPE"
 
@@ -58,7 +58,7 @@
  * @brief Defines #MV_OBJECT_DETECT_TARGET_DEVICE_TYPE
  *        to set inference target device type. In default, CPU device is used.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_OBJECT_DETECTION_TARGET_DEVICE_TYPE "TARGET_DEVICE_TYPE"
 
index 815a273..ae9c529 100644 (file)
@@ -70,7 +70,7 @@ int mv_object_detection_destroy_open(mv_object_detection_h handle);
         * @brief Set user-given model information.
         * @details Use this function to change the model information instead of default one after calling @ref mv_object_detection_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the object detection object.
         * @param[in] model_name    Model name.
@@ -146,7 +146,7 @@ int mv_object_detection_inference_open(mv_object_detection_h handle, mv_source_h
 /**
  * @brief Gets the object detection inference result on the @a source.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle              The handle to the inference
  * @param[out] number_of_objects  A number of objects detected.
@@ -176,7 +176,7 @@ int mv_object_detection_get_result_open(mv_object_detection_h handle, unsigned i
 /**
  * @brief Gets the label string to a given index.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] infer       The handle to the inference
  * @param[in] index       Label index to get the label string.
@@ -200,7 +200,7 @@ int mv_object_detection_get_label_open(mv_object_detection_h handle, const unsig
         * @brief Set user-given backend and device types for inference.
         * @details Use this function to change the backend and device types for inference instead of default ones after calling @ref mv_object_detection_create_open().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the image classification object.
         * @param[in] backend_type  A string of backend type.
@@ -220,7 +220,7 @@ int mv_object_detection_set_engine_open(mv_object_detection_h handle, const char
         * @brief Get a number of inference engines available for image classification task API.
         * @details Use this function to get how many inference engines are supported for image classification after calling @ref mv_object_detection_create_open().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[out] engine_count  A number of inference engines available for image classification API.
@@ -238,7 +238,7 @@ int mv_object_detection_get_engine_count_open(mv_object_detection_h handle, unsi
         * @brief Get engine type to a given inference engine index.
         * @details Use this function to get inference engine type with a given engine index after calling @ref mv_object_detection_get_engine_count().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the image classification object.
         * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -258,7 +258,7 @@ int mv_object_detection_get_engine_type_open(mv_object_detection_h handle, const
         * @brief Get a number of device types available to a given inference engine.
         * @details Use this function to get how many device types are supported for a given inference engine after calling @ref mv_object_detection_create_open().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[in] engine_type    A inference engine string.
@@ -278,7 +278,7 @@ int mv_object_detection_get_device_count_open(mv_object_detection_h handle, cons
         * @brief Get device type list available.
         * @details Use this function to get what device types are supported for current inference engine type after calling @ref mv_object_detection_configure().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the image classification object.
         * @param[in] engine_type    A inference engine string.
index 64a0f90..8dd8e37 100644 (file)
@@ -21,7 +21,7 @@
  * @brief Defines #MV_OBJECT_DETECTION_3D_MODEL_DEFAULT_PATH
  *        to set the object detection default path.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 #define MV_OBJECT_DETECTION_3D_MODEL_DEFAULT_PATH "MODEL_DEFAULT_PATH"
 
index 5207cf0..a0a2260 100644 (file)
@@ -185,7 +185,7 @@ int mv_object_detection_3d_get_points_open(mv_object_detection_3d_h handle, unsi
         * @brief Set user-given model information.
         * @details Use this function to change the model information instead of default one after calling @ref mv_object_detection_3d_create().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the object detection 3d object.
         * @param[in] model_name    Model name.
@@ -206,7 +206,7 @@ int mv_object_detection_3d_set_model_open(mv_object_detection_3d_h handle, const
         * @brief Set user-given backend and device types for inference.
         * @details Use this function to change the backend and device types for inference instead of default ones after calling @ref mv_object_detection_3d_create_open().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the object detection 3d object.
         * @param[in] backend_type  A string of backend type.
@@ -226,7 +226,7 @@ int mv_object_detection_3d_set_engine_open(mv_object_detection_3d_h handle, cons
         * @brief Get a number of inference engines available for object detection 3d task API.
         * @details Use this function to get how many inference engines are supported for object detection 3d after calling @ref mv_object_detection_3d_create_open().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the object detection 3d object.
         * @param[out] engine_count  A number of inference engines available for object detection 3d API.
@@ -244,7 +244,7 @@ int mv_object_detection_3d_get_engine_count_open(mv_object_detection_3d_h handle
         * @brief Get engine type to a given inference engine index.
         * @details Use this function to get inference engine type with a given engine index after calling @ref mv_object_detection_3d_get_engine_count().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle        The handle to the object detection 3d object.
         * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -264,7 +264,7 @@ int mv_object_detection_3d_get_engine_type_open(mv_object_detection_3d_h handle,
         * @brief Get a number of device types available to a given inference engine.
         * @details Use this function to get how many device types are supported for a given inference engine after calling @ref mv_object_detection_3d_create_open().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the object detection 3d object.
         * @param[in] engine_type    A inference engine string.
@@ -284,7 +284,7 @@ int mv_object_detection_3d_get_device_count_open(mv_object_detection_3d_h handle
         * @brief Get device type list available.
         * @details Use this function to get what device types are supported for current inference engine type after calling @ref mv_object_detection_3d_configure().
         *
-        * @since_tizen 7.5
+        * @since_tizen 8.0
         *
         * @param[in] handle         The handle to the object detection 3d object.
         * @param[in] engine_type    A inference engine string.
index ba4752c..73019f9 100644 (file)
@@ -1,6 +1,6 @@
 Name:        capi-media-vision
 Summary:     Media Vision library for Tizen Native API
-Version:     0.28.1
+Version:     0.28.2
 Release:     0
 Group:       Multimedia/Framework
 License:     Apache-2.0 and BSD-3-Clause