Cloned library of VTK-5.0.0 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

74 lines
2.5 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkImageGradientMagnitude.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkImageGradientMagnitude - Computes magnitude of the gradient.
// .SECTION Description
// vtkImageGradientMagnitude computes the gradient magnitude of an image.
// Setting the dimensionality determines whether the gradient is computed on
// 2D images, or 3D volumes. The default is two dimensional XY images.
// .SECTION See Also
// vtkImageGradient vtkImageMagnitude
#ifndef __vtkImageGradientMagnitude_h
#define __vtkImageGradientMagnitude_h
#include "vtkThreadedImageAlgorithm.h"
class VTK_IMAGING_EXPORT vtkImageGradientMagnitude : public vtkThreadedImageAlgorithm
{
public:
static vtkImageGradientMagnitude *New();
vtkTypeRevisionMacro(vtkImageGradientMagnitude,vtkThreadedImageAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// If "HandleBoundariesOn" then boundary pixels are duplicated
// So central differences can get values.
vtkSetMacro(HandleBoundaries, int);
vtkGetMacro(HandleBoundaries, int);
vtkBooleanMacro(HandleBoundaries, int);
// Description:
// Determines how the input is interpreted (set of 2d slices ...)
vtkSetClampMacro(Dimensionality,int,2,3);
vtkGetMacro(Dimensionality,int);
protected:
vtkImageGradientMagnitude();
~vtkImageGradientMagnitude() {};
int HandleBoundaries;
int Dimensionality;
virtual int RequestInformation (vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
virtual int RequestUpdateExtent(vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
int extent[6], int id);
private:
vtkImageGradientMagnitude(const vtkImageGradientMagnitude&); // Not implemented.
void operator=(const vtkImageGradientMagnitude&); // Not implemented.
};
#endif