#pragma once #include #include #include class G4Tiff { public: G4Tiff(cv::Mat& mat,int threshold=120); ~G4Tiff(); public: void GetCompressedData(std::vector& cmpeddata); private: void except(bool condition, const std::string& message = ""); std::string m_tmppath; };