mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
263 B
12 lines
263 B
3 years ago
|
#ifndef RAW_PIXELS_HPP
|
||
|
#define RAW_PIXELS_HP
|
||
|
#include <cstdint>
|
||
|
|
||
|
#cmakedefine RAW_PIXEL_VALUES @RAW_PIXEL_VALUES@
|
||
|
#cmakedefine RAW_PIXELS_SIZE @RAW_PIXELS_SIZE@
|
||
|
|
||
|
static std::uint32_t raw_pixels[RAW_PIXELS_SIZE] = {
|
||
|
RAW_PIXEL_VALUES
|
||
|
};
|
||
|
#endif //RAW_PIXELS_HPP
|