I am opening the Uncompressed Multiframe Dicom images with the help of ij
classes.
Image is having more than 1000 frames with Dimention 630 X 500.
While loading it takes some time because firstly it loads all the frames in
stack.
I their any method with the help of that i can open one by one frame,so that
it cannot take time.
see my code for display of dicom images.
String path = "c:\";
ImagePlus timp = new Opener().openImage(path, "myfilename.dic");
//because here it is loaded all the frames so that i setSlice at location 1.
timp.setSlice(1);
So please tell me if i can can load only one frame of image and save my
time.
thanks,
--------------------------------------------------------------------
Prashant Chandrakar
"90% of code written today is getting around other people's mistakes"