博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OpenCV播放视频带滚动条(3)
阅读量:5072 次
发布时间:2019-06-12

本文共 1214 字,大约阅读时间需要 4 分钟。

 

演示 :一个带有滚动条的播放视频的代码。

 

#include "stdafx.h"

#include <opencv2/core/core.hpp>

#include <opencv2/contrib/contrib.hpp>

#include <opencv2/highgui/highgui.hpp>

#include <opencv2/imgproc/imgproc.hpp>

#include <opencv2/objdetect/objdetect.hpp>

 

using namespace cv;

using namespace std;

#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")

 

int g_slider_position = 0;

int i = 0;

CvCapture* g_capture = NULL;

void onTrackingbarSlide(int pos)

{

    i = pos;

    cvSetCaptureProperty(g_capture, CV_CAP_PROP_POS_FRAMES, pos);

}

 

int main(int argc, char** argv[])

{

    cvNamedWindow("Example3", CV_WINDOW_NORMAL);

    g_capture = cvCreateFileCapture("F:\\life\\opencv\\BuildingCordovaAppsWithVS_high.mp4");

 

    int frames = (int)cvGetCaptureProperty(g_capture, CV_CAP_PROP_FRAME_COUNT);

    if (frames != 0)

    {

        cvCreateTrackbar("Position", "Example3", &g_slider_position, frames, onTrackingbarSlide);

    }

 

    IplImage* frame;

    while (1)

    {

        i++;

        frame = cvQueryFrame(g_capture);

        if (!frame) break;

        cvShowImage("Example3", frame);

        char c = cvWaitKey(33);

        if (c == 27) break;

 

        cvSetTrackbarPos("Position", "Example3", i);

    }

 

    cvReleaseCapture(&g_capture);

    cvDestroyWindow("Example3");

 

    return 0;

}

 

转载于:https://www.cnblogs.com/pengzhen/p/4952221.html

你可能感兴趣的文章
Sand Making Plant Produced by Red Star
查看>>
Win 10 文件浏览器无法打开
查看>>
HDU 1212 Big Number(C++ 大数取模)(java 大数类运用)
查看>>
-bash: xx: command not found 在有yum源情况下处理
查看>>
[leetcode]Minimum Path Sum
查看>>
内存管理 浅析 内存管理/内存优化技巧
查看>>
hiho1079 线段树区间改动离散化
查看>>
【BZOJ 5222】[Lydsy2017省队十连测]怪题
查看>>
第二次作业
查看>>
【input】 失去焦点时 显示默认值 focus blur ★★★★★
查看>>
Java跟Javac,package与import
查看>>
day-12 python实现简单线性回归和多元线性回归算法
查看>>
Json格式的字符串转换为正常显示的日期格式
查看>>
[转]使用 Razor 进行递归操作
查看>>
[转]Android xxx is not translated in yyy, zzz 的解决方法
查看>>
docker入门
查看>>
Android系统--输入系统(十一)Reader线程_简单处理
查看>>
监督学习模型分类 生成模型vs判别模型 概率模型vs非概率模型 参数模型vs非参数模型...
查看>>
Mobiscroll脚本破解,去除Trial和注册时间限制【转】
查看>>
实验五 Java网络编程及安全
查看>>