|
Dear Folks,
I had to open LSM images, so I downloaded the jar file imported it into my
IDE and created a new Reader class. But now I want to change stacks into
images. In imageJ that could be done through IJ.run("Stack to Images", "");
but from my application, my image will dissappear whenever I try to change
stack to image. I think there is some way to do it with assigning each
stack to an ImagePlus. Anyone have an idea about this?
[code]
...
Reader lsm = new Reader();
String imagePath = "ImagePath";
ImagePlus imp = lsm.open(imagePath, true);
// IJ.run(imp, "Stack to Images", "");
[/code]
|