网站大量收购闲置独家精品文档,联系QQ:2885784924

基于块的全搜索运动估计算法实现matlab代码.docx

基于块的全搜索运动估计算法实现matlab代码.docx

  1. 1、本文档共8页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
主文件motionEstAnalysis.m% This script uses all the Motion Estimation algorithms written for the% final project and save their results.close allclear all% imageName = caltrain.avi;VideoName = shaky_car.avi;video = aviread(VideoName);% movie(video);mbSize = 16;p = 7;fori = 1:6imgINumber = i;imgPNumber = i+2;videoI = video(imgINumber);videoP = video(imgPNumber);imgI = double(videoI.cdata);imgP = double(videoP.cdata); [row col] = size(imgI); % Exhaustive Search 基于块的全搜索算法 [BlockCenter, motionVect, computations] = motionEstES(imgP,imgI,mbSize,p); % P 帧当前重构图像imgPComp = motionComp(imgI, motionVect, mbSize); % P 帧当前图像和 P 帧当前重构图像的PSNR值ESpsnr(i+1) = imgPSNR(imgP, imgPComp, 255);EScomputations(i+1) = computations; % P 帧当前重构误差图像imagePDiff = imgP - imgPComp; ifi == 4figure; imageI = uint8(imgI);imageP = uint8(imgP);imagePComp = uint8(imgPComp);imagePDiff = uint8(imagePDiff);subplot(221);imshow(imageI); title(I 帧参考图像); subplot(222);imshow(imageP); title(P 帧当前图像); subplot(223);imshow(imagePComp); title(P 帧当前重构图像);subplot(224);imshow(imagePDiff); title(P 帧当前重构误差图像); % 画运动矢量图figure; quiver( BlockCenter(2,:), BlockCenter(1,:), motionVect(2,:), motionVect(1,:), .2,r);axis([0 320 0 240]);fori=mbSize:mbSize:col-mbSize x = [i,i]; y = [0,row];line(x,y,LineStyle,-,Marker,none);endfor j=mbSize:mbSize:row-mbSize x = [0,col]; y = [j,j];line(x,y,LineStyle,-,Marker,none);endxlabel(X);ylabel(Y);endend文件motionEstES.m% Computes motion vectors using exhaustive search method(全搜索法计算运动矢量)%% Input% imgP : The image for which we want to find motion vectors(当前图像)% imgI : The reference image(参考图像)% mbSize : Size of the macroblock(宏块尺寸)% p : Search parameter (read literature to find what this means)(搜索参数)%% Ouput% motionVect : the motion vectors for each integral macroblock in imgP(当前图像中每一个积分宏块的运动矢量)% EScomputations: The average number of points se

您可能关注的文档

文档评论(0)

xingyuxiaxiang + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档