//======================= // // Class to represent a calibrated image // #ifndef __cimage__ #define __cimage__ 1 #include #include "Image.h" class CalibratedImage : public Image { private: int m_calibration ; // calibration constant public: // New Constructor CalibratedImage( int date, std::vector pixels, int calibration ) ; CalibratedImage( Image& src , int calibration ) ; // Need to override one method - the one which finds intensity virtual int intensity( int position ) ; }; #endif