1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
package ij.plugin;
import ij.*;
import ij.process.*;
import ij.gui.*;
import ij.io.*;
import java.awt.*;
import java.io.*;
import java.util.Properties;
/** This plugin opens a multi-page TIFF file, or a set of raw images, as a
virtual stack. It implements the File/Import/TIFF Virtual Stack command. */
public class FileInfoVirtualStack extends VirtualStack implements PlugIn {
private FileInfo[] info;
private int nImages;
/* Default constructor. */
public FileInfoVirtualStack() {}
/* Constructs a FileInfoVirtualStack from a FileInfo object. */
public FileInfoVirtualStack(FileInfo fi) {
info = new FileInfo[1];
info[0] = fi;
ImagePlus imp = open();
if (imp!=null)
imp.show();
}
/* Constructs a FileInfoVirtualStack from a FileInfo
object and displays it if 'show' is true. */
public FileInfoVirtualStack(FileInfo fi, boolean show) {
info = new FileInfo[1];
info[0] = fi;
ImagePlus imp = open();
if (imp!=null && show)
imp.show();
}
/* Constructs a FileInfoVirtualStack from an array of FileInfo objects. */
public FileInfoVirtualStack(FileInfo[] fi) {
info = fi;
nImages = info.length;
}
/** Opens the specified tiff file as a virtual stack. */
public static ImagePlus openVirtual(String path) {
OpenDialog od = new OpenDialog("Open TIFF", path);
String name = od.getFileName();
String dir = od.getDirectory();
if (name==null)
return null;
FileInfoVirtualStack stack = new FileInfoVirtualStack();
stack.init(dir, name);
if (stack.info==null)
return null;
else
return stack.open();
}
public void run(String arg) {
OpenDialog od = new OpenDialog("Open TIFF", arg);
String name = od.getFileName();
String dir = od.getDirectory();
if (name==null)
return;
init(dir, name);
if (info==null)
return;
ImagePlus imp = open();
if (imp!=null)
imp.show();
}
private void init(String dir, String name) {
if (name.endsWith(".zip")) {
IJ.error("Virtual Stack", "ZIP compressed stacks not supported");
return;
}
TiffDecoder td = new TiffDecoder(dir, name);
if (IJ.debugMode) td.enableDebugging();
IJ.showStatus("Decoding TIFF header...");
try {
info = td.getTiffInfo();
} catch (IOException e) {
String msg = e.getMessage();
if (msg==null||msg.equals("")) msg = ""+e;
IJ.error("TiffDecoder", msg);
return;
}
if (info==null || info.length==0) {
IJ.error("Virtual Stack", "This does not appear to be a TIFF stack");
return;
}
if (IJ.debugMode)
IJ.log(info[0].debugInfo);
}
private ImagePlus open() {
FileInfo fi = info[0];
int n = fi.nImages;
if (info.length==1 && n>1) {
n = validateNImages(fi);
info = new FileInfo[n];
long size = fi.width*fi.height*fi.getBytesPerPixel();
for (int i=0; i<n; i++) {
info[i] = (FileInfo)fi.clone();
info[i].nImages = 1;
info[i].longOffset = fi.getOffset() + i*(size + fi.gapBetweenImages);
}
}
nImages = info.length;
FileOpener fo = new FileOpener(info[0] );
ImagePlus imp = fo.openImage();
if (nImages==1 && fi.fileType==FileInfo.RGB48)
return imp;
Properties props = fo.decodeDescriptionString(fi);
ImagePlus imp2 = new ImagePlus(fi.fileName, this);
imp2.setFileInfo(fi);
if (imp!=null && props!=null) {
setBitDepth(imp.getBitDepth());
imp2.setCalibration(imp.getCalibration());
imp2.setOverlay(imp.getOverlay());
if (fi.info!=null)
imp2.setProperty("Info", fi.info);
int channels = getInt(props,"channels");
int slices = getInt(props,"slices");
int frames = getInt(props,"frames");
if (channels*slices*frames==nImages) {
imp2.setDimensions(channels, slices, frames);
if (getBoolean(props, "hyperstack"))
imp2.setOpenAsHyperStack(true);
}
if (channels>1 && fi.description!=null) {
int mode = IJ.COMPOSITE;
if (fi.description.indexOf("mode=color")!=-1)
mode = IJ.COLOR;
else if (fi.description.indexOf("mode=gray")!=-1)
mode = IJ.GRAYSCALE;
imp2 = new CompositeImage(imp2, mode);
}
}
return imp2;
}
private int validateNImages(FileInfo fi) {
File f = new File(fi.directory + fi.fileName);
if (!f.exists())
return fi.nImages;
long fileLength = f.length();
long bytesPerImage = fi.width*fi.height*fi.getBytesPerPixel();
for (int i=fi.nImages-1; i>=0; i--) {
long offset = fi.getOffset() + i*(bytesPerImage+fi.gapBetweenImages);
if (offset+bytesPerImage<=fileLength)
return i+1;
}
return fi.nImages;
}
int getInt(Properties props, String key) {
Double n = getNumber(props, key);
return n!=null?(int)n.doubleValue():1;
}
Double getNumber(Properties props, String key) {
String s = props.getProperty(key);
if (s!=null) {
try {
return Double.valueOf(s);
} catch (NumberFormatException e) {}
}
return null;
}
boolean getBoolean(Properties props, String key) {
String s = props.getProperty(key);
return s!=null&&s.equals("true")?true:false;
}
/** Deletes the specified image, were 1<=n<=nImages. */
public void deleteSlice(int n) {
if (n<1 || n>nImages)
throw new IllegalArgumentException("Argument out of range: "+n);
if (nImages<1) return;
for (int i=n; i<nImages; i++)
info[i-1] = info[i];
info[nImages-1] = null;
nImages--;
}
/** Returns an ImageProcessor for the specified image,
were 1<=n<=nImages. Returns null if the stack is empty.
*/
public ImageProcessor getProcessor(int n) {
if (n<1 || n>nImages)
throw new IllegalArgumentException("Argument out of range: "+n);
//if (n>1) IJ.log(" "+(info[n-1].getOffset()-info[n-2].getOffset()));
info[n-1].nImages = 1; // why is this needed?
ImagePlus imp = null;
if (IJ.debugMode) {
long t0 = System.currentTimeMillis();
FileOpener fo = new FileOpener(info[n-1]);
imp = fo.openImage();
IJ.log("FileInfoVirtualStack: "+n+", offset="+info[n-1].getOffset()+", "+(System.currentTimeMillis()-t0)+"ms");
} else {
FileOpener fo = new FileOpener(info[n-1]);
imp = fo.openImage();
}
if (imp!=null)
return imp.getProcessor();
else {
int w=getWidth(), h=getHeight();
IJ.log("Read error or file not found ("+n+"): "+info[n-1].directory+info[n-1].fileName);
switch (getBitDepth()) {
case 8: return new ByteProcessor(w, h);
case 16: return new ShortProcessor(w, h);
case 24: return new ColorProcessor(w, h);
case 32: return new FloatProcessor(w, h);
default: return null;
}
}
}
/** Returns the number of images in this stack. */
public int getSize() {
return nImages;
}
/** Returns the label of the Nth image. */
public String getSliceLabel(int n) {
if (n<1 || n>nImages)
throw new IllegalArgumentException("Argument out of range: "+n);
if (info[0].sliceLabels==null || info[0].sliceLabels.length!=nImages)
return null;
else
return info[0].sliceLabels[n-1];
}
public int getWidth() {
return info[0].width;
}
public int getHeight() {
return info[0].height;
}
/** Adds an image to this stack. */
public synchronized void addImage(FileInfo fileInfo) {
nImages++;
//IJ.log("addImage: "+nImages+" "+fileInfo);
if (info==null)
info = new FileInfo[250];
if (nImages==info.length) {
FileInfo[] tmp = new FileInfo[nImages*2];
System.arraycopy(info, 0, tmp, 0, nImages);
info = tmp;
}
info[nImages-1] = fileInfo;
}
}
|