Fix Tizen version 7.5 to 8.0
authorKwanghoon Son <k.son@samsung.com>
Mon, 22 May 2023 03:57:29 +0000 (12:57 +0900)
committerKwanghoon Son <k.son@samsung.com>
Tue, 4 Jul 2023 05:08:39 +0000 (14:08 +0900)
Change-Id: I402983dbe9509106342772030270fac3feb1d836
Signed-off-by: Kwanghoon Son <k.son@samsung.com>
include/mv_facial_landmark_internal.h
include/mv_facial_landmark_type.h
include/mv_pose_landmark_internal.h
include/mv_pose_landmark_type.h

index b405f1ede1448eb2d8a97f7e1d1787d7975926a6..55f91bee57b4cc3a990acf1061949913c2360bf5 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
  *          mv_facial_landmark_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_facial_landmark_destroy().
  *
@@ -64,7 +64,7 @@ int mv_facial_landmark_create(mv_facial_landmark_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_facial_landmark_destroy(mv_facial_landmark_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_facial_landmark_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the facial landmark object.
  * @param[in] model_name    Model name.
@@ -106,7 +106,7 @@ int mv_facial_landmark_set_model(mv_facial_landmark_h handle, const char *model_
  * @internal
  * @brief Configures the backend for the facial landmark inference.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param [in] handle         The handle to the inference
  *
@@ -124,7 +124,7 @@ int mv_facial_landmark_configure(mv_facial_landmark_h handle);
  * @details Use this function to prepare the facial landmark 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_facial_landmark_prepare(mv_facial_landmark_h handle);
  * @internal
  * @brief Performs the facial landmark 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_facial_landmark_inference(mv_facial_landmark_h handle, mv_source_h source
  * @internal
  * @brief Gets the facial landmark positions on the @a source.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle               The handle to the inference
  * @param[out] number_of_landmarks A number of landmarks detected.
@@ -196,7 +196,7 @@ int mv_facial_landmark_get_positions(mv_facial_landmark_h handle, unsigned int *
  * @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_facial_landmark_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the facial landmark object.
  * @param[in] engine_type  A string of inference engine type.
@@ -216,7 +216,7 @@ int mv_facial_landmark_set_engine(mv_facial_landmark_h handle, const char *engin
  * @brief Gets a number of inference engines available for facial landmark task API.
  * @details Use this function to get how many inference engines are supported for facial landmark after calling @ref mv_facial_landmark_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the facial landmark object.
  * @param[out] engine_count  A number of inference engines available for facial landmark API.
@@ -235,7 +235,7 @@ int mv_facial_landmark_get_engine_count(mv_facial_landmark_h handle, unsigned in
  * @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_facial_landmark_get_engine_count().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the facial landmark object.
  * @param[in] engine_index  A inference engine index for getting the inference engine type.
@@ -256,7 +256,7 @@ int mv_facial_landmark_get_engine_type(mv_facial_landmark_h handle, const unsign
  * @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_facial_landmark_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the facial landmark object.
  * @param[in] engine_type    A inference engine string.
@@ -277,7 +277,7 @@ int mv_facial_landmark_get_device_count(mv_facial_landmark_h handle, const char
  * @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_facial_landmark_configure().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle         The handle to the facial landmark object.
  * @param[in] engine_type    A inference engine string.
index 68a467bad6804176712039d9e7421ed16bd01725..8aeefc038f9db5f2787e2294c7ac0f58e84912bb 100644 (file)
@@ -36,7 +36,7 @@ extern "C" {
 /**
  * @brief The facial landmark object handle.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 typedef void *mv_facial_landmark_h;
 
index 50d932d18fedc73289f2156e96adb8eb05243164..8543bb6e6e516e3a8aa859d6360982013145fb45 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
  *          @ref mv_pose_landmark_prepare() function to prepare
  *               an pose landmark object.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[out] out_handle    The handle to the pose landmark object to be created
  *
@@ -52,7 +52,7 @@ int mv_pose_landmark_create(mv_pose_landmark_h *out_handle);
 /**
  * @brief Destroys pose landmark handle and releases all its resources.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle    The handle to the pose landmark object to be destroyed.
  *
@@ -70,7 +70,7 @@ int mv_pose_landmark_destroy(mv_pose_landmark_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_pose_landmark_create().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in] handle        The handle to the pose landmark object.
  * @param[in] model_name    Model name.
@@ -91,7 +91,7 @@ int mv_pose_landmark_set_model(mv_pose_landmark_h handle, const char *model_name
 /**
  * @brief Configures 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_pose_landmark_configure(mv_pose_landmark_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_pose_landmark_prepare(mv_pose_landmark_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 pose landmark object.
  * @param[in] source         The handle to the source of the media.
@@ -146,7 +146,7 @@ int mv_pose_landmark_inference(mv_pose_landmark_h handle, mv_source_h source);
 /**
  * @brief Gets the pose landmark positions on the @a source.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  * @remarks pos_x and pos_y arrays are allocated internally by the framework and will remain valid
  *          until the handle is returned.
  *          Please do not deallocate them directly, and if you want to use them after the handle is returned,
@@ -175,7 +175,7 @@ int mv_pose_landmark_get_pos(mv_pose_landmark_h handle, unsigned int *number_of_
  * @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_pose_landmark_create().
  *
- * @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.
@@ -194,7 +194,7 @@ int mv_pose_landmark_set_engine(mv_pose_landmark_h handle, const char *backend_t
  * @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_pose_landmark_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.
@@ -212,7 +212,7 @@ int mv_pose_landmark_get_engine_count(mv_pose_landmark_h handle, unsigned int *e
  * @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_pose_landmark_get_engine_count().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  * @remarks engine_type array is allocated internally by the framework and will remain valid
  *          until the handle is returned.
  *          Please do not deallocate it directly, and if you want to use it after the handle is returned,
@@ -234,7 +234,7 @@ int mv_pose_landmark_get_engine_type(mv_pose_landmark_h handle, const unsigned i
  * @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_pose_landmark_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.
@@ -253,7 +253,7 @@ int mv_pose_landmark_get_device_count(mv_pose_landmark_h handle, const char *eng
  * @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_pose_landmark_configure().
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  * @remarks device_type array is allocated internally by the framework and will remain valid
  *          until the handle is returned.
  *          Please do not deallocate it directly, and if you want to use it after the handle is returned,
index 038f787a610b25ecd294fa1aa9bf47e1a6027d8c..c5f53daa8be1dd5ae94daea3ffaef6b5b76586ce 100644 (file)
@@ -36,7 +36,7 @@ extern "C" {
 /**
  * @brief The pose landmark object handle.
  *
- * @since_tizen 7.5
+ * @since_tizen 8.0
  */
 typedef void *mv_pose_landmark_h;