36{
37 QVector<VtkFilterInfo> filterList;
38
39
40 filterList.push_back(
VtkFilterInfo(
"VtkCompositeImageToCylindersFilter",
41 "Image to bar chart",
42 "This filter converts the red pixel "
43 "values of the image into a bar graph.",
44 VTK_IMAGE_DATA, VTK_POLY_DATA));
45
46 filterList.push_back(
47 VtkFilterInfo(
"VtkCompositePointToGlyphFilter",
"Points to spheres",
48 "This filter generates spheres on point data that can be "
49 "scaled and colored by scalar data.",
50 VTK_POLY_DATA, VTK_POLY_DATA));
51
52 filterList.push_back(
53 VtkFilterInfo(
"VtkCompositeLineToTubeFilter",
"Lines to tubes",
54 "This filter will convert lines to tubes that can be "
55 "colored by scalar data.",
56 VTK_POLY_DATA, VTK_POLY_DATA));
57
59 "VtkCompositeColormapToImageFilter", "Apply lookup table to image",
60 "This filter will take an input image of any valid scalar type, and "
61 "map the first component of the image through a lookup table.",
62 VTK_IMAGE_DATA, VTK_IMAGE_DATA));
63
65 "VtkCompositeTextureOnSurfaceFilter", "Apply texture to surface",
66 "This filter assigns an image or raster file as a texture for the "
67 "given surface.",
68 VTK_POINT_SET, VTK_POLY_DATA));
69
71 "VtkCompositeThresholdFilter", "Extract cells by threshold",
72 "This filter extracts cells from any dataset type that satisfy a "
73 "threshold criterion. A cell satisfies the criterion if the (first) "
74 "scalar value of (every or any) point satisfies the criterion. For "
75 "example this can be used to show only certain material groups in a "
76 "mesh.",
77 VTK_POINT_SET, VTK_UNSTRUCTURED_GRID));
78
80 "VtkCompositeColorByHeightFilter", "Elevation-based colouring",
81 "This filter will generate scalar values based on the elevation of "
82 "each point in the dataset.",
83 VTK_POINT_SET, VTK_POLY_DATA));
84
86 "VtkCompositeContourFilter", "Generate contours based on scalar fields",
87 "Visualisation of contour-lines/-planes within dense scalar fields.",
88 VTK_UNSTRUCTURED_GRID, VTK_UNSTRUCTURED_GRID));
89
91 "VtkCompositeImageToPointCloudFilter", "Image to point cloud",
92 "This filter creates a point cloud with a density based on the first "
93 "component of pixel values.",
94 VTK_IMAGE_DATA, VTK_POLY_DATA));
95
97 "VtkCompositeImageToSurfacePointsFilter", "Image to surface points",
98 "This filter creates a point cloud representing a surface based on the "
99 "first component of pixel values.",
100 VTK_IMAGE_DATA, VTK_POLY_DATA));
101
102
104 "VtkImageDataToLinePolyDataFilter", "Image to vertical lines",
105 "This filter converts the red pixel values of the image to lines with "
106 "length of the value.",
107 VTK_IMAGE_DATA, VTK_POLY_DATA));
108
109
110 filterList.push_back(
VtkFilterInfo(
"vtkDataSetSurfaceFilter",
111 "Surface filter",
112 "Extracts outer (polygonal) surface.",
113 VTK_UNSTRUCTURED_GRID, VTK_POLY_DATA));
114
115
116
117
118
119
120
121
122 return filterList;
123}
Holds meta information about a filter.