Revert "mv_inference: Add Post Estimation feature support"
[platform/core/api/mediavision.git] / mv_inference / inference / include / Inference.h
index 0396668..9cd580d 100755 (executable)
@@ -60,11 +60,6 @@ typedef struct _FacialLandMarkDetectionResults {
     std::vector<cv::Point> locations;
 } FacialLandMarkDetectionResults;  /**< structure FacialLandMarkDetectionResults */
 
-typedef struct _PoseEstimationResults {
-    int number_of_pose_estimation;
-    std::vector<cv::Point> locations;
-} PoseEstimationResults;  /**< structure PoseEstimationResults */
-
 namespace mediavision {
 namespace inference {
 
@@ -309,14 +304,6 @@ public:
         */
        int GetFacialLandMarkDetectionResults(FacialLandMarkDetectionResults* results);
 
-       /**
-        * @brief       Gets the PoseEstimationDetectionResults
-        *
-        * @since_tizen 6.0
-        * @return @c true on success, otherwise a negative error value
-        */
-       int GetPoseEstimationDetectionResults(PoseEstimationResults* results);
-
        int GetResults(std::vector<std::vector<int>>* dimInfo, std::vector<float*> *results);
 
        mv_engine_config_h GetEngineConfig(void) { return engine_config; }