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 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkDiscretizableColorTransferFunction.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 "vtkDiscretizableColorTransferFunction.h"
#include "vtkCommand.h"
#include "vtkLookupTable.h"
#include "vtkMath.h"
#include "vtkObjectFactory.h"
#include "vtkPiecewiseFunction.h"
#include "vtkTemplateAliasMacro.h"
#include "vtkTuple.h"
#include <vector>
class vtkDiscretizableColorTransferFunction::vtkInternals
{
public:
std::vector<vtkTuple<double, 3> > IndexedColors;
};
vtkStandardNewMacro(vtkDiscretizableColorTransferFunction);
vtkCxxSetObjectMacro(vtkDiscretizableColorTransferFunction,
ScalarOpacityFunction, vtkPiecewiseFunction);
//-----------------------------------------------------------------------------
vtkDiscretizableColorTransferFunction::vtkDiscretizableColorTransferFunction()
: Internals(new vtkInternals())
{
this->LookupTable = vtkLookupTable::New();
this->Discretize = 0;
this->NumberOfValues = 256;
this->UseLogScale = 0;
this->ScalarOpacityFunction = 0;
this->EnableOpacityMapping = false;
}
//-----------------------------------------------------------------------------
vtkDiscretizableColorTransferFunction::~vtkDiscretizableColorTransferFunction()
{
// this removes any observer we may have setup for the
// ScalarOpacityFunction.
this->SetScalarOpacityFunction(NULL);
this->LookupTable->Delete();
delete this->Internals;
this->Internals = NULL;
}
//-----------------------------------------------------------------------------
unsigned long vtkDiscretizableColorTransferFunction::GetMTime()
{
unsigned long mtime = this->Superclass::GetMTime();
if (this->ScalarOpacityFunction)
{
unsigned long somtime = this->ScalarOpacityFunction->GetMTime();
mtime = somtime > mtime? somtime : mtime;
}
if (this->LookupTable)
{
unsigned ltmtime = this->LookupTable->GetMTime();
mtime = ltmtime > mtime? ltmtime : mtime;
}
return mtime;
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::SetNumberOfIndexedColors(
unsigned int count)
{
if (static_cast<unsigned int>(this->Internals->IndexedColors.size()) != count)
{
this->Internals->IndexedColors.resize(count);
this->Modified();
}
}
//-----------------------------------------------------------------------------
unsigned int vtkDiscretizableColorTransferFunction::GetNumberOfIndexedColors()
{
return static_cast<unsigned int>(this->Internals->IndexedColors.size());
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::SetIndexedColor(
unsigned int index, double r, double g, double b)
{
if (static_cast<unsigned int>(this->Internals->IndexedColors.size()) <= index)
{
// resize and fill all new colors with the same color as specified.
size_t old_size = this->Internals->IndexedColors.size();
size_t new_size = static_cast<size_t>(index+1);
this->Internals->IndexedColors.resize(new_size);
for (size_t cc = old_size; cc < new_size; cc++)
{
double *data = this->Internals->IndexedColors[cc].GetData();
data[0] = r;
data[1] = g;
data[2] = b;
}
this->Modified();
}
else if (this->Internals->IndexedColors[index].GetData()[0] != r ||
this->Internals->IndexedColors[index].GetData()[1] != g ||
this->Internals->IndexedColors[index].GetData()[2] != b )
{
// color has changed, change it.
double *data = this->Internals->IndexedColors[index].GetData();
data[0] = r;
data[1] = g;
data[2] = b;
this->Modified();
}
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::GetIndexedColor(vtkIdType i, double rgba[4])
{
if (this->IndexedLookup || this->Discretize)
{
this->LookupTable->GetIndexedColor(i, rgba);
}
else
{
this->Superclass::GetIndexedColor(i, rgba);
}
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::SetUseLogScale(int useLogScale)
{
if(this->UseLogScale != useLogScale)
{
this->UseLogScale = useLogScale;
if(this->UseLogScale)
{
this->LookupTable->SetScaleToLog10();
this->SetScaleToLog10();
}
else
{
this->LookupTable->SetScaleToLinear();
this->SetScaleToLinear();
}
this->Modified();
}
}
//-----------------------------------------------------------------------------
int vtkDiscretizableColorTransferFunction::IsOpaque()
{
return !this->EnableOpacityMapping;
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::Build()
{
this->Superclass::Build();
if (this->BuildTime > this->GetMTime())
{
// no need to rebuild anything.
return;
}
this->LookupTable->SetVectorMode(this->VectorMode);
this->LookupTable->SetVectorComponent(this->VectorComponent);
this->LookupTable->SetIndexedLookup(this->IndexedLookup);
this->LookupTable->SetUseBelowRangeColor(this->UseBelowRangeColor);
this->LookupTable->SetUseAboveRangeColor(this->UseAboveRangeColor);
double rgba[4];
this->GetBelowRangeColor(rgba);
rgba[3] = 1.0;
this->LookupTable->SetBelowRangeColor(rgba);
this->GetAboveRangeColor(rgba);
rgba[3] = 1.0;
this->LookupTable->SetAboveRangeColor(rgba);
// this is essential since other the LookupTable doesn't update the
// annotations map. That's a bug in the implementation of
// vtkScalarsToColors::SetAnnotations(..,..);
this->LookupTable->SetAnnotations(NULL, NULL);
this->LookupTable->SetAnnotations(this->AnnotatedValues, this->Annotations);
if (this->IndexedLookup)
{
if (this->GetNumberOfIndexedColors() > 0)
{
// Use the specified indexed-colors.
vtkIdType count = this->GetNumberOfAnnotatedValues();
this->LookupTable->SetNumberOfTableValues(count);
for (size_t cc=0; cc < this->Internals->IndexedColors.size() &&
cc < static_cast<size_t>(count); cc++)
{
rgba[0] = this->Internals->IndexedColors[cc].GetData()[0];
rgba[1] = this->Internals->IndexedColors[cc].GetData()[1];
rgba[2] = this->Internals->IndexedColors[cc].GetData()[2];
rgba[3] = 1.0;
this->LookupTable->SetTableValue(static_cast<int>(cc), rgba);
}
}
else
{
// old logic for backwards compatibility.
int nv = this->GetSize();
this->LookupTable->SetNumberOfTableValues( nv );
double nodeVal[6];
for ( int i = 0; i < nv; ++ i )
{
this->GetNodeValue( i, nodeVal );
nodeVal[4] = 1.;
this->LookupTable->SetTableValue( i, &nodeVal[1] );
}
}
}
else if (this->Discretize)
{
// Do not omit the LookupTable->SetNumberOfTableValues call:
// WritePointer does not update the NumberOfColors ivar.
this->LookupTable->SetNumberOfTableValues(this->NumberOfValues);
unsigned char* lut_ptr = this->LookupTable->WritePointer(0,
this->NumberOfValues);
double* table = new double[this->NumberOfValues * 3];
double range[2];
this->GetRange(range);
bool logRangeValid = true;
if (this->UseLogScale)
{
logRangeValid = range[0] > 0.0 || range[1] < 0.0;
if(!logRangeValid && this->LookupTable->GetScale() == VTK_SCALE_LOG10)
{
this->LookupTable->SetScaleToLinear();
}
}
this->LookupTable->SetRange(range);
if(this->UseLogScale && logRangeValid &&
this->LookupTable->GetScale() == VTK_SCALE_LINEAR)
{
this->LookupTable->SetScaleToLog10();
}
this->GetTable(range[0], range[1], this->NumberOfValues, table);
// Now, convert double to unsigned chars and fill the LUT.
for (int cc=0; cc < this->NumberOfValues; cc++)
{
lut_ptr[4*cc] = (unsigned char)(255.0*table[3*cc] + 0.5);
lut_ptr[4*cc+1] = (unsigned char)(255.0*table[3*cc+1] + 0.5);
lut_ptr[4*cc+2] = (unsigned char)(255.0*table[3*cc+2] + 0.5);
lut_ptr[4*cc+3] = 255;
}
delete [] table;
}
this->BuildTime.Modified();
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::SetAlpha(double alpha)
{
this->LookupTable->SetAlpha(alpha);
this->Superclass::SetAlpha(alpha);
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::SetNanColor(double r, double g, double b)
{
this->LookupTable->SetNanColor(r, g, b, 1.0);
this->Superclass::SetNanColor(r, g, b);
}
//-----------------------------------------------------------------------------
unsigned char* vtkDiscretizableColorTransferFunction::MapValue(double v)
{
this->Build();
if (this->Discretize || this->IndexedLookup)
{
return this->LookupTable->MapValue(v);
}
return this->Superclass::MapValue(v);
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::GetColor(double v, double rgb[3])
{
this->Build();
if (this->Discretize || this->IndexedLookup)
{
this->LookupTable->GetColor(v, rgb);
}
else
{
this->Superclass::GetColor(v, rgb);
}
}
//-----------------------------------------------------------------------------
double vtkDiscretizableColorTransferFunction::GetOpacity(double v)
{
if (
this->IndexedLookup ||
!this->EnableOpacityMapping ||
!this->ScalarOpacityFunction)
{
return this->Superclass::GetOpacity(v);
}
return this->ScalarOpacityFunction->GetValue(v);
}
//-----------------------------------------------------------------------------
vtkUnsignedCharArray* vtkDiscretizableColorTransferFunction::MapScalars(
vtkDataArray *scalars, int colorMode, int component)
{
return this->MapScalars(static_cast<vtkAbstractArray*>(scalars), colorMode, component);
}
//-----------------------------------------------------------------------------
vtkUnsignedCharArray* vtkDiscretizableColorTransferFunction::MapScalars(
vtkAbstractArray *scalars, int colorMode, int component)
{
this->Build();
// if direct scalar mapping is enabled (and possible), the LUT is not used for
// color and we won't use it for opacity either.
bool direct_scalar_mapping =
((colorMode == VTK_COLOR_MODE_DEFAULT &&
vtkUnsignedCharArray::SafeDownCast(scalars) != NULL) ||
colorMode == VTK_COLOR_MODE_DIRECT_SCALARS);
vtkUnsignedCharArray *colors = (this->Discretize || this->IndexedLookup) ?
this->LookupTable->MapScalars(scalars, colorMode, component):
this->Superclass::MapScalars(scalars, colorMode, component);
// calculate alpha values
if (colors &&
(colors->GetNumberOfComponents() == 4) &&
(direct_scalar_mapping == false) &&
(this->IndexedLookup == false) && // we don't change alpha for IndexedLookup.
(this->EnableOpacityMapping == true) &&
(this->ScalarOpacityFunction.GetPointer() != NULL))
{
vtkDataArray* da = vtkDataArray::SafeDownCast(scalars);
this->MapDataArrayToOpacity(da, component, colors);
}
return colors;
}
template<typename T>
struct VectorComponentGetter
{
double Get(
T* scalars, int component, int numberOfComponents, vtkIdType tuple)
{
double value = *(scalars + tuple * numberOfComponents + component);
return value;
}
};
template<typename T>
struct VectorMagnitudeGetter
{
double Get(
T* scalars, int component, int numberOfComponents, vtkIdType tuple)
{
(void)component;
double v = 0.0;
for (int j = 0; j < numberOfComponents; ++j)
{
double u = *(scalars + tuple * numberOfComponents + j);
v += u * u;
}
v = sqrt (v);
return v;
}
};
//-----------------------------------------------------------------------------
template<typename T, typename VectorGetter>
void vtkDiscretizableColorTransferFunction::MapVectorToOpacity (
VectorGetter getter, T* scalars, int component,
int numberOfComponents, vtkIdType numberOfTuples, unsigned char* colors)
{
for(vtkIdType i = 0; i < numberOfTuples; i++)
{
double value = getter.Get (scalars, component, numberOfComponents, i);
double alpha = this->ScalarOpacityFunction->GetValue(value);
*(colors + i * 4 + 3) = static_cast<unsigned char>(alpha * 255.0 + 0.5);
}
}
//-----------------------------------------------------------------------------
template<template<class> class VectorGetter>
void vtkDiscretizableColorTransferFunction::AllTypesMapVectorToOpacity (
int scalarType,
void* scalarPtr, int component,
int numberOfComponents, vtkIdType numberOfTuples, unsigned char* colorPtr)
{
switch (scalarType)
{
vtkTemplateAliasMacro(
MapVectorToOpacity(
VectorGetter<VTK_TT>(),
static_cast<VTK_TT*>(scalarPtr), component, numberOfComponents,
numberOfTuples, colorPtr));
}
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::MapDataArrayToOpacity(
vtkDataArray *scalars, int component, vtkUnsignedCharArray* colors)
{
int scalarType = scalars->GetDataType ();
void* scalarPtr = scalars->GetVoidPointer(0);
unsigned char* colorPtr = static_cast<unsigned char*> (
colors->GetVoidPointer(0));
int numberOfComponents = scalars->GetNumberOfComponents ();
vtkIdType numberOfTuples = scalars->GetNumberOfTuples ();
if (component >= numberOfComponents)
{
vtkWarningMacro(
<< "Clamping component: " << component
<< " to numberOfComponents - 1: " << (numberOfComponents - 1));
component = numberOfComponents - 1;
}
if (component < 0)
{
AllTypesMapVectorToOpacity<VectorMagnitudeGetter> (
scalarType, scalarPtr,
component, numberOfComponents, numberOfTuples, colorPtr);
}
else
{
AllTypesMapVectorToOpacity<VectorComponentGetter> (
scalarType, scalarPtr,
component, numberOfComponents, numberOfTuples, colorPtr);
}
}
#ifndef VTK_LEGACY_REMOVE
//-----------------------------------------------------------------------------
double* vtkDiscretizableColorTransferFunction::GetRGBPoints()
{
// This method is redundant with
// vtkColorTransferFunction::GetDataPointer(), so we simply call
// that method here.
VTK_LEGACY_REPLACED_BODY(vtkDiscretizableColorTransferFunction::GetRGBPoints,
"VTK 6.2", "vtkDiscretizableColorTransferFunction::GetDataPointer()" );
return this->Superclass::GetDataPointer();
}
#endif
//----------------------------------------------------------------------------
vtkIdType vtkDiscretizableColorTransferFunction::GetNumberOfAvailableColors()
{
if(this->Discretize == false)
{
return 16777216; // 2^24
}
return this->NumberOfValues;
}
//----------------------------------------------------------------------------
vtkPiecewiseFunction* vtkDiscretizableColorTransferFunction::GetScalarOpacityFunction() const
{
return this->ScalarOpacityFunction;
}
//-----------------------------------------------------------------------------
void vtkDiscretizableColorTransferFunction::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "Discretize: " << this->Discretize << endl;
os << indent << "NumberOfValues: " << this->NumberOfValues << endl;
os << indent << "UseLogScale: " << this->UseLogScale << endl;
os << indent << "EnableOpacityMapping: " << this->EnableOpacityMapping << endl;
os << indent << "ScalarOpacityFunction: " << this->ScalarOpacityFunction << endl;
}
|