* @brief RGB image decoded from a supported input file. */
| 33 | * @brief RGB image decoded from a supported input file. |
| 34 | */ |
| 35 | struct DecodedImage { |
| 36 | int width{0}; |
| 37 | int height{0}; |
| 38 | std::vector<uint8_t> rgb{}; |
| 39 | }; |
| 40 | |
| 41 | /** |
| 42 | * @brief Decode a supported RGB image file. |
nothing calls this directly
no outgoing calls
no test coverage detected