SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
converter.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_converter_HPP
5#define OPENCV_slideio_converter_HPP
6
7#include <map>
8
9#include "convertersvstools.hpp"
10#include "slideio/converter/converter_def.hpp"
11#include "slideio/slideio/scene.hpp"
12
13const std::string DRIVER = "DRIVER";
14
15#if defined(_MSC_VER)
16#pragma warning( push )
17#pragma warning(disable: 4251)
18#endif
19
20namespace slideio
21{
22 class ConverterParameters;
23 void SLIDEIO_CONVERTER_EXPORTS convertScene(std::shared_ptr<slideio::Scene> inputScene,
24 ConverterParameters& parameters,
25 const std::string& outputPath,
26 ConverterCallback cb=nullptr);
27}
28
29#endif
Definition: exceptions.hpp:12