/** * This class exists for the purpose of loading and manipulating * iamges before displaying them. All OpenCV operations are * handled by this class. * * Licence: MIT * 2024 Matthew McWilliams **/ #ifndef IMAGE_h #define IMAGE_h #include #include #include #include #include #include using namespace std; using namespace cv; class Image { private: uint16_t width; uint16_t height; Mat blank; public: Image(); void setDimensions(uint16_t w, uint16_t h) { width = w; height = h; }; Mat getBlank(); Mat loadImage(string& image_path, uint64_t& x, uint64_t& y, uint64_t& w, uint64_t& h); }; #endif