Hello,
I have three sets of 20 previously generated .tiff files (400x300 pixels each). I would like to stack them into three 3D array files so that I can create three mpegs, however I'm running into problems, specifically I think I am running out of logical units. I'm rather new to IDL and I think this is a relatively simple problem to fix, probably something wrong with the syntax. Here is what I have so far to generate the first of the three sets:
CD, 'C:\Documents and Settings\Owner\Desktop\IDL_Project\si'
list = FILE_SEARCH('*.tiff',COUNT = count,/NOSORT)
cube_si=FINDGEN(400,300,count)
FOR k = 0,count-1 DO BEGIN
file_si = list(k)
OPENR, lun, file_si, /get_lun
file_si=cube_si(*,*,k)
ENDFOR
CLOSE, lun
Thank you for any help, I apologize if this is rather basic, I am new to IDL and am having a hard time sifting through the IDL help files to pinpoint the answer to this!!
|