VTK  9.2.6
vtkImageNoiseSource.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkImageNoiseSource.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
32
33#ifndef vtkImageNoiseSource_h
34#define vtkImageNoiseSource_h
35
36#include "vtkImageAlgorithm.h"
37#include "vtkImagingSourcesModule.h" // For export macro
38
39class VTKIMAGINGSOURCES_EXPORT vtkImageNoiseSource : public vtkImageAlgorithm
40{
41public:
44 void PrintSelf(ostream& os, vtkIndent indent) override;
45
47
50 vtkSetMacro(Minimum, double);
51 vtkGetMacro(Minimum, double);
52 vtkSetMacro(Maximum, double);
53 vtkGetMacro(Maximum, double);
55
57
60 void SetWholeExtent(int xMinx, int xMax, int yMin, int yMax, int zMin, int zMax);
61 void SetWholeExtent(const int ext[6])
62 {
63 this->SetWholeExtent(ext[0], ext[1], ext[2], ext[3], ext[4], ext[5]);
64 }
65
66
67protected:
69 ~vtkImageNoiseSource() override = default;
70
71 double Minimum;
72 double Maximum;
74
77
78private:
80 void operator=(const vtkImageNoiseSource&) = delete;
81};
82
83#endif
general representation of visualization data
void SetWholeExtent(int xMinx, int xMax, int yMin, int yMax, int zMin, int zMax)
Set how large of an image to generate.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void ExecuteDataWithInformation(vtkDataObject *data, vtkInformation *outInfo) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
static vtkImageNoiseSource * New()
void SetWholeExtent(const int ext[6])
Set how large of an image to generate.
~vtkImageNoiseSource() override=default
a simple class to control print indentation
Definition vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.