Volume Cartographer 2.27.0
Color.hpp
Go to the documentation of this file.
1#pragma once
2
9#include <opencv2/core.hpp>
10
11namespace volcart
12{
18using Color = cv::Vec3b;
19
24namespace color
25{
26static const Color WHITE{255, 255, 255};
27static const Color BLACK{0, 0, 0};
28static const Color RED{0, 0, 255};
29static const Color GREEN{0, 255, 0};
30static const Color BLUE{255, 0, 0};
31static const Color CYAN{255, 255, 0};
32static const Color LIGHT_GRAY{200, 200, 200};
33static const Color DARK_GRAY{68, 68, 68};
34} // namespace color
35} // namespace volcart
Volume Cartographer library
cv::Vec3b Color
Color type.
Definition: Color.hpp:18