forked from glencoesoftware/isyntax2raw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathome_template.xml
More file actions
56 lines (56 loc) · 2.44 KB
/
ome_template.xml
File metadata and controls
56 lines (56 loc) · 2.44 KB
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
<OME xmlns="http://www.openmicroscopy.org/Schemas/OME/2016-06" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openmicroscopy.org/Schemas/OME/2016-06 http://www.openmicroscopy.org/Schemas/OME/2016-06/ome.xsd">
<Instrument ID="Instrument:0">
<Objective ID="Objective:0:0" NominalMagnification="40.0"/>
</Instrument>
<Image ID="Image:0" Name="${image['name']}">
<AcquisitionDate>${image['acquisitionDate']}</AcquisitionDate>
<Description>${image['description']}</Description>
<InstrumentRef ID="Instrument:0"/>
<ObjectiveSettings ID="Objective:0:0"/>
<Pixels BigEndian="false" DimensionOrder="XYZCT" ID="Pixels:0"
Interleaved="false"
PhysicalSizeX="${image['pixels']['physicalSizeX']}"
PhysicalSizeXUnit="µm"
PhysicalSizeY="${image['pixels']['physicalSizeY']}"
PhysicalSizeYUnit="µm" SignificantBits="${image['pixels']['bits_stored']}"
SizeC="3" SizeT="1"
SizeX="${image['pixels']['sizeX']}"
SizeY="${image['pixels']['sizeY']}"
SizeZ="1" Type="${image['pixels']['type']}">
<Channel ID="Channel:0:0" SamplesPerPixel="3">
<LightPath/>
</Channel>
<MetadataOnly/>
</Pixels>
</Image>
<Image ID="Image:1" Name="label image">
<AcquisitionDate>${image['acquisitionDate']}</AcquisitionDate>
<InstrumentRef ID="Instrument:0"/>
<ObjectiveSettings ID="Objective:0:0"/>
<Pixels BigEndian="false" DimensionOrder="XYZCT" ID="Pixels:1"
Interleaved="false" SignificantBits="8" SizeC="3"
SizeT="1" SizeX="${label['pixels']['sizeX']}" SizeY="${label['pixels']['sizeY']}"
SizeZ="1" Type="uint8">
<Channel ID="Channel:1:0" SamplesPerPixel="3">
<LightPath/>
</Channel>
<MetadataOnly/>
</Pixels>
</Image>
<Image ID="Image:2" Name="macro image">
<AcquisitionDate>${image['acquisitionDate']}</AcquisitionDate>
<InstrumentRef ID="Instrument:0"/>
<ObjectiveSettings ID="Objective:0:0"/>
<Pixels BigEndian="false" DimensionOrder="XYZCT" ID="Pixels:2"
Interleaved="false" SignificantBits="8" SizeC="3"
SizeT="1"
SizeX="${macro['pixels']['sizeX']}"
SizeY="${macro['pixels']['sizeY']}"
SizeZ="1" Type="uint8">
<Channel ID="Channel:2:0" SamplesPerPixel="3">
<LightPath/>
</Channel>
<MetadataOnly/>
</Pixels>
</Image>
</OME>