opencv方框内图像保存_opencv::将两幅图像合并后,在同一个窗口显示;并将合并的图像流保存成视频文件...

/**

* @file main-opencv.cpp

* @date July 2014

* @brief An exemplative main file for the use of ViBe and OpenCV*/

//#include

#include "vibe-background-sequential.h"

using namespacecv;using namespacestd;const int minArea = 2; //舍去面积极小的方框

const double maxAreaRatio = 0.1; //舍去面积极大的方框

const double boxRatio = 0.1; //舍去长宽比严重失衡的方框

/**

* Displays instructions on how to use this program.*/

voidhelp()

{

cout<< "--------------------------------------------------------------------------" <" <

}void processVideo(char*videoFilename);void contour(const Mat &mor, Mat &img);/**

* Main program. It shows how to use the grayscale version (C1R) and the RGB version (C3R).*/

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

{/*Print help information.*/help();/*Check for the input parameter correctness.*/

/*if (argc != 2) {

cerr <

cerr <

return EXIT_FAILURE;

}

/* Create GUI windows.*/

//namedWindow("Frame");//namedWindow("Segmentation by ViBe");

processVideo("framelink_yd.avi"); //读取 framelink_yd.avi 视频进行处理

/*Destroy GUI windows.*/destroyAllWindows();returnEXIT_SUCCESS;

}/**

* Processes the video. The code of ViBe is included here.

*

* @param videoFilename The name of the input video file.*/

void processVideo(char*videoFilename)

{

VideoCapture capture(videoFilename);/*Create the capture object.*/

if (!capture.isOpened()) {

cerr<< "Unable to open video file:" << videoFilename<< endl; /*Error in opening the video input.*/exit(EXIT_FAILURE);

}

clock_t start, finish;doubletotal;

start=clock();/*Variables.*/

static int frameNumber = 1; /*The current frame number*/

int lastCount = 0;int probFactor = gradient_Factor; /*概率因子,用梯度因子初始化概率因子*/Mat frame,frame1;/*Current frame.*/Mat segmentationMap;/*Will contain the segmentation map. This is the binary output map.*/

int keyboard = 0; /*Input from keyboard. Used to stop the program. Enter 'q' to quit.*/

char fileName[200] = { 0};int sampleCounts[10] = {0};int speSamples[10] = {0};

vibeModel_Sequential_t*model = NULL; /*Model used by ViBe.*/

int heig = 512;int widt = 1340;

Mat res= Mat::zeros(heig, widt, CV_8UC3); //res为三通道像素帧,用来保存最后合并的图像

/*创建保存视频的文件名并打开*/

const string Name = "res.avi";

VideoWriter writer;

Size sz(widt, heig);

writer.open(Name, CV_FOURCC('M', 'J', 'P', 'G'), 70, sz, true);while ((char)keyboard != 'q' && (char)keyboard != 27 ) { /*Read input data. ESC or 'q' for quitting.*/

if (!capture.read(frame1)) { /*Read the current frame.*/cerr<< "Unable to read next frame." <

cerr<< "Exiting..." <

}/*Applying ViBe.

* If you want to use the grayscale version of ViBe (which is much faster!):

* (1) remplace C3R by C1R in this file.

* (2) uncomment the next line (cvtColor).*/cvtColor(frame1, frame, CV_BGR2GRAY);//将三通道图像帧转换为单通道

if ( frameNumber==1) {

segmentationMap=Mat(frame.rows, frame.cols, CV_8UC1);

model= (vibeModel_Sequential_t*)libvibeModel_Sequential_New();

libvibeModel_Sequential_AllocInit_8u_C1R(model, frame.data, frame.cols, frame.rows);

class_samples(model,frame.data, sampleCounts,speSamples,frame.cols, frame.rows);

}

/*ViBe: Segmentation and updating.*/libvibeModel_Sequential_Segmentation_8u_C1R(model, frame.data, segmentationMap.data);

libvibeModel_Sequential_Update_8u_C1R(model, frame.data, segmentationMap.data,&probFactor,frameNumber);

medianBlur(segmentationMap, segmentationMap,3); /*3x3 median filtering*/contour(segmentationMap, frame1); //在原图上框出动目标,至此图像处理完毕//sprintf(fileName, "results55_2/%06d.jpg",frameNumber);//imwrite(fileName, frame1);

Mat segmentationMap1;//新定义一个帧变量,不能 cvtColor(segmentationMap, segmentationMap, CV_GRAY2BGR),因为 segmentationMap 为单通道帧;

cvtColor(segmentationMap, segmentationMap1, CV_GRAY2BGR); //将单通道帧图像 segmentationMap 转化为三通道segmentationMap1,因为 res 帧为三通道帧图像//segmentationMap1要合并在 res 中;

/*Shows the current frame and the segmentation map.*/

//imshow("Frame", frame1);//imshow("Segmentation by ViBe", segmentationMap);

/*将 segmentationMap1 和 frame1 合并成一帧存放在 res 中*/segmentationMap1.copyTo(res(Rect(0, 0, 640, 512)));

frame1.copyTo(res(Rect(700, 0, 640, 512)));

imshow("res", res); //显示合并后的图像/*将 res 写入打开的视频文件中*/writer<

keyboard= waitKey(1); /*Gets the input from the keyboard.*/}

finish=clock();

total=(double)(finish-start);

cout<

cout<

capture.release();/*Delete capture object.*/libvibeModel_Sequential_Free(model);/*Frees the model.*/}/*框出运动目标*/

void contour(const Mat &mor, Mat &img)

{int img_size = img.cols *img.rows;

Mat tmp= (mor == 255);//Each detected contour is stored as a vector of points

vector >contours;

vector hierarchy; //containing information about the image topology

findContours(tmp, contours, hierarchy, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE);for (size_t k = 0; k < contours.size(); k++) {

Rect rect=boundingRect(contours[k]);double whratio = double(rect.width) / double(rect.height);double hwratio = double(rect.height) / double(rect.width);double ratio =min(hwratio, whratio);double area =rect.area();//框出符合条件的轮廓,舍去: 面积很小的, 面积很大的, 长宽比严重失调的

if (area > minArea && area < img_size*maxAreaRatio && ratio >boxRatio) {int w =rect.width;int h =rect.height;if(rect.width < 20)

rect.width= 20;/*if(rect.width < 6)

rect.width = 2*rect.width;

else

rect.width = rect.width + rect.width/2;*/

if(rect.height < 20)

rect.height= 20;/*if(rect.height < 6)

rect.height = 2*rect.height;

else

rect.height = rect.height + rect.height/2;*/

int w_add = (rect.width - w)/2;int h_add = (rect.height - h)/2;

rect.x= rect.x -h_add;

rect.y= rect.y -w_add;

rectangle(img, rect, Scalar(0,0,255));

}

}

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/561387.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

闪灯什么意思_开夜车被对方闪了一下是什么意思?老司机:灯语都不懂,晚上别开车...

阅读本文前&#xff0c;请您先点击上面的“蓝色字体”&#xff0c;再点击“关注”&#xff0c;这样您就可以继续免费收到文章了。每天都有分享&#xff0c;完全是免费订阅&#xff0c;请放心关注。 注&#xff1a;本文转载自网络&#xff…

android radiogroup 获取点击位置_屏幕连点器,解放双手[Android]

这里是“微友集市”&#xff0c;我们坚持分享优质的资源&#xff0c;让更多人能用到更好的资源&#xff0c;少花冤枉钱。如果你有什么需要&#xff0c;可以给我们留言&#xff0c;我们会努力去为你寻找&#xff0c;或许你需要的&#xff0c;也是别人需要的...1自动点击器 是一款…

c语言 freopen txt_C语言文件操作函数freopen详细解析

今天做USACO 用到了文件的操作。 之前做USACO只是格式化的些 写 freopen("xxx.in","r",stdin) 和"freopen("xxx.out","w",stdout)"百度百科上是这么介绍的&#xff1a;函数名: freopen功 能: 替换一个流&#xff0c;或者…

apache poi excel显示 base64 图片_数据处理之带图片Excel数据处理解惑

小编最近项目中遇到一个大批量Excel数据提取的问题&#xff0c;因为Excel数据中含有图片&#xff0c;所以在程序处理时遇到了困难&#xff0c;小编花了点时间才解决了这个问题&#xff0c;所以在这里mark一下。1 问题描述首先来描述一下数据处理的需求&#xff0c;如下图所以是…

qt连接mysql创建表_如何在Qt中创建mysql数据库表?

我想创建表到MySQL数据库。我能够成功地打开数据库&#xff0c;但包含创建表命令不起作用的查询&#xff1f; 如果有人知道它&#xff0c;请让我知道我会很感激。如何在Qt中创建mysql数据库表&#xff1f;mydb QSqlDatabase::addDatabase("QMYSQL");mydb.setDatabas…

mysql加锁后怎么解除_Mysql查看死锁与解除死锁的深入讲解

前言前段时间遇到了一个Mysql 死锁相关的问题&#xff0c;整理一下。问题描述&#xff1a;Mysql 的修改语句似乎都没有生效&#xff0c;同时使用Mysql GUI 工具编辑字段的值时会弹出异常。什么是死锁在解决Mysql 死锁的问题之前&#xff0c;还是先来了解一下什么是死锁。死锁是…

mysql ssd优化_mysql ssd 优化

{"moduleinfo":{"card_count":[{"count_phone":1,"count":1}],"search_count":[{"count_phone":4,"count":4}]},"card":[{"des":"阿里云数据库专家保驾护航&#xff0c;为用户…

mysql查询工具哪个好_一个比较实用的数据库查看管理工具

个人从业四年多&#xff0c;和数据库打交道不计其数&#xff0c;特别是在之前做企业级应用系统的时候&#xff0c;整天就是在业务、数据和程序之间穿梭&#xff0c;那个数据查的呀&#xff0c;平均每天有40% 左右的时间都在手工的写sql进行数据的查询。刚开始&#xff0c;通过数…

mysql运维机制_《MySQL运维内参》节选 | InnoDB日志管理机制(一)

引 子InnoDB 存储引擎是支持事务ACID特性的&#xff0c;它是以二十多年前IBM的一篇著名文章《ARIES:A Transaction Recovery Method Supporting Fine-Granularity Locking and PartialRollbacks Using Write-Ahead Logging》为理论基础&#xff0c;大多数关系型数据库的实现都是…

mysql 多个实例 备份_Linux下安装Mysql多实例作为数据备份服务器实现多主到一从多实例的备份...

1、从MYSQL官方下载MYSQL的源码版本【一定要是源码版本】2、按以下代码键入LINUX命令行[注] 添加mysql组和用户#groupadd mysql#useradd -g mysql mysql[注] 解包到/usr/local# tar -xzf mysql-standard-4.1.9-pc-linux-gnu-i686.tar.gz -C /usr/local[注] 建立软链接&#xff…

数mysql据分析优化_从零开始学习数据分析-mysql架构与优化理论

mysql的逻辑分层&#xff1a;连接层 服务层 引擎层 存储层引擎层主要分为两类&#xff1a;InnoDB、MyIsam(使用show engines;查看)InnoDB是事务优先的&#xff0c;会进行行锁&#xff0c;适合高并发操作MyIsam是性能优先的&#xff0c;进行表锁sql优化点&#xff1a;等待时间长…

检验int值在list中是否存在_R语言统计与绘图:卡方检验

卡方检验在计数资料中的应用&#xff0c;包括推断两个总体率或构成比之间有无差别、多个总体率或构成比之间有无差别、多个样本率间的多重比较、两个分类变量之间有无关联性、多维列联表的分析和频数分布拟合优度的卡方检验。选自&#xff1a;周支瑞老师下面分别介绍计数资料怎…

mysql in 多个字段_MySQL如何同时自增自减多个字段

“本文将带大家聊一下如何同时自增自减多个字段”前言最近小Q同学去面试了&#xff0c;然后就问了题目的问题&#xff0c;如何同时自增自减多个字段。小Q一时回答不出来&#xff0c;最终的结果就是回家等通知....关于这个问题咔咔来给小Q简单的进行解答一下。一、ThinkPHP框架实…

wxpython 调用子窗口_wxpython入门第一步(简单例子)

在这部分wxPython教程中&#xff0c;我们将创建一些简单的例子。简单的例子​ 我们从一个非常简单的例子开始。我们的第一个脚本将只显示一个小窗口。它不会做太多事情。我们将逐行分析这个脚本。# simple.pyimport wxapp wx.App()frame wx.Frame(None, )frame.Show()app.Mai…

orderd mysql_Oracle入门教程:leading vs ordered hint

odered hint 可以指示oracle 使用from 关键字后面的表的顺序进行join连接&#xff01;cbo会优先按照from 后面的表的顺序来进行join&#xff0c;当统计leading hint 可以指示Oracle使用leading 中指定的表作为驱动表,比如 正常的访问计划如下SCOTT> select e.ename, hiredat…

sed mysql配置文件_shell解析my.cnf配置文件

my.cnf配置格式如下vi my.cnf[client]port3306socket/tmp/mysql.socket[mysqld]port3306server-id1datadir/usr/local/mysql/data[mysqld_safe]port3306more parseMy.sh#!/bin/bashcnf$(cd dirname $0;pwd)"/my.cnf"#得到区块数组g_sec(sed -n ‘/\[*\]/p‘ $cnf |gr…

mysql标识列从一开始_mysql中标识列是什么意思有什么用

标识列是什么&#xff1f;标识列又称为自增长列。含义&#xff1a;可以不用手动的插入值&#xff0c;系统提供默认的序列值特点&#xff1a;1、标识列必须和主键搭配吗&#xff1f;不一定&#xff0c;但要求是一个key2、一个表可以有几个标识列&#xff1f;至多一个&#xff01…

mysql 及时点还原_mysqlbinglog基于即时点还原

mysqlbinlog介绍要想从二进制日志恢复数据&#xff0c;你需要知道当前二进制日志文件的路径和文件名。一般可以从选项文件(即my.cnf or my.ini&#xff0c;取决于你的系统)中找到路径。(mysql5.7开启binglog 时需要同时设置server-id否则无法启动)要想确定当前的二进制日志文件…

mysql 查询此时日期_mysql 查询日期

//查看本月数据SELECT*FROMcontent_publishWHEREdate_format(publish_time, "%Y %m") date_format(DATE_SUB(curdate(), INTERVAL 0 MONTH),"%Y %m")//查看上个月数据SELECT*FROMcontent_publishWHEREdate_format(publish_time, "%Y %m") date…

python mysql查表_python进阶(十、mysql:单表查询)

3.mysql数据库3.10 单表查询3.10.1. 简单查询查询在数据库中使用的频率是最高的&#xff1a;十次查询&#xff0c;一次增删改。1)建表2)插入数据3.10.1.1. 选择字段&#xff1a;selectselect 字段名1,字段名2…… from 表名 where 条件;3.10.1.2. 字段重命名(别名)&#xff1a;…