SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
transformationtype.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#include "slideio/transformer/transformer_def.hpp"
6#include <ostream>
7
8namespace slideio
9{
10 enum class TransformationType
11 {
12 Unknown,
13 ColorTransformation,
14 GaussianBlurFilter,
15 MedianBlurFilter,
16 SobelFilter,
17 ScharrFilter,
18 LaplacianFilter,
19 BilateralFilter,
20 CannyFilter,
21 };
22
23 SLIDEIO_TRANSFORMER_EXPORTS std::ostream& operator << (std::ostream& os, TransformationType type);
24}
Definition: exceptions.hpp:15