SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
otimagedriver.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
6#include "slideio/drivers/ome-tiff/ot_api_def.hpp"
7#include "slideio/core/imagedriver.hpp"
8
9namespace slideio
10{
11 namespace ometiff
12 {
13 class SLIDEIO_OMETIFF_EXPORTS OTImageDriver : public slideio::ImageDriver
14 {
15 public:
16 OTImageDriver();
17 ~OTImageDriver();
18 std::string getID() const override;
19 std::shared_ptr<slideio::CVSlide> openFile(const std::string& filePath) override;
20 std::string getFileSpecs() const override;
21 };
22 }
23}
24
Definition: exceptions.hpp:15