summaryrefslogtreecommitdiff
path: root/mv_inference/inference/include/mv_inference_open.h
diff options
context:
space:
mode:
Diffstat (limited to 'mv_inference/inference/include/mv_inference_open.h')
-rw-r--r--mv_inference/inference/include/mv_inference_open.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/mv_inference/inference/include/mv_inference_open.h b/mv_inference/inference/include/mv_inference_open.h
index 43ce8e41..3e3225f4 100644
--- a/mv_inference/inference/include/mv_inference_open.h
+++ b/mv_inference/inference/include/mv_inference_open.h
@@ -491,49 +491,6 @@ extern "C"
mv_inference_facial_landmark_detected_cb detected_cb,
void *user_data);
- /**
- * @brief Performs pose estimation detection on the @a source
- * @details Use this function to launch pose estimation detection.
- * Each time when mv_inference_pose_estimation_detect() is
- * called, @a detected_cb will receive a list pose estimation's locations
- * on the media source.
- *
- * @since_tizen 5.5
- *
- * @param [in] source The handle to the source of the media
- * @param [in] infer The handle to the inference
- * @param[in] roi Rectangular box bounding face image on the
- * @a source. If NULL, then full source will be
- * analyzed.
- * @param [in] detected_cb The callback which will be called for
- * detecting facial landmark on media source.
- * This callback will receive the detection results.
- * @param [in] user_data The user data passed from the code where
- * @ref mv_inference_facial_landmark_detect() is invoked.
- * This data will be accessible from @a detected_cb callback.
- *
- * @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_INTERNAL Internal error
- * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
- * isn't supported
- * @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
- * @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED Not supported
- *
- * @pre Create a source handle by calling @ref mv_create_source()
- * @pre Create an inference handle by calling @ref mv_inference_create()
- * @pre Configure an inference handle by calling @ref mv_inference_configure()
- * @pre Prepare an inference by calling @ref mv_inference_prepare()
- * @post @a detected_cb will be called to process detection results
- *
- * @see mv_inference_pose_estimation_detected_cb
- */
- int mv_inference_pose_estimation_detect_open(
- mv_source_h source, mv_inference_h infer, mv_rectangle_s *roi,
- mv_inference_pose_estimation_detected_cb detected_cb,
- void *user_data);
-
#ifdef __cplusplus
}
#endif /* __cplusplus */