Raghu:
I assume you already have imported your image stack into IDL. By default, I would expect the variable that holds this image stack to be "band sequential". That is, I would expect that the dimensions shown by the IDL command:
HELP, myImageStack
would show dimensions [imageWidth, imageHeight, nBands]. Is that correct?
If so, this is the way to address individual images within the stack:
myImage0 = myImageStack[*,*,0]
myImage1 = myImageStack[*,*,1]
; ... etc.
James Jones
|