VTK
vtkImageMaskBits.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageMaskBits.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 =========================================================================*/
24 #ifndef vtkImageMaskBits_h
25 #define vtkImageMaskBits_h
26 
27 #include "vtkImagingMathModule.h" // For export macro
28 #include "vtkImageLogic.h" //For VTK_AND, VTK_OR ...
30 
31 class VTKIMAGINGMATH_EXPORT vtkImageMaskBits : public vtkThreadedImageAlgorithm
32 {
33 public:
34  static vtkImageMaskBits *New();
36  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
37 
39 
42  vtkSetVector4Macro(Masks, unsigned int);
43  void SetMask(unsigned int mask)
44  {this->SetMasks(mask, mask, mask, mask);}
45  void SetMasks(unsigned int mask1, unsigned int mask2)
46  {this->SetMasks(mask1, mask2, 0xffffffff, 0xffffffff);}
47  void SetMasks(unsigned int mask1, unsigned int mask2, unsigned int mask3)
48  {this->SetMasks(mask1, mask2, mask3, 0xffffffff);}
49  vtkGetVector4Macro(Masks, unsigned int);
51 
53 
56  vtkSetMacro(Operation,int);
57  vtkGetMacro(Operation,int);
58  void SetOperationToAnd() {this->SetOperation(VTK_AND);};
59  void SetOperationToOr() {this->SetOperation(VTK_OR);};
60  void SetOperationToXor() {this->SetOperation(VTK_XOR);};
61  void SetOperationToNand() {this->SetOperation(VTK_NAND);};
62  void SetOperationToNor() {this->SetOperation(VTK_NOR);};
64 
65 protected:
67  ~vtkImageMaskBits() VTK_OVERRIDE {}
68 
69  void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
70  int ext[6], int id) VTK_OVERRIDE;
71 
72  unsigned int Masks[4];
73  int Operation;
74 private:
75  vtkImageMaskBits(const vtkImageMaskBits&) VTK_DELETE_FUNCTION;
76  void operator=(const vtkImageMaskBits&) VTK_DELETE_FUNCTION;
77 };
78 
79 #endif
void SetMasks(unsigned int mask1, unsigned int mask2)
Set/Get the bit-masks.
void SetOperationToOr()
Set/Get the boolean operator.
applies a bit-mask pattern to each component.
virtual void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, int extent[6], int threadId)
void SetMask(unsigned int mask)
Set/Get the bit-masks.
void SetOperationToXor()
Set/Get the boolean operator.
#define VTK_NOR
Definition: vtkImageLogic.h:33
Generic filter that has one input.
void SetMasks(unsigned int mask1, unsigned int mask2, unsigned int mask3)
Set/Get the bit-masks.
#define VTK_OR
Definition: vtkImageLogic.h:30
a simple class to control print indentation
Definition: vtkIndent.h:33
void SetOperationToNand()
Set/Get the boolean operator.
topologically and geometrically regular array of data
Definition: vtkImageData.h:39
#define VTK_NAND
Definition: vtkImageLogic.h:32
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
#define VTK_XOR
Definition: vtkImageLogic.h:31
~vtkImageMaskBits() override
void SetOperationToAnd()
Set/Get the boolean operator.
static vtkAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetOperationToNor()
Set/Get the boolean operator.
#define VTK_AND
Definition: vtkImageLogic.h:29