OGS
VtkCompositeColormapToImageFilter.h
Go to the documentation of this file.
1
15#pragma once
16
17#include "VtkCompositeFilter.h"
18
21{
22public:
23 explicit VtkCompositeColormapToImageFilter(vtkAlgorithm* inputAlgorithm);
25
26 void init() override;
27
28 void SetUserProperty(QString name, QVariant value) override;
29
30 void SetUserVectorProperty(QString name, QList<QVariant> values) override;
31
32private:
33};
Definition of the VtkCompositeFilter class.
Applies a user adjustable color map to an image.
void SetUserProperty(QString name, QVariant value) override
Sets a user property. This should be implemented by subclasses.
void SetUserVectorProperty(QString name, QList< QVariant > values) override
Sets a vector user property. This should be implemented by subclasses.
VtkCompositeColormapToImageFilter(vtkAlgorithm *inputAlgorithm)
Is used to combine several filter in one VtkVisPipelineItem. You can use vtk filter and custom filter...