vtkImageTransparencyFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkImageTransparencyFilter.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
31 #ifndef vtkImageTransparencyFilter_h
32 #define vtkImageTransparencyFilter_h
33 
34 #include "vtkImageAlgorithm.h"
35 #include "vtkPVVTKExtensionsFiltersRenderingModule.h" // needed for export macro
36 
38  : public vtkImageAlgorithm
39 {
40 public:
43  void PrintSelf(ostream& os, vtkIndent indent) override;
44 
45  virtual int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
46  vtkInformationVector* outputVector) override;
47 
48 protected:
49  // Override to set two inputs
50  int FillInputPortInformation(int port, vtkInformation* info) override;
51 
52 protected:
55 
56 private:
58  void operator=(const vtkImageTransparencyFilter&) = delete;
59 };
60 
61 #endif
Filter that creates a transparent image from two input images.
#define VTKPVVTKEXTENSIONSFILTERSRENDERING_EXPORT
virtual int FillInputPortInformation(int port, vtkInformation *info)
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE
static vtkAlgorithm * New()
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
void operator=(const vtkObjectBase &)