/usr/include/vtk-6.1/vtkExtractHistogram2D.h is in libvtk6-dev 6.1.0+dfsg2-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkExtractHistogram2D.h
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.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2011 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
// .NAME vtkExtractHistogram2D - compute a 2D histogram between two columns
// of an input vtkTable.
//
// .SECTION Description
// This class computes a 2D histogram between two columns of an input
// vtkTable. Just as with a 1D histogram, a 2D histogram breaks
// up the input domain into bins, and each pair of values (row in
// the table) fits into a single bin and increments a row counter
// for that bin.
//
// To use this class, set the input with a table and call AddColumnPair(nameX,nameY),
// where nameX and nameY are the names of the two columns to be used.
//
// In addition to the number of bins (in X and Y), the domain of
// the histogram can be customized by toggling the UseCustomHistogramExtents
// flag and setting the CustomHistogramExtents variable to the
// desired value.
//
// .SECTION See Also
// vtkPExtractHistogram2D
//
// .SECTION Thanks
// Developed by David Feng and Philippe Pebay at Sandia National Laboratories
//------------------------------------------------------------------------------
#ifndef __vtkExtractHistogram2D_h
#define __vtkExtractHistogram2D_h
#include "vtkFiltersImagingModule.h" // For export macro
#include "vtkStatisticsAlgorithm.h"
class vtkImageData;
class vtkIdTypeArray;
class vtkMultiBlockDataSet;
class VTKFILTERSIMAGING_EXPORT vtkExtractHistogram2D : public vtkStatisticsAlgorithm
{
public:
static vtkExtractHistogram2D* New();
vtkTypeMacro(vtkExtractHistogram2D, vtkStatisticsAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
//BTX
enum OutputIndices
{
HISTOGRAM_IMAGE=3
};
//ETX
// Description:
// Set/get the number of bins to be used per dimension (x,y)
vtkSetVector2Macro(NumberOfBins,int);
vtkGetVector2Macro(NumberOfBins,int);
// Description:
// Set/get the components of the arrays in the two input columns
// to be used during histogram computation. Defaults to component 0.
vtkSetVector2Macro(ComponentsToProcess,int);
vtkGetVector2Macro(ComponentsToProcess,int);
// Description:
// Set/get a custom domain for histogram computation. UseCustomHistogramExtents
// must be called for these to actually be used.
vtkSetVector4Macro(CustomHistogramExtents,double);
vtkGetVector4Macro(CustomHistogramExtents,double);
// Description:
// Use the extents in CustomHistogramExtents when computing the
// histogram, rather than the simple range of the input columns.
vtkSetMacro(UseCustomHistogramExtents,int);
vtkGetMacro(UseCustomHistogramExtents,int);
vtkBooleanMacro(UseCustomHistogramExtents,int);
// Description:
// Control the scalar type of the output histogram. If the input
// is relatively small, you can save space by using a smaller
// data type. Defaults to unsigned integer.
vtkSetMacro(ScalarType,int);
void SetScalarTypeToUnsignedInt()
{this->SetScalarType(VTK_UNSIGNED_INT);};
void SetScalarTypeToUnsignedLong()
{this->SetScalarType(VTK_UNSIGNED_LONG);};
void SetScalarTypeToUnsignedShort()
{this->SetScalarType(VTK_UNSIGNED_SHORT);};
void SetScalarTypeToUnsignedChar()
{this->SetScalarType(VTK_UNSIGNED_CHAR);};
void SetScalarTypeToFloat()
{this->SetScalarType(VTK_FLOAT);};
void SetScalarTypeToDouble()
{this->SetScalarType(VTK_DOUBLE);};
vtkGetMacro(ScalarType,int);
// Description:
// Access the count of the histogram bin containing the largest number
// of input rows.
vtkGetMacro(MaximumBinCount,double);
// Description:
// Compute the range of the bin located at position (binX,binY) in
// the 2D histogram.
int GetBinRange(vtkIdType binX, vtkIdType binY, double range[4]);
// Description:
// Get the range of the of the bin located at 1D position index bin
// in the 2D histogram array.
int GetBinRange(vtkIdType bin, double range[4]);
// Description:
// Get the width of all of the bins. Also stored in the spacing
// ivar of the histogram image output.
void GetBinWidth(double bw[2]);
// Description:
// Gets the data object at the histogram image output port and
// casts it to a vtkImageData.
vtkImageData* GetOutputHistogramImage();
// Description:
// Get the histogram extents currently in use, either computed
// or set by the user.
double* GetHistogramExtents();
vtkSetMacro(SwapColumns,int);
vtkGetMacro(SwapColumns,int);
vtkBooleanMacro(SwapColumns,int);
// Description:
// Get/Set an optional mask that can ignore rows of the table
virtual void SetRowMask(vtkDataArray*);
vtkGetObjectMacro(RowMask,vtkDataArray);
// Description:
// Given a collection of models, calculate aggregate model. Not used.
virtual void Aggregate( vtkDataObjectCollection*, vtkMultiBlockDataSet* ) {}
protected:
vtkExtractHistogram2D();
~vtkExtractHistogram2D();
int SwapColumns;
int NumberOfBins[2];
double HistogramExtents[4];
double CustomHistogramExtents[4];
int UseCustomHistogramExtents;
int ComponentsToProcess[2];
double MaximumBinCount;
int ScalarType;
vtkDataArray* RowMask;
virtual int ComputeBinExtents(vtkDataArray* col1, vtkDataArray* col2);
// Description:
// Execute the calculations required by the Learn option.
// This is what actually does the histogram computation.
virtual void Learn( vtkTable* inData,
vtkTable* inParameters,
vtkMultiBlockDataSet* inMeta );
// Description:
// Execute the calculations required by the Derive option. Not used.
virtual void Derive( vtkMultiBlockDataSet* ) {}
// Description:
// Execute the calculations required by the Test option.
virtual void Test( vtkTable*,
vtkMultiBlockDataSet*,
vtkTable* ) { return; };
// Description:
// Execute the calculations required by the Assess option.
virtual void Assess( vtkTable*,
vtkMultiBlockDataSet*,
vtkTable* ) { return; };
// Description:
// Provide the appropriate assessment functor. Not used.
virtual void SelectAssessFunctor( vtkTable* vtkNotUsed(outData),
vtkDataObject* vtkNotUsed(inMeta),
vtkStringArray* vtkNotUsed(rowNames),
AssessFunctor*& vtkNotUsed(dfunc) ) {}
virtual int FillOutputPortInformation( int port, vtkInformation* info );
// Description:
// Makes sure that the image data output port has up-to-date spacing/origin/etc
virtual int RequestInformation (vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector);
// Description:
// Get points to the arrays that live in the two input columns
int GetInputArrays(vtkDataArray*& col1, vtkDataArray*& col2);
private:
vtkExtractHistogram2D(const vtkExtractHistogram2D&); // Not implemented
void operator=(const vtkExtractHistogram2D&); // Not implemented
};
#endif
|