1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkExtractSelectedThresholds.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 vtkExtractSelectedThresholds - extract a cells or points from a
// dataset that have values within a set of thresholds.
// .SECTION Description
// vtkExtractSelectedThresholds extracts all cells and points with attribute
// values that lie within a vtkSelection's THRESHOLD contents. The selecion
// can specify to threshold a particular array within either the point or cell
// attribute data of the input. This is similar to vtkThreshold
// but allows mutliple thresholds ranges.
// This filter adds a scalar array called vtkOriginalCellIds that says what
// input cell produced each output cell. This is an example of a Pedigree ID
// which helps to trace back results.
// .SECTION See Also
// vtkSelection vtkExtractSelection vtkThreshold
#ifndef __vtkExtractSelectedThresholds_h
#define __vtkExtractSelectedThresholds_h
#include "vtkDataSetAlgorithm.h"
class vtkSelection;
class vtkDataArray;
class vtkDoubleArray;
class VTK_GRAPHICS_EXPORT vtkExtractSelectedThresholds : public vtkDataSetAlgorithm
{
public:
vtkTypeRevisionMacro(vtkExtractSelectedThresholds,vtkDataSetAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Constructor
static vtkExtractSelectedThresholds *New();
protected:
vtkExtractSelectedThresholds();
~vtkExtractSelectedThresholds();
//sets up output dataset
virtual int RequestDataObject(vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector);
// Usual data generation method
int RequestData(vtkInformation *,
vtkInformationVector **,
vtkInformationVector *);
int ExtractCells(vtkSelection *sel, vtkDataSet *input,
vtkDataSet *output,
int usePointScalars);
int ExtractPoints(vtkSelection *sel, vtkDataSet *input,
vtkDataSet *output);
int EvaluateValue(vtkDataArray *scalars, vtkIdType id, vtkDoubleArray *lims);
virtual int FillInputPortInformation(int port, vtkInformation* info);
private:
vtkExtractSelectedThresholds(const vtkExtractSelectedThresholds&); // Not implemented.
void operator=(const vtkExtractSelectedThresholds&); // Not implemented.
};
#endif
|