SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
afiimagedriver.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#ifndef OPENCV_slideio_afiimagedriver_HPP
5#define OPENCV_slideio_afiimagedriver_HPP
6
7#include "slideio/drivers/afi/afi_api_def.hpp"
8#include "slideio/core/imagedriver.hpp"
9
10namespace slideio
11{
12 class SLIDEIO_AFI_EXPORTS AFIImageDriver : public slideio::ImageDriver
13 {
14 public:
15 AFIImageDriver();
16 ~AFIImageDriver();
17 std::string getID() const override;
18 std::shared_ptr<slideio::CVSlide> openFile(const std::string& filePath) override;
19 std::string getFileSpecs() const override;
20 };
21}
22#endif
Definition: exceptions.hpp:12