mv_machine_learning: change API version of object detection task group 50/304850/3
authorInki Dae <inki.dae@samsung.com>
Wed, 24 Jan 2024 09:05:50 +0000 (18:05 +0900)
committerInki Dae <inki.dae@samsung.com>
Thu, 25 Jan 2024 05:22:10 +0000 (05:22 +0000)
[Issue type] : version change

Object detection task groups are targeted to Tizen 9.0

Change-Id: I1e8a5b2977dc9d55dde6c95b8164c458b29db6ac
Signed-off-by: Inki Dae <inki.dae@samsung.com>
include/mv_face_detection_internal.h
include/mv_object_detection_internal.h

index a241e6f4f31d278f7baac639583361582169605e..d4b6d3e7589fc31e7127161a6ec03bc9438981df 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
  *          mv_face_detection_prepare() function to prepare a network
  *          for the inference.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.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 8.0
+ * @since_tizen 9.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 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle        The handle to the face 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 face detection inference.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.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 face detection inference based on
  *          the configured network.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.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 face detection inference on the @a source.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.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 Performs asynchronously the face detection inference on the @a source.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.0
  * @remarks This function operates asynchronously, so it returns immediately upon invocation.
  *          The inference results are inserted into the outgoing queue within the framework
  *          in the order of processing, and the results can be obtained through mv_face_detection_get_result()
@@ -197,7 +197,7 @@ int mv_face_detection_inference_async(mv_face_detection_h handle, mv_source_h so
  * @internal
  * @brief Gets the face detection inference result on the @a source.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle       The handle to the inference
  * @param[out] result_cnt  A number of results.
@@ -220,7 +220,7 @@ int mv_face_detection_get_result_count(mv_face_detection_h handle, unsigned int
  * @internal
  * @brief Gets the face detection inference result on the @a source.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle              The handle to the inference
  * @param[in] index               A result index.
@@ -253,7 +253,7 @@ int mv_face_detection_get_result(mv_face_detection_h handle, unsigned int index,
  * @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 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle        The handle to the face detection object.
  * @param[in] engine_type  A string of inference engine type.
@@ -273,7 +273,7 @@ int mv_face_detection_set_engine(mv_face_detection_h handle, const char *engine_
  * @brief Gets a number of inference engines available for face detection task API.
  * @details Use this function to get how many inference engines are supported for face detection after calling @ref mv_face_detection_create().
  *
- * @since_tizen 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle         The handle to the face detection object.
  * @param[out] engine_count  A number of inference engines available for face detection API.
@@ -292,7 +292,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 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle        The handle to the face detection object.
  * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -312,7 +312,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 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle         The handle to the face detection object.
  * @param[in] engine_type    A inference engine string.
@@ -332,7 +332,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 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle         The handle to the face detection object.
  * @param[in] engine_type    A inference engine string.
index 24e8529efad46203bf8071e563cffcc64d88c06b..61360787a626ff0725f317fc5df88c8b17831f77 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
  *          mv_object_detection_prepare() function to prepare a network
  *          for the inference.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.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 8.0
+ * @since_tizen 9.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 8.0
+ * @since_tizen 9.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 8.0
+ * @since_tizen 9.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 8.0
+ * @since_tizen 9.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 8.0
+ * @since_tizen 9.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 Performs asynchronously the object detection inference on the @a source.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.0
  * @remarks This function operates asynchronously, so it returns immediately upon invocation.
  *          The inference results are inserted into the outgoing queue within the framework
  *          in the order of processing, and the results can be obtained through mv_object_detection_get_result()
@@ -197,7 +197,7 @@ int mv_object_detection_inference_async(mv_object_detection_h handle, mv_source_
  * @internal
  * @brief Gets the object detection inference result on the @a source.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle       The handle to the inference
  * @param[out] result_cnt  A number of results.
@@ -220,7 +220,7 @@ int mv_object_detection_get_result_count(mv_object_detection_h handle, unsigned
  * @internal
  * @brief Gets the object detection inference result on the @a source.
  *
- * @since_tizen 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle              The handle to the inference
  * @param[in] index               A result index.
@@ -253,7 +253,7 @@ int mv_object_detection_get_result(mv_object_detection_h handle, unsigned int 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 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle        The handle to the object detection object.
  * @param[in] engine_type  A string of inference engine type.
@@ -273,7 +273,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 8.0
+ * @since_tizen 9.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.
@@ -292,7 +292,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 8.0
+ * @since_tizen 9.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.
@@ -313,7 +313,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 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle         The handle to the object detection object.
  * @param[in] engine_type    A inference engine string.
@@ -334,7 +334,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 8.0
+ * @since_tizen 9.0
  *
  * @param[in] handle         The handle to the object detection object.
  * @param[in] engine_type    A inference engine string.