SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
transformations.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 "colortransformation.hpp"
6#include "gaussianblurfilter.hpp"
7#include "laplacianfilter.hpp"
8#include "medianblurfilter.hpp"
9#include "scharrfilter.hpp"
10#include "sobelfilter.hpp"
11#include "laplacianfilter.hpp"
12#include "cannyfilter.hpp"
13#include "bilateralfilter.hpp"
14
15namespace slideio
16{
17 std::shared_ptr<slideio::Transformation> SLIDEIO_TRANSFORMER_EXPORTS makeTransformationCopy(const Transformation& source);
18}
Definition: exceptions.hpp:12