1 Star 0 Fork 0

Trisoil/HIK_Driver

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 481 Bytes
一键复制 编辑 原始数据 按行查看 历史
lightonthefloor 提交于 2022-12-01 22:46 . Bug fixed
#include "cstdio"
#include "opencv2/opencv.hpp"
#include "HIKCam.hpp"
HIKCam hikcam;
int main()
{
hikcam.HIKCam_Init();
int key;
cv::Mat frame;
while(true){
if (!hikcam.Get_One_Frame(frame)) continue;
if (frame.empty()){
printf("No Image!\n");
break;
}
// CvCapture >> frame;
cv::imshow("Frame",frame);
key = cv::waitKey(1);
if (key == 'q') break;
}
hikcam.Destroy_Cam();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/trisoill/HIK_Driver.git
git@gitee.com:trisoill/HIK_Driver.git
trisoill
HIK_Driver
HIK_Driver
main

搜索帮助