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#pragma once
5
6#include "convertercallback.hpp"
7#include "slideio/converter/converter_def.hpp"
8#include "slideio/slideio/scene.hpp"
9
10const std::string DRIVER = "DRIVER";
11
12#if defined(_MSC_VER)
13#pragma warning( push )
14#pragma warning(disable: 4251)
15#endif
16
17namespace slideio
18{
19 namespace converter
20 {
21 class ConverterParameters;
22 void SLIDEIO_CONVERTER_EXPORTS convertScene(std::shared_ptr<Scene> inputScene,
23 ConverterParameters& parameters,
24 const std::string& outputPath,
25 int tileBatchSize,
26 ConverterCallback cb = nullptr);
27 }
28}
29
30#if defined(_MSC_VER)
31#pragma warning( pop )
32#endif
Definition: exceptions.hpp:15