Go to the documentation of this file.00001
00012 #ifndef LGL_LANDMARKBAND_HPP
00013 #define LGL_LANDMARKBAND_HPP
00014
00015 #include <iostream>
00016
00017 #include <gdal_priv.h>
00018
00019 #include <lgl/Raster.hpp>
00020 #include <lgl/RasterBand.hpp>
00021
00022 namespace jafar {
00023 namespace lgl {
00024 class GDLandmarkBand : public GDRasterBand<double> {
00025
00026 public:
00027
00028 GDLandmarkBand(GDALDataset* _dataset, GDALRasterBand *_band);
00029
00030 ~GDLandmarkBand();
00031
00032
00033 bool isHomogeneous(const RasterRect& rect) const;
00034
00035 private:
00036
00037 protected:
00038
00039 };
00040
00041 }
00042 }
00043
00044 #endif