SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
svsimagedriver.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_svsimagedriver_HPP
5#define OPENCV_slideio_svsimagedriver_HPP
6
7#include "slideio/drivers/svs/svs_api_def.hpp"
8#include "slideio/core/imagedriver.hpp"
9
10namespace slideio
11{
12 class SLIDEIO_SVS_EXPORTS SVSImageDriver : public slideio::ImageDriver
13 {
14 public:
15 SVSImageDriver();
16 ~SVSImageDriver();
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