fixup! mv_machine_learning: keep object detection 3d as internal api
authorSeungbae Shin <seungbae.shin@samsung.com>
Thu, 6 Oct 2022 03:08:34 +0000 (12:08 +0900)
committerInki Dae <inki.dae@samsung.com>
Mon, 7 Nov 2022 03:12:39 +0000 (12:12 +0900)
Change-Id: I9e06f1c0d98d74b147e97bf6fb5a27abccc19bc9

include/mv_3d_internal.h

index e499715..97fbc76 100644 (file)
@@ -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.
  *