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 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkPlotBag.cxx
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.
=========================================================================*/
#include "vtkBrush.h"
#include "vtkContext2D.h"
#include "vtkContextMapper2D.h"
#include "vtkDataArray.h"
#include "vtkDoubleArray.h"
#include "vtkObjectFactory.h"
#include "vtkPen.h"
#include "vtkPlotBag.h"
#include "vtkPoints.h"
#include "vtkPoints2D.h"
#include "vtkPointsProjectedHull.h"
#include "vtkStringArray.h"
#include "vtkTable.h"
#include "vtkTimeStamp.h"
#include "vtkMath.h"
#include <algorithm>
#include <sstream>
//-----------------------------------------------------------------------------
vtkStandardNewMacro(vtkPlotBag);
vtkSetObjectImplementationMacro(vtkPlotBag, LinePen, vtkPen);
//-----------------------------------------------------------------------------
vtkPlotBag::vtkPlotBag()
{
this->MedianPoints = vtkPoints2D::New();
this->Q3Points = vtkPoints2D::New();
this->TooltipDefaultLabelFormat = "%C, %l (%x, %y): %z";
this->BagVisible = true;
this->Brush->SetColor(255, 0, 0);
this->Brush->SetOpacity(255);
this->Pen->SetColor(0, 0, 0);
this->Pen->SetWidth(5.f);
this->LinePen = vtkPen::New();
this->LinePen->SetColor(0, 0, 0);
this->LinePen->SetWidth(1.f);
}
//-----------------------------------------------------------------------------
vtkPlotBag::~vtkPlotBag()
{
if (this->MedianPoints)
{
this->MedianPoints->Delete();
this->MedianPoints = 0;
}
if (this->Q3Points)
{
this->Q3Points->Delete();
this->Q3Points = 0;
}
if (this->LinePen)
{
this->LinePen->Delete();
this->LinePen = 0;
}
}
//-----------------------------------------------------------------------------
void vtkPlotBag::Update()
{
if (!this->Visible)
{
return;
}
// Check if we have an input
vtkTable *table = this->Data->GetInput();
vtkDataArray *density = vtkArrayDownCast<vtkDataArray>(
this->Data->GetInputAbstractArrayToProcess(2, this->GetInput()));
if (!table || !density)
{
vtkDebugMacro(<< "Update event called with no input table or density column set.");
return;
}
bool update = (this->Data->GetMTime() > this->BuildTime ||
table->GetMTime() > this->BuildTime ||
this->MTime > this->BuildTime);
this->Superclass::Update();
if (update)
{
vtkDebugMacro(<< "Updating cached values.");
this->UpdateTableCache(density);
}
}
//-----------------------------------------------------------------------------
class DensityVal
{
public:
DensityVal(double d, vtkIdType cid) : Density(d), Id(cid) {}
bool operator<(const DensityVal& b) const
{
return this->Density > b.Density;
}
double Density;
vtkIdType Id;
};
//-----------------------------------------------------------------------------
void vtkPlotBag::UpdateTableCache(vtkDataArray* density)
{
this->MedianPoints->Reset();
this->Q3Points->Reset();
if (!this->Points)
{
return;
}
vtkDataArray* d = density;
vtkPoints2D* points = this->Points;
vtkIdType nbPoints = d->GetNumberOfTuples();
// Fetch and sort arrays according their density
std::vector<DensityVal> ids;
ids.reserve(nbPoints);
for (int i = 0; i < nbPoints; i++)
{
ids.push_back(DensityVal(d->GetTuple1(i), i));
}
std::sort(ids.begin(), ids.end());
vtkNew<vtkPointsProjectedHull> q3Points;
q3Points->Allocate(nbPoints);
vtkNew<vtkPointsProjectedHull> medianPoints;
medianPoints->Allocate(nbPoints);
// Compute total density sum
double densitySum = 0.0;
for (vtkIdType i = 0; i < nbPoints; i++)
{
densitySum += d->GetTuple1(i);
}
double sum = 0.0;
for (vtkIdType i = 0; i < nbPoints; i++)
{
double x[3];
points->GetPoint(ids[i].Id, x);
sum += ids[i].Density;
if (sum < 0.5 * densitySum)
{
medianPoints->InsertNextPoint(x);
}
if (sum < 0.99 * densitySum)
{
q3Points->InsertNextPoint(x);
}
else
{
break;
}
}
// Compute the convex hull for the median points
vtkIdType nbMedPoints = medianPoints->GetNumberOfPoints();
if (nbMedPoints > 2)
{
int size = medianPoints->GetSizeCCWHullZ();
this->MedianPoints->SetDataTypeToFloat();
this->MedianPoints->SetNumberOfPoints(size+1);
medianPoints->GetCCWHullZ(
static_cast<float*>(this->MedianPoints->GetData()->GetVoidPointer(0)), size);
double x[3];
this->MedianPoints->GetPoint(0, x);
this->MedianPoints->SetPoint(size, x);
}
else if (nbMedPoints > 0)
{
this->MedianPoints->SetNumberOfPoints(nbMedPoints);
for (int j = 0; j < nbMedPoints; j++)
{
double x[3];
medianPoints->GetPoint(j, x);
this->MedianPoints->SetPoint(j, x);
}
}
// Compute the convex hull for the first quartile points
vtkIdType nbQ3Points = q3Points->GetNumberOfPoints();
if (nbQ3Points > 2)
{
int size = q3Points->GetSizeCCWHullZ();
this->Q3Points->SetDataTypeToFloat();
this->Q3Points->SetNumberOfPoints(size+1);
q3Points->GetCCWHullZ(
static_cast<float*>(this->Q3Points->GetData()->GetVoidPointer(0)), size);
double x[3];
this->Q3Points->GetPoint(0, x);
this->Q3Points->SetPoint(size, x);
}
else if (nbQ3Points > 0)
{
this->Q3Points->SetNumberOfPoints(nbQ3Points);
for (int j = 0; j < nbQ3Points; j++)
{
double x[3];
q3Points->GetPoint(j, x);
this->Q3Points->SetPoint(j, x);
}
}
this->BuildTime.Modified();
}
//-----------------------------------------------------------------------------
bool vtkPlotBag::Paint(vtkContext2D *painter)
{
vtkDebugMacro(<< "Paint event called in vtkPlotBag.");
vtkTable *table = this->Data->GetInput();
if (!this->Visible || !this->Points || !table)
{
return false;
}
if (this->BagVisible)
{
unsigned char bcolor[4];
this->Brush->GetColor(bcolor);
// Draw the 2 bags
this->Brush->SetOpacity(255);
this->Brush->SetColor(bcolor[0] / 2, bcolor[1] / 2, bcolor[2] / 2);
painter->ApplyPen(this->LinePen);
painter->ApplyBrush(this->Brush);
if (this->Q3Points->GetNumberOfPoints() > 2)
{
painter->DrawPolygon(this->Q3Points);
}
else if (this->Q3Points->GetNumberOfPoints() == 2)
{
painter->DrawLine(this->Q3Points);
}
this->Brush->SetColor(bcolor);
this->Brush->SetOpacity(128);
painter->ApplyBrush(this->Brush);
if (this->MedianPoints->GetNumberOfPoints() > 2)
{
painter->DrawPolygon(this->MedianPoints);
}
else if (this->MedianPoints->GetNumberOfPoints() == 2)
{
painter->DrawLine(this->MedianPoints);
}
}
painter->ApplyPen(this->Pen);
// Let PlotPoints draw the points as usual
return this->Superclass::Paint(painter);
}
//-----------------------------------------------------------------------------
bool vtkPlotBag::PaintLegend(vtkContext2D *painter, const vtkRectf& rect, int)
{
painter->ApplyPen(this->LinePen);
unsigned char bcolor[4];
this->Brush->GetColor(bcolor);
unsigned char opacity = this->Brush->GetOpacity();
this->Brush->SetOpacity(255);
this->Brush->SetColor(bcolor[0] / 2, bcolor[1] / 2, bcolor[2] / 2);
painter->ApplyBrush(this->Brush);
painter->DrawRect(rect[0], rect[1], rect[2], rect[3]);
this->Brush->SetColor(bcolor);
this->Brush->SetOpacity(128);
painter->ApplyBrush(this->Brush);
painter->DrawRect(rect[0] + rect[2] / 2.f, rect[1], rect[2]/2, rect[3]);
this->Brush->SetOpacity(opacity);
return true;
}
//-----------------------------------------------------------------------------
vtkStringArray* vtkPlotBag::GetLabels()
{
// If the label string is empty, return the y column name
if (this->Labels)
{
return this->Labels;
}
else if (this->AutoLabels)
{
return this->AutoLabels;
}
else if (this->Data->GetInput())
{
this->AutoLabels = vtkSmartPointer<vtkStringArray>::New();
vtkDataArray *density = vtkArrayDownCast<vtkDataArray>(
this->Data->GetInputAbstractArrayToProcess(2, this->GetInput()));
if (density)
{
this->AutoLabels->InsertNextValue(density->GetName());
}
return this->AutoLabels;
}
return NULL;
}
//-----------------------------------------------------------------------------
vtkStdString vtkPlotBag::GetTooltipLabel(const vtkVector2d &plotPos,
vtkIdType seriesIndex,
vtkIdType)
{
vtkStdString tooltipLabel;
vtkStdString &format = this->TooltipLabelFormat.empty() ?
this->TooltipDefaultLabelFormat : this->TooltipLabelFormat;
// Parse TooltipLabelFormat and build tooltipLabel
bool escapeNext = false;
vtkDataArray *density = vtkArrayDownCast<vtkDataArray>(
this->Data->GetInputAbstractArrayToProcess(2, this->GetInput()));
for (size_t i = 0; i < format.length(); ++i)
{
if (escapeNext)
{
switch (format[i])
{
case 'x':
tooltipLabel += this->GetNumber(plotPos.GetX(), this->XAxis);
break;
case 'y':
tooltipLabel += this->GetNumber(plotPos.GetY(), this->YAxis);
break;
case 'z':
tooltipLabel += density ?
density->GetVariantValue(seriesIndex).ToString() :
vtkStdString("?");
break;
case 'i':
if (this->IndexedLabels &&
seriesIndex >= 0 &&
seriesIndex < this->IndexedLabels->GetNumberOfTuples())
{
tooltipLabel += this->IndexedLabels->GetValue(seriesIndex);
}
break;
case 'l':
// GetLabel() is GetLabel(0) in this implementation
tooltipLabel += this->GetLabel();
break;
case 'c':
{
std::stringstream ss;
ss << seriesIndex;
tooltipLabel += ss.str();
}
break;
case 'C':
{
vtkAbstractArray *colName = vtkArrayDownCast<vtkAbstractArray>(
this->GetInput()->GetColumnByName("ColName"));
std::stringstream ss;
if (colName)
{
ss << colName->GetVariantValue(seriesIndex).ToString();
}
else
{
ss << "?";
}
tooltipLabel += ss.str();
}
break;
default: // If no match, insert the entire format tag
tooltipLabel += "%";
tooltipLabel += format[i];
break;
}
escapeNext = false;
}
else
{
if (format[i] == '%')
{
escapeNext = true;
}
else
{
tooltipLabel += format[i];
}
}
}
return tooltipLabel;
}
//-----------------------------------------------------------------------------
void vtkPlotBag::SetInputData(vtkTable *table)
{
this->Data->SetInputData(table);
this->Modified();
}
//-----------------------------------------------------------------------------
void vtkPlotBag::SetInputData(vtkTable *table, const vtkStdString &yColumn,
const vtkStdString &densityColumn)
{
vtkDebugMacro(<< "Setting input, Y column = \"" << yColumn.c_str() << "\", "
<< "Density column = \"" << densityColumn.c_str() << "\"");
if (table->GetColumnByName(densityColumn.c_str())->GetNumberOfTuples()
!= table->GetColumnByName(yColumn.c_str())->GetNumberOfTuples())
{
vtkErrorMacro(<< "Input table not correctly initialized!");
return;
}
this->SetInputData(table, yColumn, yColumn, densityColumn);
this->UseIndexForXSeries = true;
}
//-----------------------------------------------------------------------------
void vtkPlotBag::SetInputData(vtkTable *table, const vtkStdString &xColumn,
const vtkStdString &yColumn,
const vtkStdString &densityColumn)
{
vtkDebugMacro(<< "Setting input, X column = \"" << xColumn.c_str()
<< "\", " << "Y column = \""
<< yColumn.c_str() << "\""
<< "\", " << "Density column = \""
<< densityColumn.c_str() << "\"");
this->Data->SetInputData(table);
this->Data->SetInputArrayToProcess(0, 0, 0,
vtkDataObject::FIELD_ASSOCIATION_ROWS, xColumn.c_str());
this->Data->SetInputArrayToProcess(1, 0, 0,
vtkDataObject::FIELD_ASSOCIATION_ROWS, yColumn.c_str());
this->Data->SetInputArrayToProcess(2, 0, 0,
vtkDataObject::FIELD_ASSOCIATION_ROWS, densityColumn.c_str());
if (this->AutoLabels)
{
this->AutoLabels = 0;
}
}
//-----------------------------------------------------------------------------
void vtkPlotBag::SetInputData(vtkTable *table, vtkIdType xColumn,
vtkIdType yColumn,
vtkIdType densityColumn)
{
this->SetInputData(table,
table->GetColumnName(xColumn),
table->GetColumnName(yColumn),
table->GetColumnName(densityColumn));
}
//-----------------------------------------------------------------------------
void vtkPlotBag::PrintSelf(ostream &os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
|