SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
otstructs.hpp
1// This file is part of slideio project.
2// It is subject to the license terms in the LICENSE file found in the top-level directory
3// of this distribution and at http://slideio.com/license.html.
4#pragma once
5#include <memory>
6#include <string>
7
8#include "slideio/imagetools/tiffkeeper.hpp"
9
10namespace tinyxml2
11{
12 class XMLElement;
13 class XMLDocument;
14}
15
16namespace slideio
17{
18 namespace ometiff
19 {
20 struct ImageData
21 {
22 std::shared_ptr<tinyxml2::XMLDocument> doc;
23 tinyxml2::XMLElement* imageXml;
24 std::string imageId;
25 std::string imageFilePath;
26 };
27
28 typedef std::vector<int> PlaneCoordinates;
29 }
30}
Definition: exceptions.hpp:15