SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
zvipixelformat.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_zvipixelformat_HPP
5#define OPENCV_slideio_zvipixelformat_HPP
6
7enum class ZVIPixelFormat
8{
9 PF_UNKNOWN,
10 PF_BGR,
11 PF_BGRA,
12 PF_UINT8,
13 PF_INT16,
14 PF_INT32,
15 PF_FLOAT,
16 PF_DOUBLE,
17 PF_BGR16,
18 PF_BGR32
19};
20
21#endif