[OpenCV] Samples 11: image sequence

一帧一帧地读取视频流。

  • VideoCapture sequence(file_video);
  • sequence >> image.


#include <opencv2/core/core.hpp>
#include <opencv2/videoio/videoio.hpp>
#include <opencv2/highgui/highgui.hpp>

#include <iostream>

using namespace cv;
using namespace std;

static void help(char** argv)
{
    cout << "\nThis sample shows you how to read a sequence of images using the VideoCapture interface.\n"
         << "Usage: " << argv[0] << " <image_mask> (example mask: example_%02d.jpg)\n"
         << "Image mask defines the name variation for the input images that have to be read as a sequence. \n"
         << "Using the mask example_%02d.jpg will read in images labeled as ‘example_00.jpg‘, ‘example_01.jpg‘, etc."
         << endl;
}

int main(int argc, char** argv)
{
    cv::CommandLineParser parser(argc, argv, "{help h||}{@image| ../data/768x576.avi |}");
    if (parser.has("help"))
    {
        help(argv);
        return 0;
    }
    string first_file = parser.get<string>("@image");
    cout << "first_file = " << first_file << endl;

    if(first_file.empty())
    {
        help(argv);
        return 1;
    }

    // Jeff --> read video stream.
    VideoCapture sequence(first_file);

    if (!sequence.isOpened())
    {
        cerr << "Failed to open the image sequence!\n" << endl;
        return 1;
    }

    Mat image;
    namedWindow("Image sequence | press ESC to close", 1);

    for(;;)
    {
        // Read in image from sequence
        sequence >> image;

        // If no image was retrieved -> end of sequence
        if(image.empty())
        {
            cout << "End of Sequence" << endl;
            break;
        }

        // Jeff --> we may control the speed here.
        imshow("Image sequence | press ESC to close", image);
        if(waitKey(500) == 27)
            break;
    }

    return 0;
}
时间: 2024-11-03 22:36:22

[OpenCV] Samples 11: image sequence的相关文章

[OpenCV] Samples 10: imagelist_creator

yaml写法的简单例子.将 $ ./ 1 2 3 4 5 命令的参数(代表图片地址)写入yaml中. 写yaml文件. 参考:[OpenCV] Samples 06: [ML] logistic regression 读xml文件. { /* * Jeff --> Load xml. * transform to Mat. * FileStorage. */ cout << "loading the dataset..."; // Step 1. FileStorag

[OpenCV] Samples 05: convexhull

得到了复杂轮廓往往不适合特征的检测,这里再介绍一个点集凸包络的提取函数convexHull,输入参数就可以是contours组中的一个轮廓,返回外凸包络的点集 ---- 如此就能去掉凹进去的边. 对于凸包算法,其中最有名的莫过于Graham扫描算法,它的复杂度为nlog(n) 参考:计算几何之凸包(Algorithm show), 寻找轮廓 高级:Snake模型在轮廓提取中的应用 cvSnakeImage() #include "opencv2/imgproc/imgproc.hpp"

[OpenCV] Samples 04: contours2

要先变为二值图像:cvThreshold 提取轮廓:cvFindContours #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui/highgui.hpp" #include <math.h> #include <iostream> using namespace cv; using namespace std; static void help() { cout

[OpenCV] Samples 13: opencv_version

cv::CommandLineParser的使用. I suppose CommandLineParser::has("something") should be true when the command line has --something in it. ./a.out -h ./a.out --help 打印keys的相关内容. #include <opencv2/core/utility.hpp> #include <iostream> using

图像储存容器Mat[OpenCV 笔记11]

IplImage 与 Mat IplImage是OpenCV1中的图像存储结构体,基于C接口创建.在退出之前必须release,否则就会造成内存泄露.在一些只能使用C语言的嵌入式系统中,不得不使用. IplImage* img = cvLoadImage("imagename.jpg",1); Mat类内存分配是自动完成的,不必手动开辟空间(非必须),不必在不需要时释放空间. Mat类的构成 Mat由矩阵头和一个指向存储图像矩阵的指针组成.为应该尽量避免图像的复制,加快程序运行速度,M

Android学习七---Hello OpenCV samples

创建一个能够使用OpenCV JavaCameraView的应用程序来了解基于OpenCV java API 的应用程序的开发流程.有了Android的基础,在程序中需要修改的几个地方1.activity_main.xml 2.AndroidManifest.xml 3.MainActivity.java 一.创建项目 安装创建android程序的方式创建一个blank activity,项目名称为hellosamples,其他采用默认的activity_main.xml,MainActivit

[OpenCV] Samples 12: laplace

先模糊再laplace,也可以替换为sobel等. 变换效果后录成视频,挺好玩. #include "opencv2/videoio/videoio.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include <opencv2/core/utility.hpp> #include <ctype.h>

Opencv 滤波&lt;11&gt;

1. 平滑处理 “平滑处理“(smoothing)也称“模糊处理”(bluring),是一项简单且使用频率很高的图像处理方法.平滑处理的用途有很多,最常见的是用来减少图像上的噪点或者失真.在涉及到降低图像分辨率时,平滑处理是非常好用的方法. 2. 图像滤波与滤波器 图像滤波,即在尽量保留图像细节特征的条件下对目标图像的噪声进行抑制,是图像预处理中不可缺少的操作,其处理效果的好坏将直接影响到后续图像处理和分析的有效性和可靠性.消除图像中的噪声成分叫作图像的平滑化或滤波操作. 信号或图像的能量大部分

openCV—Python(11)—— 图像边缘检测

一.函数简介 1.laplacian算子 函数原型:Laplacian(src, ddepth, dst=None, ksize=None, scale=None, delta=None, borderType=None) src:图像矩阵 ddepth:深度类型 2.Sobel算子 函数原型:Sobel(src, ddepth, dx, dy, dst=None, ksize=None, scale=None, delta=None, borderType=None) src:图像矩阵 dde