From ba229d55747f39d8c9bf9fc7f1206d4b7d97243f Mon Sep 17 00:00:00 2001 From: Seungbae Shin Date: Thu, 6 Oct 2022 12:08:34 +0900 Subject: [PATCH] fixup! mv_machine_learning: keep object detection 3d as internal api Change-Id: I9e06f1c0d98d74b147e97bf6fb5a27abccc19bc9 --- include/mv_3d_internal.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/mv_3d_internal.h b/include/mv_3d_internal.h index e499715..97fbc76 100644 --- a/include/mv_3d_internal.h +++ b/include/mv_3d_internal.h @@ -30,18 +30,21 @@ extern "C" { */ /** + * @internal * @brief The plane model handle. * @since_tizen 7.0 */ typedef void *mv_3d_pointcloud_plane_model_h; /** + * @internal * @brief The plane inlier handle. * @since_tizen 7.0 */ typedef void *mv_3d_pointcloud_plane_inlier_h; /** + * @internal * @brief Creates plane model handle. * @details Use this function to create a plane model handle. * @@ -50,6 +53,7 @@ typedef void *mv_3d_pointcloud_plane_inlier_h; int mv_3d_pointcloud_plane_model_create(mv_3d_pointcloud_plane_model_h *handle); /** + * @internal * @brief Destroys plane model handle and release all its resources. * * @since_tizen 7.0 @@ -57,6 +61,7 @@ int mv_3d_pointcloud_plane_model_create(mv_3d_pointcloud_plane_model_h *handle); int mv_3d_pointcloud_plane_model_destroy(mv_3d_pointcloud_plane_model_h handle); /** + * @internal * @brief Creates plane inlier handle. * @details Use this function to create a plane model handle. * @@ -65,6 +70,7 @@ int mv_3d_pointcloud_plane_model_destroy(mv_3d_pointcloud_plane_model_h handle); int mv_3d_pointcloud_plane_inlier_create(mv_3d_pointcloud_plane_inlier_h *handle); /** + * @internal * @brief Destroys plane inlier handle and release all its resources. * * @since_tizen 7.0 @@ -72,6 +78,7 @@ int mv_3d_pointcloud_plane_inlier_create(mv_3d_pointcloud_plane_inlier_h *handle int mv_3d_pointcloud_plane_inlier_destroy(mv_3d_pointcloud_plane_inlier_h handle); /** + * @internal * @brief Segment PointCloud plane. * @details Use this function to segment pointcloud plane using the RANSAC algorithm. * @@ -83,6 +90,7 @@ int mv_3d_pointcloud_segment_plane(mv_3d_h mv3d, mv_3d_pointcloud_plane_inlier_h *plane_inlier); /** + * @internal * @brief Writes pointcloud plane data to a file. * @details Use this function to write pointcloud plane data to a file. * -- 2.7.4