8 lines
285 B
C
8 lines
285 B
C
|
#ifndef _DISPLAY_H
|
||
|
#define _DISPLAY_H
|
||
|
// #include <iostream>
|
||
|
// #include <vector>
|
||
|
#include <opencv2/core.hpp>
|
||
|
void display_spectral_image(unsigned char *raw_data, long long width, long long height,std::string window_name);
|
||
|
void display_img(cv::Mat img, std::string window_name);
|
||
|
#endif
|