00001 // This is gel/mrc/vpgl/algo/vpgl_list.h 00002 #ifndef vpgl_list_h_ 00003 #define vpgl_list_h_ 00004 //: 00005 // \file 00006 // \brief Write lists of cameras, homographies, fundamental matrices in a standard format 00007 // 00008 // Template classes for writing lists of cameras, homographies, fundamental 00009 // matrices, etc in a standard format. This will eventually be replaced by XML 00010 // read/writers. 00011 // \author Thomas Pollard 00012 // \date March 05, 2005 00013 00014 #include <vcl_string.h> 00015 #include <vcl_vector.h> 00016 00017 template <class T> 00018 bool vpgl_read_list( 00019 vcl_vector<T>& list, 00020 vcl_string file ); 00021 00022 template <class T> 00023 bool vpgl_write_list( 00024 const vcl_vector<T>& list, 00025 vcl_string file ); 00026 00027 #endif // vpgl_list_h_
1.7.5.1