ThreeB 1.1
storm_imagery.h
Go to the documentation of this file.
00001 #ifndef STORM_INCLUDE_STORM_IMAGERY_H
00002 #define STORM_INCLUDE_STORM_IMAGERY_H
00003 #include <cvd/image.h>
00004 #include <cvd/byte.h>
00005 #include <utility>
00006 #include <vector>
00007 
00008 //! @cond Doxygen_Suppress
00009 std::vector<CVD::Image<float> > load_and_preprocess_images2(const std::vector<std::string>& names);
00010 std::vector<CVD::Image<float> > load_and_preprocess_images(const std::vector<std::string>& names);
00011 CVD::Image<float> preprocess_image(const CVD::Image<float>&);
00012 std::pair<float, float> mean_and_variance(const std::vector<CVD::Image<float> >& images);
00013 std::vector<CVD::Image<float> > load_and_normalize_images(const std::vector<std::string>& files);
00014 //! @endcond
00015 #endif
00016 
00017 
00018