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#pragma once
5
6enum class ZVIPixelFormat
7{
8 PF_UNKNOWN,
9 PF_BGR,
10 PF_BGRA,
11 PF_UINT8,
12 PF_INT16,
13 PF_INT32,
14 PF_FLOAT,
15 PF_DOUBLE,
16 PF_BGR16,
17 PF_BGR32
18};