extern "C" {
#endif /* __cplusplus */
+/**
+ * @file mv_face_recognition.h
+ * @brief This file contains the face recognition CAPI for the Mediavision.
+ */
+
+/**
+ * @addtogroup CAPI_MEDIA_VISION_FACE_RECOGNITION_MODULE
+ * @{
+ */
+
/**
* @brief Creates face recognition handle.
* @details Use this function to create a face recognition handle. After the creation
int mv_face_recognition_inference(mv_face_recognition_h handle, mv_source_h source);
/**
- * @brief Get a label name.
- * @details Use this function to get a label name after calling mv_face_recognition_inference function.
+ * @brief Gets the recognized face label name.
+ * @details Use this function to get the recognized label name after calling @ref mv_face_recognition_inference().
*
* @since_tizen 7.0
*
* @param[in] handle The handle to the face recognition object.
* @param[out] out_label The array pointer for the label name to be stored.
- * This API returns memory pointer containing actual label string to @a out_label.
+ * This function returns memory pointer containing actual label string to @a out_label.
* So do not free @a out_label. And please note that @a out_label is valid only while handle is alive.
*
* @return @c 0 on success, otherwise a negative error value
* @retval #MEDIA_VISION_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #MEDIA_VISION_ERROR_INVALID_OPERATION Invalid operation
*
- * @pre Request a inference by calling @ref mv_face_recognition_inference()
+ * @pre Request an inference by calling @ref mv_face_recognition_inference()
*/
int mv_face_recognition_get_label(mv_face_recognition_h handle, const char **out_label);
+/**
+ * @}
+ */
+
#ifdef __cplusplus
}
#endif /* __cplusplus */
extern "C" {
#endif /* __cplusplus */
+/**
+ * @file mv_face_recognition_type.h
+ * @brief This file contains the face recognition handle for Mediavision.
+ */
+
+/**
+ * @addtogroup CAPI_MEDIA_VISION_FACE_RECOGNITION_MODULE
+ * @{
+ */
+
/**
* @brief The face recognition object handle.
*
*/
typedef void *mv_face_recognition_h;
+/**
+ * @}
+ */
+
#ifdef __cplusplus
}
#endif /* __cplusplus */