# include <iostream>
# include <fstream>
# include <vector>
# include <stdint.h> # include <opencv2/opencv.hpp> using namespace std;
const int WIDTH = 1920 ;
const int HEIGHT = 1080 ;
const int CHANNELS = 1 ; int main ( ) { std:: vector< uint8_t > buffer ( HEIGHT * WIDTH * CHANNELS) ; std:: ifstream file ( "hwc_1080_1920_1_uint8.bin" , std:: ios:: binary) ; if ( file. is_open ( ) ) { file. read ( reinterpret_cast < char * > ( buffer. data ( ) ) , buffer. size ( ) * sizeof ( uint8_t ) ) ; if ( file) { std:: cout << "All data read successfully." << std:: endl; } else { std:: cerr << "Error occurred while reading from the file." << std:: endl; file. close ( ) ; return 1 ; } file. close ( ) ; std:: cout << "x position: " << std:: endl; cv:: namedWindow ( "Canvas" , cv:: WINDOW_NORMAL) ; cv:: Mat canvas ( HEIGHT, WIDTH, CV_8UC3, cv:: Scalar ( 255 , 255 , 255 ) ) ; for ( int i= 0 ; i< WIDTH; i++ ) { for ( int j = 0 ; j < HEIGHT; j++ ) { float x_w = buffer[ ( j * WIDTH + i) * CHANNELS + 0 ] ; cv:: circle ( canvas, cv:: Point ( i, j) , 1 , cv:: Scalar ( x_w, x_w, x_w) , - 1 ) ; } } cv:: resizeWindow ( "Canvas" , 600 , 400 ) ; cv:: imshow ( "Canvas" , canvas) ; cv:: waitKey ( 0 ) ; std:: cout << "completed." << std:: endl; } else { std:: cerr << "Could not open the file." << std:: endl; return 1 ; } return 0 ;
}