/usr/include/vtk-6.3/vtkParallelCoordinatesHistogramRepresentation.h is in libvtk6-dev 6.3.0+dfsg1-5.
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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkParallelCoordinatesHistogramRepresentation.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 2009 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
// .NAME vtkParallelCoordinatesHistogramRepresentation - Data representation
// that takes generic multivariate data and produces a parallel coordinates plot.
// This plot optionally can draw a histogram-based plot summary.
//
// .SECTION Description
// A parallel coordinates plot represents each variable in a multivariate
// data set as a separate axis. Individual samples of that data set are
// represented as a polyline that pass through each variable axis at
// positions that correspond to data values. This class can generate
// parallel coordinates plots identical to its superclass
// (vtkParallelCoordinatesRepresentation) and has the same interaction
// styles.
//
// In addition to the standard parallel coordinates plot, this class also
// can draw a histogram summary of the parallel coordinates plot.
// Rather than draw every row in an input data set, first it computes
// a 2D histogram for all neighboring variable axes, then it draws
// bar (thickness corresponds to bin size) for each bin the histogram
// with opacity weighted by the number of rows contained in the bin.
// The result is essentially a density map.
//
// Because this emphasizes dense regions over sparse outliers, this class
// also uses a vtkComputeHistogram2DOutliers instance to identify outlier
// table rows and draws those as standard parallel coordinates lines.
//
// .SECTION See Also
// vtkParallelCoordinatesView vtkParallelCoordinatesRepresentation
// vtkExtractHistogram2D vtkComputeHistogram2DOutliers
//
// .SECTION Thanks
// Developed by David Feng at Sandia National Laboratories
#ifndef vtkParallelCoordinatesHistogramRepresentation_h
#define vtkParallelCoordinatesHistogramRepresentation_h
#include "vtkViewsInfovisModule.h" // For export macro
#include "vtkParallelCoordinatesRepresentation.h"
class vtkComputeHistogram2DOutliers;
class vtkPairwiseExtractHistogram2D;
class vtkExtractHistogram2D;
class vtkInformationVector;
class vtkLookupTable;
class VTKVIEWSINFOVIS_EXPORT vtkParallelCoordinatesHistogramRepresentation : public vtkParallelCoordinatesRepresentation
{
public:
static vtkParallelCoordinatesHistogramRepresentation* New();
vtkTypeMacro(vtkParallelCoordinatesHistogramRepresentation, vtkParallelCoordinatesRepresentation);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Apply the theme to this view.
virtual void ApplyViewTheme(vtkViewTheme* theme);
// Description:
// Whether to use the histogram rendering mode or the superclass's line rendering mode
virtual void SetUseHistograms(int);
vtkGetMacro(UseHistograms,int);
vtkBooleanMacro(UseHistograms,int);
// Description:
// Whether to compute and show outlier lines
virtual void SetShowOutliers(int);
vtkGetMacro(ShowOutliers,int);
vtkBooleanMacro(ShowOutliers,int);
// Description:
// Control over the range of the lookup table used to draw the histogram quads.
vtkSetVector2Macro(HistogramLookupTableRange,double);
vtkGetVector2Macro(HistogramLookupTableRange,double);
//BTX
// Description:
// The number of histogram bins on either side of each pair of axes.
void SetNumberOfHistogramBins(int,int);
void SetNumberOfHistogramBins(int*);
vtkGetVector2Macro(NumberOfHistogramBins,int);
//ETX
// Description:
// Target maximum number of outliers to be drawn, although not guaranteed.
void SetPreferredNumberOfOutliers(int);
vtkGetMacro(PreferredNumberOfOutliers,int);
// Description:
// Calls superclass swap, and assures that only histograms affected by the
// swap get recomputed.
virtual int SwapAxisPositions(int position1, int position2);
// Description:
// Calls the superclass method, and assures that only the two histograms
// affect by this call get recomputed.
virtual int SetRangeAtPosition(int position, double range[2]);
protected:
vtkParallelCoordinatesHistogramRepresentation();
virtual ~vtkParallelCoordinatesHistogramRepresentation();
virtual int RequestData(
vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
virtual bool AddToView(vtkView* view);
virtual bool RemoveFromView(vtkView* view);
// Description:
// Flag deciding if histograms will be drawn.
int UseHistograms;
// Description:
// The range applied to the lookup table used to draw histogram quads
double HistogramLookupTableRange[2];
// Description:
// How many bins are used during the 2D histogram computation
int NumberOfHistogramBins[2];
//BTX
vtkSmartPointer<vtkPairwiseExtractHistogram2D> HistogramFilter;
vtkSmartPointer<vtkLookupTable> HistogramLookupTable;
//ETX
// Description:
// Whether or not to draw outlier lines
int ShowOutliers;
// Description:
// How many outlier lines to draw, approximately.
int PreferredNumberOfOutliers;
//BTX
vtkSmartPointer<vtkComputeHistogram2DOutliers> OutlierFilter;
vtkSmartPointer<vtkPolyData> OutlierData;
vtkSmartPointer<vtkPolyDataMapper2D> OutlierMapper;
vtkSmartPointer<vtkActor2D> OutlierActor;
//ETX
// Description:
// Correctly forwards the superclass call to draw lines to the internal
// PlaceHistogramLineQuads call.
virtual int PlaceLines(vtkPolyData* polyData, vtkTable* data, vtkIdTypeArray* idsToPlot);
// Description:
// Correctly forwards the superclass call to draw curves to the internal
// PlaceHistogramLineCurves call.
virtual int PlaceCurves(vtkPolyData* polyData, vtkTable* data, vtkIdTypeArray* idsToPlot);
// Description:
// Draw a selection node referencing the row ids of a table into a poly data object.
virtual int PlaceSelection(vtkPolyData* polyData, vtkTable* data, vtkSelectionNode* selectionNode);
// Description:
// Take the input 2D histogram images and draw one quad for each bin
virtual int PlaceHistogramLineQuads(vtkPolyData* polyData);
// Description:
// Take the input 2D histogram images and draw one triangle strip that
// is the curved version of the regular quad drawn via PlaceHistogramLineQuads
virtual int PlaceHistogramCurveQuads(vtkPolyData* polyData);
// Description:
// Compute the number of axes and their individual ranges, as well
// as histograms if requested.
virtual int ComputeDataProperties();
virtual int UpdatePlotProperties(vtkStringArray*);
// Description:
// Access the input data object containing the histograms and
// pull out the image data for the idx'th histogram.
virtual vtkImageData* GetHistogramImage(int idx);
// Description:
// get the table containing just the outlier rows from the input table.
virtual vtkTable* GetOutlierData();
private:
vtkParallelCoordinatesHistogramRepresentation(const vtkParallelCoordinatesHistogramRepresentation&); // Not implemented
void operator=(const vtkParallelCoordinatesHistogramRepresentation&); // Not implemented
};
#endif
|