* ImageFormat: * A Data Structure to communicate resolution between camera and ImageReader */
| 37 | * A Data Structure to communicate resolution between camera and ImageReader |
| 38 | */ |
| 39 | struct ImageFormat { |
| 40 | int32_t width; |
| 41 | int32_t height; |
| 42 | |
| 43 | int32_t format; // Through out this demo, the format is fixed to |
| 44 | // YUV_420 format |
| 45 | }; |
| 46 | |
| 47 | template <typename T> |
| 48 | class RangeValue { |
nothing calls this directly
no outgoing calls
no test coverage detected