- 创建基本项目结构和目录 - 添加CMake构建系统 - 实现基础的配置解析功能 - 添加YOLO推理框架支持 - 集成RTSP和视频流处理功能 - 添加性能监控和日志系统
19 lines
404 B
C++
19 lines
404 B
C++
#include <gtest/gtest.h>
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
#include <opencv2/opencv.hpp>
|
|
#include "pipeline/common/pipeline.hpp"
|
|
|
|
namespace fs = std::filesystem;
|
|
|
|
class PipelineTest : public ::testing::Test {
|
|
protected:
|
|
void SetUp() override;
|
|
void TearDown() override;
|
|
|
|
std::string test_dir_;
|
|
std::string video_path_;
|
|
std::string config_path_;
|
|
std::string log_dir_;
|
|
};
|