contrib/gel/geml/geml_matcher.cxx
Go to the documentation of this file.
00001 // This is gel/geml/geml_matcher.cxx
00002 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00003 #pragma implementation
00004 #endif
00005 //
00006 // Author: Geoffrey Cross, Oxford RRG
00007 // Created: ${DATE}
00008 // .SECTION Modifications:
00009 //   @(eval (strftime "%y%m%d")) Geoff Initial version.
00010 //
00011 //-----------------------------------------------------------------------------
00012 
00013 #include "geml_matcher.h"
00014 
00015 // Default ctor
00016 geml_matcher::geml_matcher( const vil1_memory_image_of<vxl_byte> image1,
00017                             const vil1_memory_image_of<vxl_byte> image2,
00018                             const vcl_vector< vcl_pair<float,float> > &corners1,
00019                             const vcl_vector< vcl_pair<float,float> > &corners2)
00020   : im1_( image1),
00021     im2_( image2),
00022     corners1_( corners1),
00023     corners2_( corners2)
00024 {
00025 }
00026 
00027 geml_matcher::~geml_matcher()
00028 {
00029 }
00030