114d93cec7
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
31 lines
582 B
C++
31 lines
582 B
C++
#ifndef CAMERA_H_
|
|
#define CAMERA_H_
|
|
|
|
#include <opencv2/opencv.hpp>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <iomanip>
|
|
#include <mutex>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/ioctl.h>
|
|
#include <linux/fb.h>
|
|
#include <algorithm>
|
|
#include <chrono>
|
|
#include <thread>
|
|
|
|
#include "image_cv.h"
|
|
#include "global.h"
|
|
#include "frame_buffer.h"
|
|
#include "control.h"
|
|
|
|
int CameraInit(uint8_t camera_id, double dest_fps, int width, int height);
|
|
int CameraHandler(void);
|
|
void cameraDeInit(void);
|
|
|
|
extern double g_steer_deviation;
|
|
|
|
#endif
|