Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.37 KB | None | 0 0
  1. % Registro de Imagens no Matlab
  2. fixed  = imread('pout.tif');
  3. imshow(fixed);
  4. moving = imrotate (fixed, 5,'bilinear');
  5. figure, imshow(moving)
  6. figure,imshowpair (fixed, moving, 'Scaling','joint')
  7. [optimizer, metric] = imregconfig ('monomodal');
  8. tformEstimate = imregister(moving,fixed,'affine',optimizer, metric);
  9. figure,imshowpair (fixed, tformEstimate, 'Scaling','joint')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement