Matlab - DoubleFlip Image


/ Published in: MatLab
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function flipIMG=DoubleFlip(img)
  2.  
  3.  
  4. flipIMG = img([1:end/2, end/2:-1:1], [1:end/2, end/2:-1:1], :);
  5.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.