00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef STORM_INCLUDE_STORM_IMAGERY_H
00021 #define STORM_INCLUDE_STORM_IMAGERY_H
00022 #include <cvd/image.h>
00023 #include <cvd/byte.h>
00024 #include <utility>
00025 #include <vector>
00026
00027
00028 std::vector<CVD::Image<float> > load_and_preprocess_images2(const std::vector<std::string>& names);
00029 std::vector<CVD::Image<float> > load_and_preprocess_images(const std::vector<std::string>& names);
00030 CVD::Image<float> preprocess_image(const CVD::Image<float>&);
00031 std::pair<float, float> mean_and_variance(const std::vector<CVD::Image<float> >& images);
00032 std::vector<CVD::Image<float> > load_and_normalize_images(const std::vector<std::string>& files);
00033
00034 #endif
00035
00036
00037