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.
 
 
 
 
 
 

87 lines
3.0 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkImageCast.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 vtkImageCast - Image Data type Casting Filter
// .SECTION Description
// vtkImageCast filter casts the input type to match the output type in
// the image processing pipeline. The filter does nothing if the input
// already has the correct type. To specify the "CastTo" type,
// use "SetOutputScalarType" method.
// .SECTION See Also
// vtkImageThreshold vtkImageShiftScale
#ifndef __vtkImageCast_h
#define __vtkImageCast_h
#include "vtkThreadedImageAlgorithm.h"
class VTK_IMAGING_EXPORT vtkImageCast : public vtkThreadedImageAlgorithm
{
public:
static vtkImageCast *New();
vtkTypeRevisionMacro(vtkImageCast,vtkThreadedImageAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Set the desired output scalar type to cast to.
vtkSetMacro(OutputScalarType,int);
vtkGetMacro(OutputScalarType,int);
void SetOutputScalarTypeToFloat(){this->SetOutputScalarType(VTK_FLOAT);};
void SetOutputScalarTypeToDouble(){this->SetOutputScalarType(VTK_DOUBLE);};
void SetOutputScalarTypeToInt(){this->SetOutputScalarType(VTK_INT);};
void SetOutputScalarTypeToUnsignedInt()
{this->SetOutputScalarType(VTK_UNSIGNED_INT);};
void SetOutputScalarTypeToLong(){this->SetOutputScalarType(VTK_LONG);};
void SetOutputScalarTypeToUnsignedLong()
{this->SetOutputScalarType(VTK_UNSIGNED_LONG);};
void SetOutputScalarTypeToShort(){this->SetOutputScalarType(VTK_SHORT);};
void SetOutputScalarTypeToUnsignedShort()
{this->SetOutputScalarType(VTK_UNSIGNED_SHORT);};
void SetOutputScalarTypeToUnsignedChar()
{this->SetOutputScalarType(VTK_UNSIGNED_CHAR);};
void SetOutputScalarTypeToChar()
{this->SetOutputScalarType(VTK_CHAR);};
// Description:
// When the ClampOverflow flag is on, the data is thresholded so that
// the output value does not exceed the max or min of the data type.
// By default ClampOverflow is off.
vtkSetMacro(ClampOverflow, int);
vtkGetMacro(ClampOverflow, int);
vtkBooleanMacro(ClampOverflow, int);
protected:
vtkImageCast();
~vtkImageCast() {};
int ClampOverflow;
int OutputScalarType;
virtual int RequestInformation (vtkInformation *, vtkInformationVector**, vtkInformationVector *);
void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
int ext[6], int id);
private:
vtkImageCast(const vtkImageCast&); // Not implemented.
void operator=(const vtkImageCast&); // Not implemented.
};
#endif