mv_machine_learning: fix header description 85/317185/1
authorInki Dae <inki.dae@samsung.com>
Thu, 5 Sep 2024 08:34:46 +0000 (17:34 +0900)
committerInki Dae <inki.dae@samsung.com>
Thu, 5 Sep 2024 08:34:46 +0000 (17:34 +0900)
Issue type : bug fix
Version : 1.0.9

Just fix header description about incorrect error type.

Change-Id: I88a2d3d1571b6aae70840002e8fe269d6a2861fe
Signed-off-by: Inki Dae <inki.dae@samsung.com>
include/mv_face_detection.h
include/mv_facial_landmark.h
include/mv_image_classification.h
include/mv_object_detection.h
include/mv_object_detection_3d_internal.h
include/mv_pose_landmark.h
include/mv_selfie_segmentation_internal.h
packaging/capi-media-vision.spec

index cab4fb3a954d012ec4d5c0d8af0c8a8e76277942..c4f638e0b5837375775b86aaead19ba656a0ab0e 100644 (file)
@@ -51,7 +51,7 @@ extern "C" {
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #MEDIA_VISION_ERROR_INTERNAL Internal Error
  *
  * @code
  * #include <mv_face_detection.h>
@@ -134,7 +134,6 @@ int mv_face_detection_prepare(mv_face_detection_h handle);
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -164,7 +163,6 @@ int mv_face_detection_inference(mv_face_detection_h handle, mv_source_h source);
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -191,7 +189,6 @@ int mv_face_detection_inference_async(mv_face_detection_h handle, mv_source_h so
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_face_detection_create()
@@ -218,7 +215,6 @@ int mv_face_detection_get_result_count(mv_face_detection_h handle, unsigned long
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_face_detection_create()
index 2ef1d448ba7d5a89854e0b9f3db56c37f8b3946a..a699c05b508787797bcdb4743d4388474687060f 100644 (file)
@@ -51,7 +51,7 @@ extern "C" {
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #MEDIA_VISION_ERROR_INTERNAL Internal Error
  *
  * @code
  * #include <mv_facial_landmark.h>
@@ -134,7 +134,6 @@ int mv_facial_landmark_prepare(mv_facial_landmark_h handle);
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -163,7 +162,6 @@ int mv_facial_landmark_inference(mv_facial_landmark_h handle, mv_source_h source
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -190,7 +188,6 @@ int mv_facial_landmark_inference_async(mv_facial_landmark_h handle, mv_source_h
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_facial_landmark_create()
@@ -227,7 +224,6 @@ int mv_facial_landmark_get_result_count(mv_facial_landmark_h handle, unsigned lo
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_facial_landmark_create()
index 3ec40d2bc0982fdd9151d1a0844e46529910f47d..f542353bb7face2e6daa7ecc798ba727318121ff 100644 (file)
@@ -48,7 +48,7 @@ extern "C" {
  * @return @c 0 on success, otherwise a negative error value
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #MEDIA_VISION_ERROR_INTERNAL Internal Error
  *
  * @post Release @a handle by using mv_image_classification_destroy() function when
  *       it is not needed anymore.
@@ -157,7 +157,6 @@ int mv_image_classification_inference(mv_image_classification_h handle, mv_sourc
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -184,7 +183,6 @@ int mv_image_classification_inference_async(mv_image_classification_h handle, mv
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_image_classification_create()
@@ -211,7 +209,6 @@ int mv_image_classification_get_result_count(mv_image_classification_h handle, u
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_image_classification_create()
index 5a4badefa5dda1b092de4c2250ab4fbb3951da45..07092c10c09ea649a268f57a3965077d6fc073ec 100644 (file)
@@ -51,7 +51,7 @@ extern "C" {
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #MEDIA_VISION_ERROR_INTERNAL Internal Error
  *
  * @code
  * #include <mv_object_detection.h>
@@ -134,7 +134,6 @@ int mv_object_detection_prepare(mv_object_detection_h infer);
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -164,7 +163,6 @@ int mv_object_detection_inference(mv_object_detection_h infer, mv_source_h sourc
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -191,7 +189,6 @@ int mv_object_detection_inference_async(mv_object_detection_h handle, mv_source_
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_object_detection_create()
@@ -218,7 +215,6 @@ int mv_object_detection_get_result_count(mv_object_detection_h handle, unsigned
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_object_detection_create()
index 165322ca72d953518bd7ace99958c41a804745b4..3191077d50c6a8dceb7f5a39cf1fc133d31ac84f 100644 (file)
@@ -51,7 +51,7 @@ extern "C" {
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #MEDIA_VISION_ERROR_INTERNAL Internal Error
  *
  * @see mv_object_detection_3d_destroy()
  * @see mv_object_detection_3d_prepare()
@@ -147,7 +147,6 @@ int mv_object_detection_3d_prepare(mv_object_detection_3d_h handle);
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -174,7 +173,6 @@ int mv_object_detection_3d_inference(mv_object_detection_3d_h handle, mv_source_
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_object_detect_3d_create()
@@ -200,7 +198,6 @@ int mv_object_detection_3d_get_result_count(mv_object_detection_3d_h handle, uns
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_object_detect_3d_create()
@@ -227,7 +224,6 @@ int mv_object_detection_3d_get_point_count(mv_object_detection_3d_h handle, unsi
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_object_detect_3d_create()
index e74ae9646005ba23cfcb18073b80546e6454e310..568ac077263bc46632657cb911b23a62c953e4a8 100644 (file)
@@ -48,7 +48,7 @@ extern "C" {
  * @return @c 0 on success, otherwise a negative error value
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #MEDIA_VISION_ERROR_INTERNAL Internal Error
  *
  * @post Release @a handle by using
  *       mv_pose_landmark_destroy() function when it is not needed
@@ -160,7 +160,6 @@ int mv_pose_landmark_inference(mv_pose_landmark_h handle, mv_source_h source);
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -187,7 +186,6 @@ int mv_pose_landmark_inference_async(mv_pose_landmark_h handle, mv_source_h sour
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_pose_landmark_create()
@@ -223,7 +221,6 @@ int mv_pose_landmark_get_result_count(mv_pose_landmark_h handle, unsigned long *
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_pose_landmark_create()
index 849015de2f29a53b331e65f7f198cbe4176c1f31..c7d773034530885808676c5496dac821dde99975 100644 (file)
@@ -53,7 +53,7 @@ extern "C" {
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #MEDIA_VISION_ERROR_INTERNAL Internal Error
  *
  * @see mv_selfie_segmentation_destroy()
  * @see mv_selfie_segmentation_prepare()
@@ -154,7 +154,6 @@ int mv_selfie_segmentation_prepare(mv_selfie_segmentation_h handle);
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -182,7 +181,6 @@ int mv_selfie_segmentation_inference(mv_selfie_segmentation_h handle, mv_source_
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
  *                                                  isn't supported
  *
@@ -209,7 +207,6 @@ int mv_selfie_segmentation_inference_async(mv_selfie_segmentation_h handle, mv_s
  * @retval #MEDIA_VISION_ERROR_NONE Successful
  * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
  * @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_VISION_ERROR_INTERNAL          Internal error
  *
  * @pre Create a source handle by calling mv_create_source()
  * @pre Create an inference handle by calling mv_object_detect_create()
index c130c3c83603b515c33c479549d381ef57a6e6fa..5ba658a9d6e4e2adfbf1e9429ab91e808f74499f 100644 (file)
@@ -1,6 +1,6 @@
 Name:        capi-media-vision
 Summary:     Media Vision library for Tizen Native API
-Version:     1.0.8
+Version:     1.0.9
 Release:     0
 Group:       Multimedia/Framework
 License:     Apache-2.0