-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay.h
More file actions
32 lines (25 loc) · 716 Bytes
/
Copy pathdisplay.h
File metadata and controls
32 lines (25 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef _DISPALAY_H_
#define _DISPALAY_H_
#define _CRT_SECURE_NO_WARNINGS
#include <stdint.h>
#include <data.h>
#include "libirparse.h"
#include "libirprocess.h"
#include "cmd.h"
#include "temperature.h"
#define OPENCV_ENABLE
#ifdef OPENCV_ENABLE
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/highgui/highgui_c.h>
//using namespace cv;
#endif
//initial the parameters for displaying
void display_init(StreamFrameInfo_t* stream_frame_info);
//release the parameters
void display_release(void);
//display one frame
void display_one_frame(StreamFrameInfo_t* stream_frame_info);
//display thread
void* display_function(void* threadarg);
#endif