Blame view

old/rtsRAW2Images.m 216 Bytes
8be1ab93   David Mayerich   initial commit of...
1
2
3
4
5
6
7
8
  function rtsRAW2Images(source, destination_directory)
  
  for i=1:size(source, 3)
      filename = [destination_directory '\' rtsInt2Str(i, 4) '.bmp'];
      imwrite(source(:, :, i)', filename);
      disp(filename);
  end