contrib/oxl/mvl/PairSetCorner.h
Go to the documentation of this file.
00001 // This is oxl/mvl/PairSetCorner.h
00002 #ifndef PairSetCorner_h_
00003 #define PairSetCorner_h_
00004 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00005 #pragma interface
00006 #endif
00007 //:
00008 // \file
00009 // \brief Copy matches out of PairMatchSetCorner
00010 //
00011 //    Extract the matches from a PairMatchSetCorner.  Copies
00012 //    out the inliers into two arrays of HomgPoint2D, and remembers the indices.
00013 //
00014 // \author
00015 //     Andrew W. Fitzgibbon, Oxford RRG, 15 Sep 96
00016 //
00017 //-----------------------------------------------------------------------------
00018 
00019 #include <vcl_vector.h>
00020 #include <mvl/HomgPoint2D.h>
00021 #include <mvl/PairMatchSetCorner.h>
00022 
00023 class PairSetCorner
00024 {
00025  public:
00026   vcl_vector<HomgPoint2D> points1;
00027   vcl_vector<HomgPoint2D> points2;
00028 
00029   // Constructors/Destructors--------------------------------------------------
00030   PairSetCorner(const PairMatchSetCorner& matches);
00031 };
00032 
00033 #endif // PairSetCorner_h_