* @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
* @retval #MEDIA_VISION_ERROR_INTERNAL Internal error
*
- * @pre Prepare an face recognition by calling @ref mv_face_recognition_prepare()
+ * @pre Prepare an face recognition by calling mv_face_recognition_prepare()
*/
int mv_face_recognition_register(mv_face_recognition_h handle, mv_source_h source, const char *label);
* @retval #MEDIA_VISION_ERROR_INVALID_OPERATION Invalid operation
* @retval #MEDIA_VISION_ERROR_OUT_OF_MEMORY Out of memory
*
- * @pre Register an new face by calling @ref mv_face_recognition_register()
+ * @pre Register an new face by calling mv_face_recognition_register()
*/
int mv_face_recognition_unregister(mv_face_recognition_h handle, const char *label);
* @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
* isn't supported
*
- * @pre Prepare an face recognition by calling @ref mv_face_recognition_prepare()
- * @pre Register a new face by calling @ref mv_face_recognition_register()
+ * @pre Prepare an face recognition by calling mv_face_recognition_prepare()
+ * @pre Register a new face by calling mv_face_recognition_register()
*/
int mv_face_recognition_inference(mv_face_recognition_h handle, mv_source_h source);
/**
* @brief Gets the recognized face label name.
- * @details Use this function to get the recognized label name after calling @ref mv_face_recognition_inference().
+ * @details Use this function to get the recognized label name after calling mv_face_recognition_inference().
*
* @since_tizen 7.0
*
* @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #MEDIA_VISION_ERROR_INVALID_OPERATION Invalid operation
*
- * @pre Request an inference by calling @ref mv_face_recognition_inference()
+ * @pre Request an inference by calling mv_face_recognition_inference()
*/
int mv_face_recognition_get_label(mv_face_recognition_h handle, const char **out_label);
* @retval #MEDIA_VISION_ERROR_NOT_SUPPORTED_FORMAT Source colorspace
* isn't supported
*
- * @pre Create a new tracker handle by calling @ref mv_roi_tracker_create()
+ * @pre Create a new tracker handle by calling mv_roi_tracker_create()
*/
int mv_roi_tracker_perform(mv_roi_tracker_h handle, mv_source_h source, mv_roi_tracker_tracked_cb tracked_cb,
void *user_data);