marker.h
Go to the documentation of this file.
00001 /*****************************
00002 Copyright 2011 Rafael Muñoz Salinas. All rights reserved.
00003 
00004 Redistribution and use in source and binary forms, with or without modification, are
00005 permitted provided that the following conditions are met:
00006 
00007    1. Redistributions of source code must retain the above copyright notice, this list of
00008       conditions and the following disclaimer.
00009 
00010    2. Redistributions in binary form must reproduce the above copyright notice, this list
00011       of conditions and the following disclaimer in the documentation and/or other materials
00012       provided with the distribution.
00013 
00014 THIS SOFTWARE IS PROVIDED BY Rafael Muñoz Salinas ''AS IS'' AND ANY EXPRESS OR IMPLIED
00015 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
00016 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Rafael Muñoz Salinas OR
00017 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00018 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
00019 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
00020 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
00021 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
00022 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00023 
00024 The views and conclusions contained in the software and documentation are those of the
00025 authors and should not be interpreted as representing official policies, either expressed
00026 or implied, of Rafael Muñoz Salinas.
00027 ********************************/
00028 #ifndef _Aruco_Marker_H
00029 #define _Aruco_Marker_H
00030 #include <vector>
00031 #include <iostream>
00032 #include <opencv2/opencv.hpp>
00033 #include "exports.h"
00034 #include "cameraparameters.h"
00035 using namespace std;
00036 namespace aruco {
00041 class ARUCO_EXPORTS Marker:
00042     public std::vector<cv::Point2f>
00043 {
00044 public:
00045     //id of  the marker
00046     int id;
00047     //size of the markers sides in meters
00048     float ssize;
00049     //matrices of rotation and translation respect to the camera
00050     cv::Mat Rvec,Tvec;
00051 
00052     //added variables (tc):
00053     cv::Point marker_center_img;
00054     cv::Point3f marker_world_position;
00055 
00056 
00059     Marker();
00062     Marker(const Marker &M);
00065     Marker(const  std::vector<cv::Point2f> &corners,int _id=-1);
00066 
00070     Marker(const  std::vector<cv::Point2f> &corners,int _id=-1, float _ssize=-1);
00071 
00074     ~Marker() {}
00077     bool isValid()const{return id!=-1 && size()==4;}
00078 
00081     void draw(cv::Mat &in, cv::Scalar color, int lineWidth=1,bool writeId=true)const;
00082 
00085     void draw_size(cv::Mat &in, cv::Scalar color, int lineWidth=1,bool writeId=true)const;
00086 
00092     void calculateExtrinsics(float markerSize,const CameraParameters &CP,bool setYPerperdicular=true)throw(cv::Exception);
00099     void calculateExtrinsics(float markerSize,cv::Mat  CameraMatrix,cv::Mat Distorsion=cv::Mat(),bool setYPerperdicular=true)throw(cv::Exception);
00100     
00104     void glGetModelViewMatrix(  double modelview_matrix[16])throw(cv::Exception);
00105     
00116     void OgreGetPoseParameters(  double position[3], double orientation[4] )throw(cv::Exception);    
00117     
00120     cv::Point2f getCenter()const;
00123     float getPerimeter()const;
00126     float getArea()const;
00131     friend bool operator<(const Marker &M1,const Marker&M2)
00132     {
00133         return M1.id<M2.id;
00134     }
00137     friend ostream & operator<<(ostream &str,const Marker &M)
00138     {
00139 
00140         str<<M.id<<"=";
00141         for (int i=0;i<4;i++)
00142             str<<"("<<M[i].x<< ","<<M[i].y<<") ";
00143         str<<"Txyz=";
00144         for (int i=0;i<3;i++)
00145             str<<M.Tvec.ptr<float>(0)[i]<<" ";
00146         str<<"Rxyz=";
00147         for (int i=0;i<3;i++)
00148             str<<M.Rvec.ptr<float>(0)[i]<<" ";
00149 
00150         return str;
00151     }
00152     
00153  
00154 private:
00155   void rotateXAxis(cv::Mat &rotation);
00156  
00157 };
00158 
00159 }
00160 #endif


camera_pose_aruco
Author(s): tcarreira
autogenerated on Mon Jan 6 2014 11:47:56