VTK  9.2.6
vtkSubPixelPositionEdgels.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkSubPixelPositionEdgels.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=========================================================================*/
36
37#ifndef vtkSubPixelPositionEdgels_h
38#define vtkSubPixelPositionEdgels_h
39
40#include "vtkFiltersGeneralModule.h" // For export macro
42
44class vtkDataArray;
45
46class VTKFILTERSGENERAL_EXPORT vtkSubPixelPositionEdgels : public vtkPolyDataAlgorithm
47{
48public:
51 void PrintSelf(ostream& os, vtkIndent indent) override;
52
54
60
62
66 vtkSetMacro(TargetFlag, vtkTypeBool);
67 vtkGetMacro(TargetFlag, vtkTypeBool);
68 vtkBooleanMacro(TargetFlag, vtkTypeBool);
69 vtkSetMacro(TargetValue, double);
70 vtkGetMacro(TargetValue, double);
72
73protected:
76
77 // Usual data generation method
79 int FillInputPortInformation(int port, vtkInformation* info) override;
80
81 void Move(int xdim, int ydim, int zdim, int x, int y, float* img, vtkDataArray* inVecs,
82 double* result, int z, double* aspect, double* resultNormal);
83 void Move(int xdim, int ydim, int zdim, int x, int y, double* img, vtkDataArray* inVecs,
84 double* result, int z, double* aspect, double* resultNormal);
85 // extension for target instead of maximum
88
89private:
91 void operator=(const vtkSubPixelPositionEdgels&) = delete;
92};
93
94#endif
a simple class to control print indentation
Definition vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
A subclass of ImageData.
vtkStructuredPoints * GetGradMaps()
Set/Get the gradient data for doing the position adjustments.
void Move(int xdim, int ydim, int zdim, int x, int y, double *img, vtkDataArray *inVecs, double *result, int z, double *aspect, double *resultNormal)
static vtkSubPixelPositionEdgels * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
~vtkSubPixelPositionEdgels() override
void Move(int xdim, int ydim, int zdim, int x, int y, float *img, vtkDataArray *inVecs, double *result, int z, double *aspect, double *resultNormal)
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void SetGradMapsData(vtkStructuredPoints *gm)
Set/Get the gradient data for doing the position adjustments.
int vtkTypeBool
Definition vtkABI.h:69
#define vtkDataArray