use of ome.units.quantity.Length in project bioformats by openmicroscopy.
the class GatanReader method initFile.
// -- Internal FormatReader API methods --
/* @see loci.formats.FormatReader#initFile(String) */
@Override
protected void initFile(String id) throws FormatException, IOException {
super.initFile(id);
in = new RandomAccessInputStream(id);
pixelOffset = 0;
CoreMetadata m = core.get(0);
LOGGER.info("Verifying Gatan format");
m.littleEndian = false;
pixelSizes = new ArrayList<Double>();
units = new ArrayList<String>();
shapes = new ArrayList<ROIShape>();
in.order(isLittleEndian());
// only support version 3
version = in.readInt();
if (version != 3 && version != 4) {
throw new FormatException("invalid header");
}
LOGGER.info("Reading tags");
in.skipBytes(4);
skipPadding();
m.littleEndian = in.readInt() != 1;
in.order(isLittleEndian());
// TagGroup instance
in.skipBytes(2);
skipPadding();
int numTags = in.readInt();
if (numTags > in.length()) {
m.littleEndian = !isLittleEndian();
in.order(isLittleEndian());
adjustEndianness = false;
}
LOGGER.debug("tags ({}) {", numTags);
try {
parseTags(numTags, null, " ");
} catch (Exception e) {
throw new FormatException("Unable to parse metadata tag", e);
}
LOGGER.debug("}");
LOGGER.info("Populating metadata");
m.littleEndian = true;
if (getSizeX() == 0 || getSizeY() == 0) {
throw new FormatException("Dimensions information not found");
}
if (m.sizeZ == 0) {
m.sizeZ = 1;
}
m.sizeC = 1;
m.sizeT = 1;
m.dimensionOrder = "XYZTC";
m.imageCount = getSizeZ() * getSizeC() * getSizeT();
int bytes = (int) (numPixelBytes / (getSizeX() * getSizeY() * (long) getImageCount()));
if (bytes != FormatTools.getBytesPerPixel(getPixelType())) {
m.pixelType = FormatTools.pixelTypeFromBytes(bytes, signed, false);
}
m.rgb = false;
m.interleaved = false;
m.metadataComplete = true;
m.indexed = false;
m.falseColor = false;
// The metadata store we're working with.
MetadataStore store = makeFilterMetadata();
MetadataTools.populatePixels(store, this, true);
if (getMetadataOptions().getMetadataLevel() != MetadataLevel.MINIMUM) {
int index = 0;
if (pixelSizes.size() > 4) {
index = pixelSizes.size() - 3;
} else if (pixelSizes.size() == 4) {
if (Math.abs(pixelSizes.get(0) - 1.0) < Constants.EPSILON) {
index = pixelSizes.size() - 2;
}
}
if (index + 2 < pixelSizes.size() && Math.abs(pixelSizes.get(index + 1) - pixelSizes.get(index + 2)) < Constants.EPSILON) {
if (Math.abs(pixelSizes.get(index) - pixelSizes.get(index + 1)) > Constants.EPSILON && getSizeY() > 1) {
index++;
}
}
if (index < pixelSizes.size() - 1) {
Double x = pixelSizes.get(index);
Double y = pixelSizes.get(index + 1);
String xUnits = index < units.size() ? units.get(index) : "";
String yUnits = index + 1 < units.size() ? units.get(index + 1) : "";
Length sizeX = FormatTools.getPhysicalSizeX(x, convertUnits(xUnits));
Length sizeY = FormatTools.getPhysicalSizeY(y, convertUnits(yUnits));
if (sizeX != null) {
store.setPixelsPhysicalSizeX(sizeX, 0);
}
if (sizeY != null) {
store.setPixelsPhysicalSizeY(sizeY, 0);
}
if (index < pixelSizes.size() - 2) {
Double z = pixelSizes.get(index + 2);
String zUnits = index + 2 < units.size() ? units.get(index + 2) : "";
Length sizeZ = FormatTools.getPhysicalSizeZ(z, convertUnits(zUnits));
if (sizeZ != null) {
store.setPixelsPhysicalSizeZ(sizeZ, 0);
}
}
}
String instrument = MetadataTools.createLSID("Instrument", 0);
store.setInstrumentID(instrument, 0);
store.setImageInstrumentRef(instrument, 0);
String objective = MetadataTools.createLSID("Objective", 0, 0);
store.setObjectiveID(objective, 0, 0);
store.setObjectiveCorrection(getCorrection("Unknown"), 0, 0);
store.setObjectiveImmersion(getImmersion("Unknown"), 0, 0);
store.setObjectiveNominalMagnification(mag, 0, 0);
store.setObjectiveSettingsID(objective, 0);
String detector = MetadataTools.createLSID("Detector", 0, 0);
store.setDetectorID(detector, 0, 0);
store.setDetectorSettingsID(detector, 0, 0);
store.setDetectorSettingsVoltage(new ElectricPotential(voltage, UNITS.VOLT), 0, 0);
if (info == null)
info = "";
String[] scopeInfo = info.split("\\(");
for (String token : scopeInfo) {
token = token.trim();
if (token.startsWith("Mode")) {
token = token.substring(token.indexOf(' ')).trim();
String mode = token.substring(0, token.indexOf(' ')).trim();
if (mode.equals("TEM"))
mode = "Other";
store.setChannelAcquisitionMode(getAcquisitionMode(mode), 0, 0);
}
}
store.setPlanePositionX(posX, 0, 0);
store.setPlanePositionY(posY, 0, 0);
store.setPlanePositionZ(posZ, 0, 0);
for (int i = 0; i < getImageCount(); i++) {
store.setPlaneExposureTime(new Time(sampleTime, UNITS.SECOND), 0, i);
}
}
if (getMetadataOptions().getMetadataLevel() != MetadataLevel.NO_OVERLAYS && shapes.size() > 0) {
for (int i = 0; i < shapes.size(); i++) {
String roi = MetadataTools.createLSID("ROI", i);
store.setROIID(roi, i);
store.setImageROIRef(roi, 0, i);
String shapeID = MetadataTools.createLSID("Shape", i, 0);
ROIShape shape = shapes.get(i);
switch(shape.type) {
case LINE:
store.setLineID(shapeID, i, 0);
store.setLineX1(shape.x1, i, 0);
store.setLineY1(shape.y1, i, 0);
store.setLineX2(shape.x2, i, 0);
store.setLineY2(shape.y2, i, 0);
store.setLineText(shape.text, i, 0);
store.setLineFontSize(shape.fontSize, i, 0);
store.setLineStrokeColor(shape.strokeColor, i, 0);
break;
case TEXT:
store.setLabelID(shapeID, i, 0);
store.setLabelX(shape.x1, i, 0);
store.setLabelY(shape.y1, i, 0);
store.setLabelText(shape.text, i, 0);
store.setLabelFontSize(shape.fontSize, i, 0);
store.setLabelStrokeColor(shape.strokeColor, i, 0);
break;
case ELLIPSE:
store.setEllipseID(shapeID, i, 0);
double radiusX = (shape.x2 - shape.x1) / 2;
double radiusY = (shape.y2 - shape.y1) / 2;
store.setEllipseX(shape.x1 + radiusX, i, 0);
store.setEllipseY(shape.y1 + radiusY, i, 0);
store.setEllipseRadiusX(radiusX, i, 0);
store.setEllipseRadiusY(radiusY, i, 0);
store.setEllipseText(shape.text, i, 0);
store.setEllipseFontSize(shape.fontSize, i, 0);
store.setEllipseStrokeColor(shape.strokeColor, i, 0);
break;
case RECTANGLE:
store.setRectangleID(shapeID, i, 0);
store.setRectangleX(shape.x1, i, 0);
store.setRectangleY(shape.y1, i, 0);
store.setRectangleWidth(shape.x2 - shape.x1, i, 0);
store.setRectangleHeight(shape.y2 - shape.y1, i, 0);
store.setRectangleText(shape.text, i, 0);
store.setRectangleFontSize(shape.fontSize, i, 0);
store.setRectangleStrokeColor(shape.strokeColor, i, 0);
break;
default:
LOGGER.warn("Unknown ROI type: {}", shape.type);
}
}
}
}
use of ome.units.quantity.Length in project bioformats by openmicroscopy.
the class HamamatsuVMSReader method initFile.
// -- Internal FormatReader API methods --
/* @see loci.formats.FormatReader#initFile(String) */
@Override
protected void initFile(String id) throws FormatException, IOException {
super.initFile(id);
in = new RandomAccessInputStream(id);
IniParser parser = new IniParser();
IniList layout = parser.parseINI(new BufferedReader(new InputStreamReader(in, Constants.ENCODING)));
IniTable slideInfo = layout.getTable("Virtual Microscope Specimen");
int nLayers = Integer.parseInt(slideInfo.get("NoLayers"));
nRows = Integer.parseInt(slideInfo.get("NoJpegRows"));
nCols = Integer.parseInt(slideInfo.get("NoJpegColumns"));
String imageFile = slideInfo.get("ImageFile");
mapFile = slideInfo.get("MapFile");
String optimisationFile = slideInfo.get("OptimisationFile");
macroFile = slideInfo.get("MacroImage");
Double physicalWidth = new Double(slideInfo.get("PhysicalWidth"));
Double physicalHeight = new Double(slideInfo.get("PhysicalHeight"));
Double magnification = new Double(slideInfo.get("SourceLens"));
Double macroWidth = new Double(slideInfo.get("PhysicalMacroWidth"));
Double macroHeight = new Double(slideInfo.get("PhysicalMacroHeight"));
for (String key : slideInfo.keySet()) {
addGlobalMeta(key, slideInfo.get(key));
}
Location dir = new Location(id).getAbsoluteFile().getParentFile();
if (imageFile != null) {
imageFile = new Location(dir, imageFile).getAbsolutePath();
files.add(imageFile);
}
tileFiles = new String[nLayers][nRows][nCols];
tileFiles[0][0][0] = imageFile;
for (int layer = 0; layer < nLayers; layer++) {
for (int row = 0; row < nRows; row++) {
for (int col = 0; col < nCols; col++) {
String f = slideInfo.get("ImageFile(" + col + "," + row + ")");
if (f != null) {
f = new Location(dir, f).getAbsolutePath();
tileFiles[layer][row][col] = f;
files.add(f);
}
}
}
}
if (mapFile != null) {
mapFile = new Location(dir, mapFile).getAbsolutePath();
files.add(mapFile);
}
if (optimisationFile != null) {
optimisationFile = new Location(dir, optimisationFile).getAbsolutePath();
files.add(optimisationFile);
}
if (macroFile != null) {
macroFile = new Location(dir, macroFile).getAbsolutePath();
files.add(macroFile);
}
int seriesCount = 3;
core.clear();
for (int i = 0; i < seriesCount; i++) {
String file = null;
switch(i) {
case 0:
file = tileFiles[0][nRows - 1][nCols - 1];
break;
case 1:
file = macroFile;
break;
case 2:
file = mapFile;
break;
}
int[] dims;
try (RandomAccessInputStream s = new RandomAccessInputStream(file);
JPEGTileDecoder decoder = new JPEGTileDecoder()) {
dims = decoder.preprocess(s);
}
CoreMetadata m = new CoreMetadata();
if (i == 0) {
m.sizeX = (MAX_JPEG_SIZE * (nCols - 1)) + dims[0];
m.sizeY = (MAX_JPEG_SIZE * (nRows - 1)) + dims[1];
} else {
m.sizeX = dims[0];
m.sizeY = dims[1];
}
m.sizeZ = 1;
m.sizeC = 3;
m.sizeT = 1;
m.rgb = true;
m.imageCount = 1;
m.dimensionOrder = "XYCZT";
m.pixelType = FormatTools.UINT8;
m.interleaved = m.sizeX > MAX_SIZE && m.sizeY > MAX_SIZE;
m.thumbnail = i > 0;
core.add(m);
}
CoreMetadata ms0 = core.get(0);
MetadataStore store = makeFilterMetadata();
MetadataTools.populatePixels(store, this);
String path = new Location(currentId).getAbsoluteFile().getName();
store.setImageName(path + " full resolution", 0);
store.setImageName(path + " macro", 1);
store.setImageName(path + " map", 2);
if (getMetadataOptions().getMetadataLevel() != MetadataLevel.MINIMUM) {
Length sizeX = FormatTools.getPhysicalSizeX(physicalWidth / ms0.sizeX);
Length sizeY = FormatTools.getPhysicalSizeY(physicalHeight / ms0.sizeY);
Length macroSizeX = FormatTools.getPhysicalSizeX(macroWidth / core.get(1).sizeX);
Length macroSizeY = FormatTools.getPhysicalSizeY(macroHeight / core.get(1).sizeY);
if (sizeX != null) {
store.setPixelsPhysicalSizeX(sizeX, 0);
}
if (sizeY != null) {
store.setPixelsPhysicalSizeY(sizeY, 0);
}
if (macroSizeX != null) {
store.setPixelsPhysicalSizeX(macroSizeX, 1);
}
if (macroSizeY != null) {
store.setPixelsPhysicalSizeY(macroSizeY, 1);
}
String instrumentID = MetadataTools.createLSID("Instrument", 0);
store.setInstrumentID(instrumentID, 0);
store.setImageInstrumentRef(instrumentID, 0);
String objectiveID = MetadataTools.createLSID("Objective", 0, 0);
store.setObjectiveID(objectiveID, 0, 0);
store.setObjectiveNominalMagnification(magnification, 0, 0);
store.setObjectiveSettingsID(objectiveID, 0);
}
}
use of ome.units.quantity.Length in project bioformats by openmicroscopy.
the class PDSReader method initFile.
// -- Internal FormatReader API methods --
/* @see loci.formats.FormatReader#initFile(String) */
@Override
protected void initFile(String id) throws FormatException, IOException {
if (!checkSuffix(id, "hdr")) {
String headerFile = id.substring(0, id.lastIndexOf(".")) + ".hdr";
if (!new Location(headerFile).exists()) {
headerFile = id.substring(0, id.lastIndexOf(".")) + ".HDR";
if (!new Location(headerFile).exists()) {
throw new FormatException("Could not find matching .hdr file.");
}
}
initFile(headerFile);
return;
}
super.initFile(id);
String[] headerData = DataTools.readFile(id).split("\r\n");
if (headerData.length == 1) {
headerData = headerData[0].split("\r");
}
Length xPos = null, yPos = null;
Double deltaX = null, deltaY = null;
String date = null;
CoreMetadata m = core.get(0);
for (String line : headerData) {
int eq = line.indexOf('=');
if (eq < 0)
continue;
int end = line.indexOf('/');
if (end < 0)
end = line.length();
String key = line.substring(0, eq).trim();
String value = line.substring(eq + 1, end).trim();
if (key.equals("NXP")) {
m.sizeX = Integer.parseInt(value);
} else if (key.equals("NYP")) {
m.sizeY = Integer.parseInt(value);
} else if (key.equals("XPOS")) {
final Double number = Double.valueOf(value);
xPos = new Length(number, UNITS.REFERENCEFRAME);
addGlobalMeta("X position for position #1", xPos);
} else if (key.equals("YPOS")) {
final Double number = Double.valueOf(value);
yPos = new Length(number, UNITS.REFERENCEFRAME);
addGlobalMeta("Y position for position #1", yPos);
} else if (key.equals("SIGNX")) {
reverseX = value.replaceAll("'", "").trim().equals("-");
} else if (key.equals("SIGNY")) {
reverseY = value.replaceAll("'", "").trim().equals("-");
} else if (key.equals("DELTAX")) {
deltaX = new Double(value);
} else if (key.equals("DELTAY")) {
deltaY = new Double(value);
} else if (key.equals("COLOR")) {
int color = Integer.parseInt(value);
if (color == 4) {
m.sizeC = 3;
m.rgb = true;
} else {
m.sizeC = 1;
m.rgb = false;
lutIndex = color - 1;
m.indexed = lutIndex >= 0;
}
} else if (key.equals("SCAN TIME")) {
long modTime = new Location(currentId).getAbsoluteFile().lastModified();
String year = DateTools.convertDate(modTime, DateTools.UNIX, "yyyy");
date = value.replaceAll("'", "") + " " + year;
date = DateTools.formatDate(date, DATE_FORMAT);
} else if (key.equals("FILE REC LEN")) {
recordWidth = Integer.parseInt(value) / 2;
}
addGlobalMeta(key, value);
}
m.sizeZ = 1;
m.sizeT = 1;
m.imageCount = 1;
m.dimensionOrder = "XYCZT";
m.pixelType = FormatTools.UINT16;
m.littleEndian = true;
String base = currentId.substring(0, currentId.lastIndexOf("."));
pixelsFile = base + ".IMG";
if (!new Location(pixelsFile).exists()) {
pixelsFile = base + ".img";
}
boolean minimumMetadata = getMetadataOptions().getMetadataLevel() == MetadataLevel.MINIMUM;
MetadataStore store = makeFilterMetadata();
MetadataTools.populatePixels(store, this, !minimumMetadata);
if (date != null) {
store.setImageAcquisitionDate(new Timestamp(date), 0);
}
if (!minimumMetadata) {
store.setPlanePositionX(xPos, 0, 0);
store.setPlanePositionY(yPos, 0, 0);
Length sizeX = FormatTools.getPhysicalSizeX(deltaX);
Length sizeY = FormatTools.getPhysicalSizeY(deltaY);
if (sizeX != null) {
store.setPixelsPhysicalSizeX(sizeX, 0);
}
if (sizeY != null) {
store.setPixelsPhysicalSizeY(sizeY, 0);
}
}
}
use of ome.units.quantity.Length in project bioformats by openmicroscopy.
the class PerkinElmerReader method initFile.
// -- Internal FormatReader API methods --
/* @see loci.formats.FormatReader#initFile(String) */
@Override
protected void initFile(String id) throws FormatException, IOException {
if (currentId != null && (id.equals(currentId) || isUsedFile(id)))
return;
LOGGER.info("Finding HTML companion file");
if (!checkSuffix(id, HTM_SUFFIX)) {
Location parent = new Location(id).getAbsoluteFile().getParentFile();
String[] ls = parent.list();
for (String file : ls) {
if (checkSuffix(file, HTM_SUFFIX) && !file.startsWith(".")) {
id = new Location(parent.getAbsolutePath(), file).getAbsolutePath();
break;
}
}
}
super.initFile(id);
allFiles = new ArrayList<String>();
// get the working directory
Location tmpFile = new Location(id).getAbsoluteFile();
Location workingDir = tmpFile.getParentFile();
if (workingDir == null)
workingDir = new Location(".");
String workingDirPath = workingDir.getPath();
if (!workingDirPath.equals(""))
workingDirPath += File.separator;
String[] ls = workingDir.list(true);
if (!new Location(id).exists()) {
ls = Location.getIdMap().keySet().toArray(new String[0]);
workingDirPath = "";
}
LOGGER.info("Searching for all metadata companion files");
// check if we have any of the required header file types
String cfgFile = null, anoFile = null, recFile = null;
String timFile = null, csvFile = null, zpoFile = null;
String htmFile = null;
final List<PixelsFile> tempFiles = new ArrayList<PixelsFile>();
int dot = id.lastIndexOf(".");
String check = dot < 0 ? id : id.substring(0, dot);
check = check.substring(check.lastIndexOf(File.separator) + 1);
// locate appropriate .tim, .csv, .zpo, .htm and .tif files
String prefix = null;
Arrays.sort(ls);
for (int i = 0; i < ls.length; i++) {
// make sure that the file has a name similar to the name of the
// specified file
int d = ls[i].lastIndexOf(".");
while (d == -1 && i < ls.length - 1) {
i++;
d = ls[i].lastIndexOf(".");
}
String s = d < 0 ? ls[i] : ls[i].substring(0, d);
if (s.startsWith(check) || check.startsWith(s) || ((prefix != null) && (s.startsWith(prefix)))) {
prefix = ls[i].substring(0, d);
if (cfgFile == null && checkSuffix(ls[i], CFG_SUFFIX))
cfgFile = ls[i];
if (anoFile == null && checkSuffix(ls[i], ANO_SUFFIX))
anoFile = ls[i];
if (recFile == null && checkSuffix(ls[i], REC_SUFFIX))
recFile = ls[i];
if (timFile == null && checkSuffix(ls[i], TIM_SUFFIX))
timFile = ls[i];
if (csvFile == null && checkSuffix(ls[i], CSV_SUFFIX))
csvFile = ls[i];
if (zpoFile == null && checkSuffix(ls[i], ZPO_SUFFIX))
zpoFile = ls[i];
if (htmFile == null && checkSuffix(ls[i], HTM_SUFFIX))
htmFile = ls[i];
dot = ls[i].lastIndexOf(".");
PixelsFile f = new PixelsFile();
f.path = workingDirPath + ls[i];
if (checkSuffix(ls[i], TiffReader.TIFF_SUFFIXES)) {
if (dot - 4 >= 0 && dot - 4 < ls[i].length() && ls[i].charAt(dot - 4) == '_') {
f.firstIndex = Integer.parseInt(ls[i].substring(dot - 3, dot));
} else {
f.firstIndex = -1;
}
if (dot - 9 >= 0 && dot - 9 < ls[i].length() && ls[i].charAt(dot - 9) == '_') {
f.extIndex = Integer.parseInt(ls[i].substring(dot - 8, dot - 4));
} else {
f.firstIndex = i;
f.extIndex = 0;
}
tempFiles.add(f);
} else {
try {
if (dot - 4 >= 0 && dot - 4 < ls[i].length() && ls[i].charAt(dot - 4) == '_') {
f.firstIndex = Integer.parseInt(ls[i].substring(dot - 3, dot));
} else {
f.firstIndex = -1;
}
String ext = dot + 1 < ls[i].length() ? ls[i].substring(dot + 1) : "";
f.extIndex = Integer.parseInt(ext, 16);
isTiff = false;
tempFiles.add(f);
} catch (NumberFormatException exc) {
LOGGER.debug("Failed to parse file extension", exc);
}
}
}
}
files = tempFiles.toArray(new PixelsFile[tempFiles.size()]);
// determine the number of different extensions we have
LOGGER.info("Finding image files");
List<Integer> foundExts = new ArrayList<Integer>();
for (PixelsFile f : files) {
if (!foundExts.contains(f.extIndex)) {
foundExts.add(f.extIndex);
}
}
extCount = foundExts.size();
foundExts = null;
CoreMetadata ms0 = core.get(0);
ms0.imageCount = 0;
for (PixelsFile f : files) {
allFiles.add(f.path);
ms0.imageCount++;
if (f.firstIndex < 0 && files.length > extCount) {
ms0.imageCount += ((files.length - 1) / (extCount - 1)) - 1;
}
}
tiff = new MinimalTiffReader();
// we always parse the .tim and .htm files if they exist, along with
// either the .csv file or the .zpo file
LOGGER.info("Parsing metadata values");
addUsedFile(workingDirPath, cfgFile);
addUsedFile(workingDirPath, anoFile);
addUsedFile(workingDirPath, recFile);
addUsedFile(workingDirPath, timFile);
if (timFile != null)
timFile = allFiles.get(allFiles.size() - 1);
addUsedFile(workingDirPath, csvFile);
if (csvFile != null)
csvFile = allFiles.get(allFiles.size() - 1);
addUsedFile(workingDirPath, zpoFile);
if (zpoFile != null)
zpoFile = allFiles.get(allFiles.size() - 1);
addUsedFile(workingDirPath, htmFile);
if (htmFile != null)
htmFile = allFiles.get(allFiles.size() - 1);
if (timFile != null)
parseTimFile(timFile);
if (csvFile != null)
parseCSVFile(csvFile);
if (zpoFile != null && csvFile == null)
parseZpoFile(zpoFile);
// be aggressive about parsing the HTML file, since it's the only one that
// explicitly defines the number of wavelengths and timepoints
final List<Double> exposureTimes = new ArrayList<Double>();
final List<Double> zPositions = new ArrayList<Double>();
final List<Double> emWaves = new ArrayList<Double>();
final List<Double> exWaves = new ArrayList<Double>();
if (htmFile != null) {
String[] tokens = DataTools.readFile(htmFile).split(HTML_REGEX);
for (int j = 0; j < tokens.length; j++) {
if (tokens[j].indexOf('<') != -1)
tokens[j] = "";
}
for (int j = 0; j < tokens.length - 1; j += 2) {
if (tokens[j].indexOf("Exposure") != -1) {
addGlobalMeta("Camera Data " + tokens[j].charAt(13), tokens[j]);
int ndx = tokens[j].indexOf("Exposure") + 9;
String exposure = tokens[j].substring(ndx, tokens[j].indexOf(" ", ndx)).trim();
if (exposure.endsWith(",")) {
exposure = exposure.substring(0, exposure.length() - 1);
}
exposureTimes.add(new Double(Double.parseDouble(exposure) / 1000));
if (tokens[j].indexOf("nm") != -1) {
int nmIndex = tokens[j].indexOf("nm");
int paren = tokens[j].lastIndexOf("(", nmIndex);
int slash = tokens[j].lastIndexOf("/", nmIndex);
if (slash == -1)
slash = nmIndex;
emWaves.add(new Double(tokens[j].substring(paren + 1, slash).trim()));
if (tokens[j].indexOf("nm", nmIndex + 3) != -1) {
nmIndex = tokens[j].indexOf("nm", nmIndex + 3);
paren = tokens[j].lastIndexOf(" ", nmIndex);
slash = tokens[j].lastIndexOf("/", nmIndex);
if (slash == -1)
slash = nmIndex + 2;
exWaves.add(new Double(tokens[j].substring(paren + 1, slash).trim()));
}
}
j--;
} else if (tokens[j + 1].trim().equals("Slice Z positions")) {
for (int q = j + 2; q < tokens.length; q++) {
if (!tokens[q].trim().equals("")) {
try {
zPositions.add(new Double(tokens[q].trim()));
} catch (NumberFormatException e) {
}
}
}
} else if (!tokens[j].trim().equals("")) {
tokens[j] = tokens[j].trim();
tokens[j + 1] = tokens[j + 1].trim();
parseKeyValue(tokens[j], tokens[j + 1]);
}
}
} else {
throw new FormatException("Valid header files not found.");
}
if (details != null) {
String[] tokens = details.split("\\s");
int n = 0;
for (String token : tokens) {
if (token.equals("Wavelengths"))
ms0.sizeC = n;
else if (token.equals("Frames"))
ms0.sizeT = n;
else if (token.equals("Slices"))
ms0.sizeZ = n;
try {
n = Integer.parseInt(token);
} catch (NumberFormatException e) {
n = 0;
}
}
}
LOGGER.info("Populating metadata");
if (files.length == 0) {
throw new FormatException("TIFF files not found.");
}
if (isTiff) {
tiff.setId(getFile(0));
ms0.pixelType = tiff.getPixelType();
} else {
RandomAccessInputStream tmp = new RandomAccessInputStream(getFile(0));
int bpp = (int) (tmp.length() - 6) / (getSizeX() * getSizeY());
tmp.close();
if (bpp % 3 == 0)
bpp /= 3;
ms0.pixelType = FormatTools.pixelTypeFromBytes(bpp, false, false);
}
if (getSizeZ() <= 0)
ms0.sizeZ = 1;
if (getSizeC() <= 0)
ms0.sizeC = 1;
if (getSizeT() <= 0 || getImageCount() % (getSizeZ() * getSizeC()) == 0) {
ms0.sizeT = getImageCount() / (getSizeZ() * getSizeC());
} else {
ms0.imageCount = getSizeZ() * getSizeC() * getSizeT();
if (getImageCount() > files.length) {
ms0.imageCount = files.length;
ms0.sizeT = getImageCount() / (getSizeZ() * getSizeC());
}
}
ms0.dimensionOrder = "XYCTZ";
ms0.rgb = isTiff ? tiff.isRGB() : false;
ms0.interleaved = false;
ms0.littleEndian = isTiff ? tiff.isLittleEndian() : true;
ms0.metadataComplete = true;
ms0.indexed = isTiff ? tiff.isIndexed() : false;
ms0.falseColor = false;
if (getImageCount() != getSizeZ() * getSizeC() * getSizeT()) {
ms0.imageCount = getSizeZ() * getSizeC() * getSizeT();
}
if (!isTiff && extCount > getSizeT()) {
extCount = getSizeT() * getSizeC();
}
// Populate metadata store
// The metadata store we're working with.
MetadataStore store = makeFilterMetadata();
MetadataTools.populatePixels(store, this, true);
// populate Image element
if (finishTime != null) {
Timestamp timestamp = Timestamp.valueOf(DateTools.formatDate(finishTime, DATE_FORMAT));
if (timestamp != null)
store.setImageAcquisitionDate(timestamp, 0);
}
if (getMetadataOptions().getMetadataLevel() != MetadataLevel.MINIMUM) {
// populate Dimensions element
Length sizeX = FormatTools.getPhysicalSizeX(pixelSizeX);
Length sizeY = FormatTools.getPhysicalSizeY(pixelSizeY);
if (sizeX != null) {
store.setPixelsPhysicalSizeX(sizeX, 0);
}
if (sizeY != null) {
store.setPixelsPhysicalSizeY(sizeY, 0);
}
// link Instrument and Image
String instrumentID = MetadataTools.createLSID("Instrument", 0);
store.setInstrumentID(instrumentID, 0);
store.setImageInstrumentRef(instrumentID, 0);
// populate LogicalChannel element
for (int i = 0; i < getEffectiveSizeC(); i++) {
if (i < emWaves.size()) {
Length em = FormatTools.getEmissionWavelength(emWaves.get(i));
if (em != null) {
store.setChannelEmissionWavelength(em, 0, i);
}
}
if (i < exWaves.size()) {
Length ex = FormatTools.getExcitationWavelength(exWaves.get(i));
if (ex != null) {
store.setChannelExcitationWavelength(ex, 0, i);
}
}
}
// populate PlaneTiming and StagePosition
long start = 0, end = 0;
if (startTime != null) {
start = DateTools.getTime(startTime, DATE_FORMAT);
}
if (finishTime != null) {
end = DateTools.getTime(finishTime, DateTools.ISO8601_FORMAT);
}
double secondsPerPlane = (double) (end - start) / getImageCount() / 1000;
for (int i = 0; i < getImageCount(); i++) {
int[] zct = getZCTCoords(i);
store.setPlaneDeltaT(new Time(i * secondsPerPlane, UNITS.SECOND), 0, i);
if (zct[1] < exposureTimes.size() && exposureTimes.get(zct[1]) != null) {
store.setPlaneExposureTime(new Time(exposureTimes.get(zct[1]), UNITS.SECOND), 0, i);
}
if (zct[0] < zPositions.size()) {
final Double zPosition = zPositions.get(zct[0]);
final Length xl = new Length(0d, UNITS.REFERENCEFRAME);
final Length yl = new Length(0d, UNITS.REFERENCEFRAME);
final Length zl;
if (zPosition == null) {
zl = null;
} else {
zl = new Length(zPosition, UNITS.REFERENCEFRAME);
}
store.setPlanePositionX(xl, 0, i);
store.setPlanePositionY(yl, 0, i);
store.setPlanePositionZ(zl, 0, i);
}
}
}
}
use of ome.units.quantity.Length in project bioformats by openmicroscopy.
the class ImagicReader method initFile.
// -- Internal FormatReader API methods --
/* @see loci.formats.FormatReader#initFile(String) */
@Override
protected void initFile(String id) throws FormatException, IOException {
if (!checkSuffix(id, "hed")) {
id = id.substring(0, id.lastIndexOf(".")) + ".hed";
}
super.initFile(id);
in = new RandomAccessInputStream(id);
pixels = id.substring(0, id.lastIndexOf(".")) + ".img";
pixelsFile = new RandomAccessInputStream(pixels);
CoreMetadata m = core.get(0);
m.littleEndian = true;
in.order(isLittleEndian());
pixelsFile.order(isLittleEndian());
int nImages = (int) (in.length() / 1024);
String imageName = null;
double physicalXSize = 0d;
double physicalYSize = 0d;
double physicalZSize = 0d;
for (int i = 0; i < nImages; i++) {
in.seek(i * 1024);
in.skipBytes(16);
int month = in.readInt();
int day = in.readInt();
int year = in.readInt();
int hour = in.readInt();
int minute = in.readInt();
int seconds = in.readInt();
in.skipBytes(8);
m.sizeY = in.readInt();
m.sizeX = in.readInt();
String type = in.readString(4);
if (type.equals("REAL")) {
m.pixelType = FormatTools.FLOAT;
} else if (type.equals("INTG")) {
m.pixelType = FormatTools.UINT16;
} else if (type.equals("PACK")) {
m.pixelType = FormatTools.UINT8;
} else if (type.equals("COMP")) {
throw new FormatException("Unsupported pixel type 'COMP'");
} else if (type.equals("RECO")) {
throw new FormatException("Unsupported pixel type 'RECO'");
}
int ixold = in.readInt();
int iyold = in.readInt();
float averageDensity = in.readFloat();
float sigma = in.readFloat();
in.skipBytes(8);
float maxDensity = in.readFloat();
float minDensity = in.readFloat();
in.skipBytes(4);
float defocus1 = in.readFloat();
float defocus2 = in.readFloat();
float defocusAngle = in.readFloat();
float startAngle = in.readFloat();
float endAngle = in.readFloat();
imageName = in.readString(80);
float ccc3d = in.readFloat();
int ref3d = in.readInt();
int micrographID = in.readInt();
int zShift = in.readInt();
float alpha = in.readFloat();
float beta = in.readFloat();
float gamma = in.readFloat();
in.skipBytes(8);
int nAliSum = in.readInt();
int pointGroup = in.readInt();
in.skipBytes(28);
int version = in.readInt();
int stamp = in.readInt();
in.skipBytes(120);
float angle = in.readFloat();
float voltage = in.readFloat();
float sphericalAberration = in.readFloat();
float partialCoherence = in.readFloat();
float ccc = in.readFloat();
float errar = in.readFloat();
float err3d = in.readFloat();
int ref = in.readInt();
float classNumber = in.readFloat();
in.skipBytes(4);
float representationQuality = in.readFloat();
float eqZShift = in.readFloat();
float xShift = in.readFloat();
float yShift = in.readFloat();
float numcls = in.readFloat();
float overallQuality = in.readFloat();
float equivalentAngle = in.readFloat();
float eqXShift = in.readFloat();
float eqYShift = in.readFloat();
float cmToVar = in.readFloat();
float informat = in.readFloat();
int nEigenvalues = in.readInt();
int nActiveImages = in.readInt();
physicalXSize = in.readFloat();
physicalYSize = in.readFloat();
physicalZSize = in.readFloat();
addGlobalMeta("IXOLD", ixold);
addGlobalMeta("IYOLD", iyold);
addGlobalMeta("Average density (AVDENS)", averageDensity);
addGlobalMeta("SIGMA", sigma);
addGlobalMeta("Maximum density (DENSMAX)", maxDensity);
addGlobalMeta("Minimum density (DENSMIN)", minDensity);
addGlobalMeta("DEFOCUS1", defocus1);
addGlobalMeta("DEFOCUS2", defocus2);
addGlobalMeta("Defocus angle (DEFANGLE)", defocusAngle);
addGlobalMeta("SINOSTRT", startAngle);
addGlobalMeta("SINOEND", endAngle);
addGlobalMeta("Image name", imageName);
addGlobalMeta("CCC3D", ccc3d);
addGlobalMeta("REF3D", ref3d);
addGlobalMeta("MIDENT", micrographID);
addGlobalMeta("EZSHIFT", zShift);
addGlobalMeta("EALPHA", alpha);
addGlobalMeta("EBETA", beta);
addGlobalMeta("EGAMMA", gamma);
addGlobalMeta("NALISUM", nAliSum);
addGlobalMeta("PGROUP", pointGroup);
addGlobalMeta("IMAGIC Version (IMAVERS)", version);
addGlobalMeta("REALTYPE", stamp);
addGlobalMeta("ANGLE", angle);
addGlobalMeta("VOLTAGE (in kV)", voltage);
addGlobalMeta("SPABERR (in mm)", sphericalAberration);
addGlobalMeta("PCOHER", partialCoherence);
addGlobalMeta("CCC", ccc);
addGlobalMeta("ERRAR", errar);
addGlobalMeta("ERR3D", err3d);
addGlobalMeta("REF", ref);
addGlobalMeta("CLASSNO", classNumber);
addGlobalMeta("REPQUAL", representationQuality);
addGlobalMeta("ZSHIFT", eqZShift);
addGlobalMeta("XSHIFT", xShift);
addGlobalMeta("YSHIFT", yShift);
addGlobalMeta("NUMCLS", numcls);
addGlobalMeta("OVQUAL", overallQuality);
addGlobalMeta("EANGLE", equivalentAngle);
addGlobalMeta("EXSHIFT", eqXShift);
addGlobalMeta("EYSHIFT", eqYShift);
addGlobalMeta("CMTOTVAR", cmToVar);
addGlobalMeta("INFORMAT", informat);
addGlobalMeta("NUMEIGEN", nEigenvalues);
addGlobalMeta("NIACTIVE", nActiveImages);
addGlobalMeta("RESOLX", physicalXSize);
addGlobalMeta("RESOLY", physicalYSize);
addGlobalMeta("RESOLZ", physicalZSize);
}
m.sizeZ = nImages;
m.sizeC = 1;
m.sizeT = 1;
m.imageCount = nImages;
m.dimensionOrder = "XYZCT";
MetadataStore store = makeFilterMetadata();
MetadataTools.populatePixels(store, this);
store.setImageName(imageName.trim(), 0);
if (getMetadataOptions().getMetadataLevel() != MetadataLevel.MINIMUM) {
Length sizeX = FormatTools.getPhysicalSizeX(physicalXSize * 0.0001);
Length sizeY = FormatTools.getPhysicalSizeY(physicalYSize * 0.0001);
Length sizeZ = FormatTools.getPhysicalSizeZ(physicalZSize * 0.0001);
if (sizeX != null) {
store.setPixelsPhysicalSizeX(sizeX, 0);
}
if (sizeY != null) {
store.setPixelsPhysicalSizeY(sizeY, 0);
}
if (sizeZ != null) {
store.setPixelsPhysicalSizeZ(sizeZ, 0);
}
}
}
Aggregations