Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1.  
  2. frame_num = 1000;
  3.  
  4. img = imread( strcat( 'C:\Users\Ekaterina\Desktop\Ekaterina\ERASMUS MUNDUS\THESIS\fast camera\test the code\9525\',num2str(frame_num,'%07i'),'.png' ) );
  5. img_double = im2double(img);
  6. img_max = max(max(img_double));
  7. img_min = max(min(img_double));
  8. frame_write = (img_double - img_min)./(img_max - img_min);
  9.  
  10.  
  11. imagesc(frame_write);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement