#ifndef __IMAGEDECODER_H__ #define __IMAGEDECODER_H__ #include #include #include class ImageDecoder { public: struct Image { uint32_t width; uint32_t height; std::vector data; }; static std::optional extractJpegYComponent(const std::string &filename); }; #endif // __IMAGEDECODER_H__