时间:2021-05-19
本文实例为大家分享了opencv帧差法找出相差大的图像,供大家参考,具体内容如下
#include "stdafx.h"#include <stdio.h>#include <stdlib.h>#include <iostream>#include <fstream>#include <opencv2/core/core.hpp>#include <opencv2/highgui/highgui.hpp>#include <opencv2/imgproc/imgproc.hpp>#include <opencv2/objdetect/objdetect.hpp>#include <opencv2/ml/ml.hpp>#include <string.h> #define IMAGENO 18456using namespace std;using namespace cv; int main(int argc,char * argv()){ string ImgName; char OutName[100]; Mat Image,tempImage,previousImage,currentImage,resultImage; ifstream fin("ImageList.txt"); //ifstream fin("new.txt"); for(int num=0; num<IMAGENO && getline(fin,ImgName); num++) { cout <<"读入"<<ImgName<<endl; ImgName = "E:\\Image\\" + ImgName ; Image = imread(ImgName); resize(Image,tempImage,Size(130,130)); if (num == 0) { cvtColor(tempImage, previousImage, CV_BGR2GRAY); sprintf(OutName,"E:\\数据集\\目标区域图像\\StudentsArea抠图筛选\\%5d.jpg",num); imwrite(OutName,Image); } if (num > 0) { cvtColor(tempImage, currentImage, CV_BGR2GRAY); absdiff(currentImage,previousImage,resultImage); //帧差法,相减 threshold(resultImage, resultImage, 20, 255.0, CV_THRESH_BINARY); //二值化,像素值相差大于20则置为255,其余为0 int counter = 0; // 访问mat中的像素 for (int i=0; i<resultImage.rows; i++) { uchar *data = resultImage.ptr<uchar>(i); //获取每一行的指针 for (int j=0;j<resultImage.cols; j++) { if (data[j] == 255) //访问到像素值 { counter++; } } } if (counter > 4000) //达到阈值的像素数达到一定的数量则保存该图像 { sprintf(OutName,"E:\\Image筛选之后\\%5d.jpg",num); imwrite(OutName,Image); } cvtColor(tempImage, previousImage, CV_BGR2GRAY); } }}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
今天的目标是用OpenCV实现对运动目标的检测,这里选用三帧帧差法。代码如下:#include#include#include#include#included
本文实例为大家分享了python+opencv实现移动侦测的具体代码,供大家参考,具体内容如下1.帧差法原理移动侦测即是根据视频每帧或者几帧之间像素的差异,对差
在解决图像处理问题的时候,可以利用opencv打开视频,并一帧一帧地show出来,但是要用到imshow(),需要本地的界面支持。代码如下#-*-coding:
本文实例为大家分享了opencv利用视频的前n帧求平均图像的具体代码,供大家参考,具体内容如下自己写的哈,可以用该小程序对视频求解平均模型。//OpenCV中如
本文是基于opencv将视频和动态图gif保存为图像帧。可以根据输入视频格式的不同,修改第21行。对动图的处理不同于视频,PIL库包含对图像序列的基本支持。当打