PmotionEstES.m
上传用户:cxsjwj
上传日期:2022-08-09
资源大小:34k
文件大小:2k
源码类别:

matlab例程

开发平台:

Matlab

  1. % Computes motion vectors using exhaustive search method
  2. %
  3. % Input
  4. %   imgP : The image for which we want to find motion vectors
  5. %   imgI : The reference image
  6. %   mbSize : Size of the macroblock
  7. %   p : Search parameter  (read literature to find what this means)
  8. %
  9. % Ouput
  10. %   motionVect : the motion vectors for each integral macroblock in imgP
  11. %   EScomputations: The average number of points searched for a macroblock
  12. %
  13. % Written by Aroh Barjatya
  14. function motionVect = motionEstES(imgP, imgI, mbSize, p)
  15. [row col] = size(imgI);
  16. vectors = zeros(2,row*col/mbSize^2);
  17. costs = ones(2*p + 1, 2*p +1) * 65537;
  18. %computations = 0;
  19. % we start off from the top left of the image
  20. % we will walk in steps of mbSize
  21. % for every marcoblock that we look at we will look for
  22. % a close match p pixels on the left, right, top and bottom of it
  23. mbCount = 1;
  24. for i = 1 : mbSize : row-mbSize+1
  25.     for j = 1 : mbSize : col-mbSize+1
  26.         
  27.         % the exhaustive search starts here
  28.         % we will evaluate cost for  (2p + 1) blocks vertically
  29.         % and (2p + 1) blocks horizontaly
  30.         % m is row(vertical) index
  31.         % n is col(horizontal) index
  32.         % this means we are scanning in raster order
  33.         
  34.         for m = -p : p        
  35.             for n = -p : p
  36.                 refBlkVer = i + m;   % row/Vert co-ordinate for ref block
  37.                 refBlkHor = j + n;   % col/Horizontal co-ordinate
  38.                 if ( refBlkVer < 1 | refBlkVer+mbSize-1 > row ...
  39.                         | refBlkHor < 1 | refBlkHor+mbSize-1 > col)
  40.                     continue;
  41.                 end
  42.                 costs(m+p+1,n+p+1) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), ...
  43.                      imgI(refBlkVer:refBlkVer+mbSize-1, refBlkHor:refBlkHor+mbSize-1), mbSize);
  44. %                computations = computations + 1;
  45.                 
  46.             end
  47.         end
  48.  %       costs
  49.         % Now we find the vector where the cost is minimum
  50.         % and store it ... this is what will be passed back.
  51.         
  52.         [dx, dy, min] = minCost(costs); % finds which macroblock in imgI gave us min Cost
  53.         vectors(1,mbCount) = dy-p-1;    % row co-ordinate for the vector
  54.         vectors(2,mbCount) = dx-p-1;    % col co-ordinate for the vector
  55.         mbCount = mbCount + 1;
  56.         costs = ones(2*p + 1, 2*p +1) * 65537;
  57.     end
  58. end
  59. motionVect = vectors;
  60. %EScomputations = computations/(mbCount - 1);
  61.