00001 // Copyright (C) 2010-2011 Institut de Robotica i Informatica Industrial, CSIC-UPC. 00002 // Author 00003 // All rights reserved. 00004 // 00005 // This file is part of iri-ros-pkg 00006 // iri-ros-pkg is free software: you can redistribute it and/or modify 00007 // it under the terms of the GNU Lesser General Public License as published by 00008 // the Free Software Foundation, either version 3 of the License, or 00009 // at your option) any later version. 00010 // 00011 // This program is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU Lesser General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU Lesser General Public License 00017 // along with this program. If not, see <http://www.gnu.org/licenses/>. 00018 // 00019 // IMPORTANT NOTE: This code has been generated through a script from the 00020 // iri_ros_scripts. Please do NOT delete any comments to guarantee the correctness 00021 // of the scripts. ROS topics can be easly add by using those scripts. Please 00022 // refer to the IRI wiki page for more information: 00023 // http://wikiri.upc.es/index.php/Robotics_Lab 00024 00025 #ifndef _object_pose_detection_alg_h_ 00026 #define _object_pose_detection_alg_h_ 00027 00028 #include <iri_object_pose_detection/ObjectPoseDetectionConfig.h> 00029 #include "mutex.h" 00030 00031 #include <HoughTransform.hpp> 00032 #include <ransac.hpp> 00033 00034 //include object_pose_detection_alg main library 00035 00041 class ObjectPoseDetectionAlgorithm 00042 { 00043 protected: 00050 CMutex alg_mutex_; 00051 00055 //feat extraction and matching vars 00056 cv::Ptr<cv::FeatureDetector> detector; 00057 cv::Ptr<cv::DescriptorExtractor> descriptorExtractor; 00058 cv::Ptr<cv::DescriptorMatcher> descriptorMatcher; 00059 int matcherFilterType; 00060 00061 float distance_ratio_; //TODO init! 00062 uint min_matches_; //TODO init! 00063 00064 //init params 00065 std::string basepath_; 00066 std::string feats_dir_; 00067 std::string train_imas_dir_; 00068 std::string test_image_; 00069 00070 //train set vars 00071 std::vector<std::string> train_files_; 00072 std::vector<cv::Mat> train_imas_; 00073 std::vector<std::vector<cv::KeyPoint> > train_kpoints_; 00074 std::vector<cv::Mat> train_desc_; 00075 00076 std::string parse_param(const std::vector<std::string>& init, std::string req); 00077 bool init_config(const std::string &initfile); 00078 void compute_train_set(); 00079 void load_train_set(); 00080 00081 enum { NONE_FILTER = 0, CROSS_CHECK_FILTER = 1 }; 00082 00083 00084 public: 00091 typedef iri_object_pose_detection::ObjectPoseDetectionConfig Config; 00092 00099 Config config_; 00100 00109 ObjectPoseDetectionAlgorithm(void); 00110 00116 void lock(void) { alg_mutex_.enter(); }; 00117 00123 void unlock(void) { alg_mutex_.exit(); }; 00124 00132 bool try_enter(void) { return alg_mutex_.try_enter(); }; 00133 00145 void config_update(Config& new_cfg, uint32_t level=0); 00146 00147 // here define all object_pose_detection_alg interface methods to retrieve and set 00148 // the driver parameters 00149 00156 ~ObjectPoseDetectionAlgorithm(void); 00157 00158 void ortk_detect(); 00159 }; 00160 00161 #endif