这篇文章将为大家详细讲解有关如何使用opencv帧差法找出相差大的图像,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
坚守“ 做人真诚 · 做事靠谱 · 口碑至上 · 高效敬业 ”的价值观,专业网站建设服务10余年为成都阳光房小微创业公司专业提供成都定制网页设计营销网站建设商城网站建设手机网站建设小程序网站建设网站改版,从内容策划、视觉设计、底层架构、网页布局、功能开发迭代于一体的高端网站建设服务。本文实例为大家分享了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 18456 using 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); } } }
关于“如何使用opencv帧差法找出相差大的图像”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
另外有需要云服务器可以了解下创新互联建站www.cdcxhl.com,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
本文标题:如何使用opencv帧差法找出相差大的图像-创新互联
当前地址:https://www.cdcxhl.com/article10/dgjedo.html
成都网站建设公司_创新互联,为您提供软件开发、手机网站建设、企业建站、营销型网站建设、定制网站、标签优化
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联