![]() |
ACloudViewer
3.9.4
A Modern Library for 3D Data Processing
|
Colors namespace. More...
Namespaces | |
| LookUpTable | |
Classes | |
| struct | is_same_type |
| struct | is_same_type< T1, T1 > |
| class | RgbTpl |
| RGB color structure. More... | |
| class | RgbaTpl |
| RGBA color structure. More... | |
| class | Generator |
| Colors generator. More... | |
| class | Convert |
| Color space conversion. More... | |
Typedefs | |
| using | Rgbf = RgbTpl< float > |
| 3 components, float type More... | |
| using | Rgbub = RgbTpl< unsigned char > |
| 3 components, unsigned byte type More... | |
| using | Rgb = RgbTpl< ColorCompType > |
| 3 components, default type More... | |
| using | Rgbaf = RgbaTpl< float > |
| 4 components, float type More... | |
| using | Rgbaub = RgbaTpl< unsigned char > |
| 4 components, unsigned byte type More... | |
| using | Rgba = RgbaTpl< ColorCompType > |
| 4 components, default type More... | |
Functions | |
| constexpr Rgb | white (MAX, MAX, MAX) |
| constexpr Rgb | lightGrey (static_cast< ColorCompType >(MAX *0.8), static_cast< ColorCompType >(MAX *0.8), static_cast< ColorCompType >(MAX *0.8)) |
| constexpr Rgb | darkGrey (MAX/2, MAX/2, MAX/2) |
| constexpr Rgb | red (MAX, 0, 0) |
| constexpr Rgb | green (0, MAX, 0) |
| constexpr Rgb | blue (0, 0, MAX) |
| constexpr Rgb | darkBlue (0, 0, MAX/2) |
| constexpr Rgb | magenta (MAX, 0, MAX) |
| constexpr Rgb | cyan (0, MAX, MAX) |
| constexpr Rgb | orange (MAX, MAX/2, 0) |
| constexpr Rgb | black (0, 0, 0) |
| constexpr Rgb | yellow (MAX, MAX, 0) |
| constexpr Rgba | owhite (MAX, MAX, MAX, OPACITY) |
| constexpr Rgba | olightGrey (static_cast< ColorCompType >(MAX *0.8), static_cast< ColorCompType >(MAX *0.8), static_cast< ColorCompType >(MAX *0.8), OPACITY) |
| constexpr Rgba | odarkGrey (MAX/2, MAX/2, MAX/2, OPACITY) |
| constexpr Rgba | ored (MAX, 0, 0, OPACITY) |
| constexpr Rgba | ogreen (0, MAX, 0, OPACITY) |
| constexpr Rgba | oblue (0, 0, MAX, OPACITY) |
| constexpr Rgba | odarkBlue (0, 0, MAX/2, OPACITY) |
| constexpr Rgba | omagenta (MAX, 0, MAX, OPACITY) |
| constexpr Rgba | ocyan (0, MAX, MAX, OPACITY) |
| constexpr Rgba | oorange (MAX, MAX/2, 0, OPACITY) |
| constexpr Rgba | oblack (0, 0, 0, OPACITY) |
| constexpr Rgba | oyellow (MAX, MAX, 0, OPACITY) |
| constexpr Rgbaf | bright (1.00f, 1.00f, 1.00f, 1.00f) |
| constexpr Rgbaf | lighter (0.83f, 0.83f, 0.83f, 1.00f) |
| constexpr Rgbaf | light (0.66f, 0.66f, 0.66f, 1.00f) |
| constexpr Rgbaf | middle (0.50f, 0.50f, 0.50f, 1.00f) |
| constexpr Rgbaf | dark (0.34f, 0.34f, 0.34f, 1.00f) |
| constexpr Rgbaf | darker (0.17f, 0.17f, 0.17f, 1.00f) |
| constexpr Rgbaf | darkest (0.08f, 0.08f, 0.08f, 1.00f) |
| constexpr Rgbaf | night (0.00f, 0.00f, 0.00f, 1.00F) |
| constexpr Rgbaf | defaultMeshFrontDiff (0.00f, 0.90f, 0.27f, 1.00f) |
| constexpr Rgbaf | defaultMeshBackDiff (0.27f, 0.90f, 0.90f, 1.00f) |
| constexpr Rgbf | defaultViewBkgColor (10/255.0f, 102/255.0f, 151/255.0f) |
| constexpr Rgbub | defaultBkgColor (135, 206, 235) |
| constexpr Rgbub | defaultColor (MAX, MAX, MAX) |
| constexpr Rgbub | defaultLabelBkgColor (MAX, MAX, MAX) |
| constexpr Rgbub | defaultLabelMarkerColor (MAX, 0, MAX) |
| Rgb | FromRgbfToRgb (const Rgbf &color) |
| Conversion from Rgbf. More... | |
| Rgb | FromRgbafToRgb (const Rgbaf &color) |
| Conversion from Rgbaf. More... | |
| Rgba | FromRgbToRgba (const Rgb &color) |
| Conversion from Rgb to Rgba. More... | |
| Rgb | FromRgbaToRgb (const Rgba &color) |
| Conversion from Rgba to Rgb. More... | |
| Rgba | FromRgbafToRgba (const Rgbaf &color) |
| Conversion from Rgbaf to Rgba. More... | |
| Rgbf | FromRgb (const Rgb &color) |
| Rgbf | FromRgb (const Rgba &color) |
| Rgbaf | FromRgba (const Rgba &color) |
| Rgbaf | FromRgbub (const Rgbub &color) |
| Rgb | FromQRgb (QRgb qColor) |
| Conversion from QRgb. More... | |
| Rgba | FromQRgba (QRgb qColor) |
| Conversion from QRgb'a'. More... | |
| Rgb | FromQColor (QColor qColor) |
| Conversion from QColor. More... | |
| Rgba | FromQColora (QColor qColor) |
| Conversion from QColor'a'. More... | |
| Rgbf | FromQColorf (QColor qColor) |
| Conversion from QColor (floating point) More... | |
| Rgbaf | FromQColoraf (QColor qColor) |
| Conversion from QColor'a' (floating point) More... | |
Variables | |
| constexpr ColorCompType | MAX = 255 |
| Max value of a single color component (default type) More... | |
| constexpr ColorCompType | OPACITY = 255 |
| static const unsigned char | COLOR_LUT [] |
| static const size_t | COLOR_LUT_SIZE |
| Number of colors in Glasbey lookup table. More... | |
Colors namespace.
| using ecvColor::Rgb = typedef RgbTpl<ColorCompType> |
3 components, default type
Definition at line 141 of file ecvColorTypes.h.
| using ecvColor::Rgba = typedef RgbaTpl<ColorCompType> |
4 components, default type
Definition at line 196 of file ecvColorTypes.h.
| using ecvColor::Rgbaf = typedef RgbaTpl<float> |
4 components, float type
Definition at line 192 of file ecvColorTypes.h.
| using ecvColor::Rgbaub = typedef RgbaTpl<unsigned char> |
4 components, unsigned byte type
Definition at line 194 of file ecvColorTypes.h.
| using ecvColor::Rgbf = typedef RgbTpl<float> |
3 components, float type
Definition at line 137 of file ecvColorTypes.h.
| using ecvColor::Rgbub = typedef RgbTpl<unsigned char> |
3 components, unsigned byte type
Definition at line 139 of file ecvColorTypes.h.
|
constexpr |
Referenced by ccCloudLayersHelper::apply(), ccColorLevelsDlg::ccColorLevelsDlg(), Widgets::ColorComboBox::color(), Utils::ColorSeries::color(), ccPointCloud::convertCurrentScalarFieldToColors(), ccRasterGrid::convertToCloud(), ccColorScalesManager::Create(), cc2Point5DimEditor::create2DView(), ccAsprsModel::createNewItem(), ColorScheme::Default(), Widgets::ColorComboBox::defaultColor(), DistanceMapGenerationDlg::DistanceMapGenerationDlg(), Widgets::QtColorPicker::GetColor(), LasScalarFieldLoader::handleRGBValue(), ccContourExtractorDlg::init(), CodeEditor::lineNumberAreaPaintEvent(), LASFWFFilter::loadFile(), LASFilter::loadFile(), QCPColorGradient::loadPreset(), ccCloudLayersHelper::moveItem(), Widgets::ColorPickerButton::paintEvent(), Widgets::ColorPickerItem::paintEvent(), StereogramWidget::paintEvent(), ColorScaleElementSlider::paintEvent(), ColorBarWidget::paintEvent(), ccGBLSensor::projectColors(), QCPErrorBars::QCPErrorBars(), QCPItemBracket::QCPItemBracket(), QCPItemCurve::QCPItemCurve(), QCPItemEllipse::QCPItemEllipse(), QCPItemLine::QCPItemLine(), QCPItemRect::QCPItemRect(), QCPItemStraightLine::QCPItemStraightLine(), QCPItemText::QCPItemText(), QCPItemTracer::QCPItemTracer(), QCPLegend::QCPLegend(), QCPStatisticalBox::QCPStatisticalBox(), Widgets::QtColorPicker::QtColorPicker(), ccPointCloud::setRGBColorByHeight(), ccPointCloud::setRGBColorWithCurrentScalarField(), Widgets::QtColorPicker::setStandardColors(), ccRenderingTools::ShowDepthBuffer(), colmap::ShowImagesSideBySide(), ccColorScale::update(), ccColorFromScalarDlg::updateColormaps(), ccColorLevelsDlg::updateHistogram(), and QCPColorMap::updateMapImage().
Referenced by ccColorScaleEditorWidget::ccColorScaleEditorWidget(), ccColorScalesManager::Create(), ccColorScaleEditorDialog::createNewScale(), ColorScheme::Default(), ccOctree::DrawCellAsABox(), ccClipBox::drawMeOnly(), ccCompass::estimateStrain(), Widgets::QtColorPicker::GetColor(), LasScalarFieldLoader::handleRGBValue(), HSVDialog::HSVDialog(), LASFilter::loadFile(), HSVDialog::onItemPicked(), QCPBars::QCPBars(), QCPCurve::QCPCurve(), QCPGraph::QCPGraph(), QCPItemBracket::QCPItemBracket(), QCPItemCurve::QCPItemCurve(), QCPItemEllipse::QCPItemEllipse(), QCPItemLine::QCPItemLine(), QCPItemPixmap::QCPItemPixmap(), QCPItemRect::QCPItemRect(), QCPItemStraightLine::QCPItemStraightLine(), QCPItemText::QCPItemText(), QCPItemTracer::QCPItemTracer(), QCPLegend::QCPLegend(), ecvConsole::refresh(), ccWaveWidget::refresh(), cloudViewer::visualization::rendering::ColorGradingParams::SetChannelMixer(), Widgets::QtColorPicker::setStandardColors(), qCanupo2DViewDialog::trainClassifier(), qCanupoTools::TrainClassifier(), ccColorFromScalarDlg::updateColormaps(), ccColorLevelsDlg::updateHistogram(), ccPinchNode::updateMetadata(), and HSVDialog::updateValues().
|
constexpr |
|
constexpr |
Referenced by ecvDisplayTools::RedrawDisplay().
|
constexpr |
|
constexpr |
Referenced by ecvGui::ParamStruct::fromPersistentSettings().
|
constexpr |
Referenced by ecvGui::ParamStruct::fromPersistentSettings(), and ecvGui::ParamStruct::reset().
|
constexpr |
Referenced by ecvGui::ParamStruct::fromPersistentSettings(), and ecvGui::ParamStruct::reset().
|
constexpr |
Referenced by ecvGui::ParamStruct::fromPersistentSettings(), and ecvGui::ParamStruct::reset().
|
constexpr |
|
inline |
Conversion from QColor.
Definition at line 426 of file ecvColorTypes.h.
References Utils::qColor().
Referenced by ccDisplayOptionsDlg::changeBackgroundColor(), ccDisplayOptionsDlg::changeBBColor(), ccDisplayOptionsDlg::changeLabelBackgroundColor(), ccDisplayOptionsDlg::changeLabelMarkerColor(), ccDisplayOptionsDlg::changePointsColor(), ccDisplayOptionsDlg::changeTextColor(), ccCloudLayersHelper::mouseMove(), ccCloudLayersHelper::moveItem(), and ccEntityAction::setColor().
|
inline |
Conversion from QColor'a'.
Definition at line 433 of file ecvColorTypes.h.
References Utils::qColor().
Referenced by ccCloudLayersHelper::apply(), and ccColorFromScalarDlg::onApply().
|
inline |
Conversion from QColor'a' (floating point)
Definition at line 447 of file ecvColorTypes.h.
References Utils::qColor().
Referenced by ccDisplayOptionsDlg::changeLightAmbientColor(), ccDisplayOptionsDlg::changeLightDiffuseColor(), ccDisplayOptionsDlg::changeLightSpecularColor(), ccDisplayOptionsDlg::changeMeshBackDiffuseColor(), ccDisplayOptionsDlg::changeMeshFrontDiffuseColor(), and ccDisplayOptionsDlg::changeMeshSpecularColor().
|
inline |
Conversion from QColor (floating point)
Definition at line 441 of file ecvColorTypes.h.
References Utils::qColor().
|
inline |
Conversion from QRgb.
Definition at line 411 of file ecvColorTypes.h.
References Utils::qColor().
Referenced by ccMesh::getVertexColorFromMaterial(), and CSVMatrixFilter::loadFile().
|
inline |
Conversion from QRgb'a'.
Definition at line 418 of file ecvColorTypes.h.
References Utils::qColor().
Definition at line 386 of file ecvColorTypes.h.
Referenced by PclUtils::PCLVis::addCaption(), cc2DViewportLabel::drawMeOnly(), and PCLDisplayTools::drawWidgets().
Definition at line 392 of file ecvColorTypes.h.
Definition at line 398 of file ecvColorTypes.h.
Referenced by ecvDisplayTools::DrawClickableItems(), and cc2DLabel::drawMeOnly3D().
Conversion from Rgbaf.
Definition at line 365 of file ecvColorTypes.h.
Referenced by PCLDisplayTools::drawWidgets(), and ccMesh::getVertexColorFromMaterial().
Conversion from Rgbaf to Rgba.
Definition at line 379 of file ecvColorTypes.h.
Conversion from Rgba to Rgb.
Definition at line 374 of file ecvColorTypes.h.
References color.
Referenced by AsciiFilter::loadCloudFromFormatedAsciiStream(), and ccPointCloud::setPointColor().
Conversion from Rgb to Rgba.
Definition at line 371 of file ecvColorTypes.h.
Definition at line 404 of file ecvColorTypes.h.
Referenced by cc2DLabel::drawMeOnly2D().
Referenced by ccGraphicalSegmentationTool::ccGraphicalSegmentationTool(), ccTracePolylineTool::ccTracePolylineTool(), qSRA::computeCloud2ProfileRadialDist(), vtk2cc::ConvertToPolyline(), ccFacet::Create(), ccColorScalesManager::Create(), PclTools::CreateCoordinateFromLineSet(), ccCoordinateSystem::createZXplane(), ccOctree::DrawCellAsABox(), ccClipBox::drawMeOnly(), ccGBLSensor::drawMeOnly(), ccPointPair::drawMeOnly(), PCLDisplayTools::drawWidgets(), ccTracePolylineTool::exportLine(), Widgets::QtColorPicker::GetColor(), cvIsoSurfaceFilter::getOutput(), cvSliceFilter::getOutput(), cvContourTool::getOutput(), ccPlanarEntityInterface::glDrawNormal(), LasScalarFieldLoader::handleRGBValue(), HSVDialog::HSVDialog(), ProfileLoader::Load(), LASFilter::loadFile(), QVTKWidgetCustom::mouseMoveEvent(), HSVDialog::onItemPicked(), ccTracePolylineTool::onItemPicked(), cloudViewer::visualization::rendering::ColorGradingParams::SetChannelMixer(), Widgets::QtColorPicker::setStandardColors(), cloudViewer::PointViewerWidget::Show(), colmap::PointViewerWidget::Show(), ccColorFromScalarDlg::updateColormaps(), ccCameraSensor::updateData(), ccColorLevelsDlg::updateHistogram(), HSVDialog::updateValues(), and DrawMeOnlyVisitor::visit().
|
constexpr |
Referenced by cloudViewer::visualization::rendering::FilamentScene::AddDirectionalLight(), cloudViewer::visualization::rendering::FilamentScene::AddPointLight(), cloudViewer::visualization::rendering::FilamentScene::AddSpotLight(), cloudViewer::visualization::rendering::FilamentScene::EnableIndirectLight(), cloudViewer::visualization::rendering::FilamentScene::EnableLightShadow(), cloudViewer::visualization::rendering::FilamentScene::GetIndirectLightIntensity(), cloudViewer::visualization::rendering::FilamentScene::GetIndirectLightRotation(), cloudViewer::visualization::rendering::FilamentScene::RemoveLight(), VTKExtensions::vtkCustomInteractorStyle::ResetLights(), vtkPVInteractorStyle::ResetLights(), cloudViewer::visualization::rendering::FilamentScene::SetIndirectLight(), cloudViewer::visualization::rendering::FilamentScene::SetIndirectLightIntensity(), cloudViewer::visualization::rendering::FilamentScene::SetIndirectLightRotation(), PclUtils::PCLVis::setLightIntensity(), cloudViewer::visualization::rendering::FilamentScene::UpdateLightColor(), cloudViewer::visualization::rendering::FilamentScene::UpdateLightDirection(), cloudViewer::visualization::rendering::FilamentScene::UpdateLightFalloff(), cloudViewer::visualization::rendering::FilamentScene::UpdateLightIntensity(), cloudViewer::visualization::rendering::FilamentScene::UpdateLightPosition(), and ccGenericMesh::updateTextures().
|
constexpr |
Referenced by AnglesCustomPlot::createQCPBars().
|
constexpr |
Referenced by DistanceMapGenerationTool::ConvertMapToImage(), ccGenericMesh::drawMeOnly(), ccMesh::drawMeOnly(), ccRasterizeTool::generateImage(), ccScalarField::getColor(), ccHistogramWindow::refresh(), ccHistogramWindow::refreshBars(), qCanupoTools::TrainClassifier(), and PclTools::UpdateScalarBar().
Referenced by ccColorScalesManager::Create(), ColorScheme::Default(), ccOctree::DrawCellAsABox(), Widgets::QtColorPicker::GetColor(), StereogramWidget::paintEvent(), cloudViewer::FeatureImageViewerWidget::ReadAndShowWithKeypoints(), colmap::FeatureImageViewerWidget::ReadAndShowWithKeypoints(), qCanupo2DViewDialog::resetBoundary(), and Widgets::QtColorPicker::setStandardColors().
|
constexpr |
|
constexpr |
Referenced by pcl2cc::FromPCLMaterial(), ecvDisplayTools::GetContext(), and ecvGui::ParamStruct::reset().
Referenced by ecvDisplayTools::DrawClickableItems().
Referenced by ecvDisplayTools::DrawClickableItems().
|
constexpr |
Referenced by ccPinchNode::updateMetadata().
Referenced by ecvDisplayTools::DrawClickableItems(), and cc2DLabel::drawMeOnly3D().
Referenced by ccPointPairRegistrationDlg::addAlignedPoint(), PclUtils::PCLVis::addCaption(), ccAlignDlg::ccAlignDlg(), ccColorScaleEditorWidget::ccColorScaleEditorWidget(), ccOrderChoiceDlg::ccOrderChoiceDlg(), ccRegistrationDlg::ccRegistrationDlg(), ExtractSIFT::compute(), vtk2cc::ConvertToMultiPolylines(), ccColorScalesManager::Create(), PclTools::CreateCoordinateFromLineSet(), ccColorScaleEditorDialog::createNewScale(), ccCoordinateSystem::createXYplane(), ColorScheme::Default(), ColorScheme::Dracula(), cc2DViewportLabel::drawMeOnly(), ccClipBox::drawMeOnly(), ccGBLSensor::drawMeOnly(), cc2DLabel::drawMeOnly2D(), cc2DLabel::drawMeOnly3D(), ccContourExtractor::ExtractConcaveHull2D(), FastGlobalRegistrationDialog::FastGlobalRegistrationDialog(), Widgets::QtColorPicker::GetColor(), ecvTools::GetPolylines(), LasScalarFieldLoader::handleRGBValue(), HSVDialog::HSVDialog(), LASFilter::loadFile(), HSVDialog::onItemPicked(), StereogramWidget::paintEvent(), ColorScaleElementSlider::paintEvent(), cloudViewer::FeatureImageViewerWidget::ReadAndShowWithKeypoints(), colmap::FeatureImageViewerWidget::ReadAndShowWithKeypoints(), ecvConsole::refresh(), ccHistogramWindow::refresh(), ccWaveWidget::refresh(), cloudViewer::visualization::rendering::ColorGradingParams::SetChannelMixer(), ccAlignDlg::setColorsAndLabels(), ccOrderChoiceDlg::setColorsAndLabels(), Widgets::QtColorPicker::setStandardColors(), cloudViewer::PointViewerWidget::Show(), colmap::PointViewerWidget::Show(), qCanupo2DViewDialog::trainClassifier(), qCanupoTools::TrainClassifier(), ccColorFromScalarDlg::updateColormaps(), ccCameraSensor::updateData(), ccRegistrationDlg::updateGUI(), FastGlobalRegistrationDialog::updateGUI(), ccColorLevelsDlg::updateHistogram(), ccNote::updateMetadata(), HSVDialog::updateValues(), and WolmanCustomPlot::WolmanCustomPlot().
Referenced by PclUtils::PCLVis::addCaption(), ccPointCloud::append(), ccDrawableObject::ccDrawableObject(), ccPolyline::ccPolyline(), ComputeAverageColor(), ccColorScalesManager::Create(), cc2Point5DimEditor::create2DView(), ColorScheme::Default(), DistanceMapGenerationDlg::DistanceMapGenerationDlg(), cc2DLabel::drawMeOnly2D(), Widgets::QtColorPicker::GetColor(), cloudViewer::visualization::GuiSettingsModel::GetCurrentMaterialColor(), ccContourExtractorDlg::init(), QCPColorGradient::loadPreset(), ecvAnnotationsTool::onLabelChanged(), ccColorScaleEditorWidget::onPointClicked(), ccGenericPrimitive::operator+=(), StereogramWidget::paintEvent(), QCPHiddenArea::QCPHiddenArea(), QCPLegend::QCPLegend(), ResolveNormalsWithMST(), QCustomPlot::savePdf(), ccEntityAction::setColor(), Widgets::QtColorPicker::setStandardColors(), ccColorFromScalarDlg::updateColormaps(), and ecvAnnotationsTool::updateLabelsCombox().
Referenced by ccPointPairRegistrationDlg::addReferencePoint(), ccAlignDlg::ccAlignDlg(), ccOrderChoiceDlg::ccOrderChoiceDlg(), ccRegistrationDlg::ccRegistrationDlg(), ccColorScalesManager::Create(), PclTools::CreateCoordinateFromLineSet(), ccCoordinateSystem::createYZplane(), cvAnnotation::cvAnnotation(), ColorScheme::Default(), ccGraphicalSegmentationTool::doExportSegmentationPolyline(), ccClipBox::drawMeOnly(), ccGBLSensor::drawMeOnly(), cc2DLabel::drawMeOnly3D(), ecvDisplayTools::DrawPivot(), FastGlobalRegistrationDialog::FastGlobalRegistrationDialog(), ecvGui::ParamStruct::fromPersistentSettings(), Widgets::QtColorPicker::GetColor(), ecvDisplayTools::RedrawDisplay(), ecvGui::ParamStruct::reset(), ccAlignDlg::setColorsAndLabels(), ccOrderChoiceDlg::setColorsAndLabels(), Widgets::QtColorPicker::setStandardColors(), ccCameraSensor::updateData(), ccRegistrationDlg::updateGUI(), and FastGlobalRegistrationDialog::updateGUI().
|
static |
Definition at line 13 of file ecvColorTypes.cpp.
Referenced by ecvColor::LookUpTable::at().
|
static |
Number of colors in Glasbey lookup table.
Definition at line 74 of file ecvColorTypes.cpp.
Referenced by ecvColor::LookUpTable::at().
|
constexpr |
Max value of a single color component (default type)
Definition at line 34 of file ecvColorTypes.h.
Referenced by ccCloudLayersHelper::apply(), ccPointCloud::colorize(), ComputeAverageColor(), ccPointCloud::convertCurrentScalarFieldToColors(), ccNormalVectors::ConvertNormalToRGB(), GrainsAsEllipsoids::exportResultsAsCloud(), ecvColor::RgbTpl< Type >::FromEigen(), FromFbxMesh(), FromRgb(), FromRgba(), FromRgbafToRgb(), FromRgbafToRgba(), FromRgbfToRgb(), FromRgbToRgba(), FromRgbub(), ccMesh::getColorFromMaterial(), GetKeyCluster(), grey_cb(), ecvColor::Convert::hsl2rgb(), ecvColor::Convert::hsv2rgb(), AsciiFilter::loadCloudFromFormatedAsciiStream(), VTKFilter::loadFile(), ccCloudLayersHelper::mouseMove(), ccColorFromScalarDlg::onApply(), ccColorLevelsDlg::onApply(), ecvColor::Generator::Random(), rgb_cb(), AsciiFilter::saveToFile(), VTKFilter::saveToFile(), MAFilter::saveToFile(), GrainsAsEllipsoids::setGrainColorsTable(), ccPointCloud::setRGBColorByBanding(), ccPointCloud::setRGBColorWithCurrentScalarField(), ToFbxMesh(), ccColorScale::update(), and GrainsAsEllipsoids::updateMeshAndLineSet().
|
constexpr |
Definition at line 35 of file ecvColorTypes.h.
Referenced by PclUtils::renders::MaterialConverter::FromCCMaterial().