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
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkImageStencilData.cxx,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.
=========================================================================*/
#include "vtkImageStencilData.h"
#include "vtkImageStencilSource.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include <math.h>
vtkCxxRevisionMacro(vtkImageStencilData, "$Revision: 1.15.6.1 $");
vtkStandardNewMacro(vtkImageStencilData);
//----------------------------------------------------------------------------
vtkImageStencilData::vtkImageStencilData()
{
this->Spacing[0] = this->OldSpacing[0] = 1;
this->Spacing[1] = this->OldSpacing[1] = 1;
this->Spacing[2] = this->OldSpacing[2] = 1;
this->Origin[0] = this->OldOrigin[0] = 0;
this->Origin[1] = this->OldOrigin[1] = 0;
this->Origin[2] = this->OldOrigin[2] = 0;
this->NumberOfExtentEntries = 0;
this->ExtentLists = NULL;
this->ExtentListLengths = NULL;
int extent[6] = {0, -1, 0, -1, 0, -1};
memcpy(this->Extent, extent, 6*sizeof(int));
this->Information->Set(vtkDataObject::DATA_EXTENT_TYPE(), VTK_3D_EXTENT);
this->Information->Set(vtkDataObject::DATA_EXTENT(), this->Extent, 6);
}
//----------------------------------------------------------------------------
vtkImageStencilData::~vtkImageStencilData()
{
this->Initialize();
}
//----------------------------------------------------------------------------
void vtkImageStencilData::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
int extent[6];
this->GetExtent(extent);
os << indent << "Extent: ("
<< extent[0] << ", "
<< extent[1] << ", "
<< extent[2] << ", "
<< extent[3] << ", "
<< extent[4] << ", "
<< extent[5] << ")\n";
os << indent << "Spacing: ("
<< this->Spacing[0] << ", "
<< this->Spacing[1] << ", "
<< this->Spacing[2] << ")\n";
os << indent << "Origin: ("
<< this->Origin[0] << ", "
<< this->Origin[1] << ", "
<< this->Origin[2] << ")\n";
os << indent << "OldSpacing: ("
<< this->OldSpacing[0] << ", "
<< this->OldSpacing[1] << ", "
<< this->OldSpacing[2] << ")\n";
os << indent << "OldOrigin: ("
<< this->OldOrigin[0] << ", "
<< this->OldOrigin[1] << ", "
<< this->OldOrigin[2] << ")\n";
}
//----------------------------------------------------------------------------
void vtkImageStencilData::Initialize()
{
if (this->ExtentLists)
{
int n = this->NumberOfExtentEntries;
for (int i = 0; i < n; i++)
{
delete [] this->ExtentLists[i];
}
delete [] this->ExtentLists;
}
this->ExtentLists = NULL;
this->NumberOfExtentEntries = 0;
if (this->ExtentListLengths)
{
delete [] this->ExtentListLengths;
}
this->ExtentListLengths = NULL;
if(this->Information)
{
int extent[6] = {0, -1, 0, -1, 0, -1};
memcpy(this->Extent, extent, 6*sizeof(int));
}
}
//----------------------------------------------------------------------------
void vtkImageStencilData::SetExtent(int* extent)
{
memcpy(this->Extent, extent, 6*sizeof(int));
}
//----------------------------------------------------------------------------
void vtkImageStencilData::SetExtent(int x1, int x2, int y1, int y2, int z1, int z2)
{
int ext[6];
ext[0] = x1;
ext[1] = x2;
ext[2] = y1;
ext[3] = y2;
ext[4] = z1;
ext[5] = z2;
this->SetExtent(ext);
}
//----------------------------------------------------------------------------
void vtkImageStencilData::ShallowCopy(vtkDataObject *o)
{
vtkImageStencilData *s = vtkImageStencilData::SafeDownCast(o);
if (s)
{
this->InternalImageStencilDataCopy(s);
}
vtkDataObject::ShallowCopy(o);
}
//----------------------------------------------------------------------------
void vtkImageStencilData::DeepCopy(vtkDataObject *o)
{
vtkImageStencilData *s = vtkImageStencilData::SafeDownCast(o);
if (s)
{
this->InternalImageStencilDataCopy(s);
}
vtkDataObject::DeepCopy(o);
}
//----------------------------------------------------------------------------
void vtkImageStencilData::InternalImageStencilDataCopy(vtkImageStencilData *s)
{
// copy information that accompanies the data
this->SetSpacing(s->Spacing);
this->SetOrigin(s->Origin);
// delete old data
if (this->ExtentLists)
{
int n = this->NumberOfExtentEntries;
for (int i = 0; i < n; i++)
{
delete [] this->ExtentLists[i];
}
delete [] this->ExtentLists;
}
this->ExtentLists = NULL;
this->NumberOfExtentEntries = 0;
if (this->ExtentListLengths)
{
delete [] this->ExtentListLengths;
}
this->ExtentListLengths = NULL;
// copy new data
if (s->NumberOfExtentEntries != 0)
{
this->NumberOfExtentEntries = s->NumberOfExtentEntries;
int n = this->NumberOfExtentEntries;
this->ExtentListLengths = new int[n];
this->ExtentLists = new int *[n];
for (int i = 0; i < n; i++)
{
this->ExtentListLengths[i] = s->ExtentListLengths[i];
int m = this->ExtentListLengths[i];
this->ExtentLists[i] = new int[m];
for (int j = 0; j < m; j++)
{
this->ExtentLists[i][j] = s->ExtentLists[i][j];
}
}
}
memcpy(this->Extent, s->GetExtent(), 6*sizeof(int));
}
//----------------------------------------------------------------------------
// Override from vtkDataObject because we have to handle the Spacing
// and Origin as well as the UpdateExtent.
void vtkImageStencilData::PropagateUpdateExtent()
{
#if 0
// If we need to update due to PipelineMTime, or the fact that our
// data was released, then propagate the update extent to the source
// if there is one.
if ( this->UpdateTime < this->PipelineMTime || this->DataReleased ||
this->UpdateExtentIsOutsideOfTheExtent() ||
this->SpacingOrOriginHasChanged() ||
this->LastUpdateExtentWasOutsideOfTheExtent)
{
if (this->Source)
{
this->Source->PropagateUpdateExtent(this);
}
}
// update the value of this ivar
this->LastUpdateExtentWasOutsideOfTheExtent =
this->UpdateExtentIsOutsideOfTheExtent();
#else
this->Superclass::PropagateUpdateExtent();
#endif
}
//----------------------------------------------------------------------------
// Override from vtkDataObject because we have to handle the Spacing
// and Origin as well as the UpdateExtent.
void vtkImageStencilData::TriggerAsynchronousUpdate()
{
#if 0
// If we need to update due to PipelineMTime, or the fact that our
// data was released, then propagate the trigger to the source
// if there is one.
if ( this->UpdateTime < this->PipelineMTime || this->DataReleased ||
this->UpdateExtentIsOutsideOfTheExtent() ||
this->SpacingOrOriginHasChanged())
{
if (this->Source)
{
this->Source->TriggerAsynchronousUpdate();
}
}
#else
this->Superclass::TriggerAsynchronousUpdate();
#endif
}
//----------------------------------------------------------------------------
void vtkImageStencilData::UpdateData()
{
#if 0
// If we need to update due to PipelineMTime, or the fact that our
// data was released, then propagate the UpdateData to the source
// if there is one.
if (this->UpdateTime < this->PipelineMTime || this->DataReleased ||
this->UpdateExtentIsOutsideOfTheExtent() ||
this->SpacingOrOriginHasChanged())
{
if (this->Source)
{
this->Source->UpdateData(this);
}
}
#else
this->Superclass::UpdateData();
#endif
}
//----------------------------------------------------------------------------
int vtkImageStencilData::SpacingOrOriginHasChanged()
{
double *spacing = this->Spacing;
double *origin = this->Origin;
double *ospacing = this->OldSpacing;
double *oorigin = this->OldOrigin;
return (spacing[0] != ospacing[0] || origin[0] != oorigin[0] ||
spacing[1] != ospacing[1] || origin[1] != oorigin[1] ||
spacing[2] != ospacing[2] || origin[2] != oorigin[2]);
}
//----------------------------------------------------------------------------
void vtkImageStencilData::AllocateExtents()
{
int extent[6];
this->GetExtent(extent);
int numEntries = (extent[3] - extent[2] + 1)*(extent[5] - extent[4] + 1);
if (numEntries != this->NumberOfExtentEntries)
{
if (this->NumberOfExtentEntries != 0)
{
int n = this->NumberOfExtentEntries;
for (int i = 0; i < n; i++)
{
delete [] this->ExtentLists[i];
}
delete [] this->ExtentLists;
delete [] this->ExtentListLengths;
}
this->NumberOfExtentEntries = numEntries;
this->ExtentLists = NULL;
this->ExtentListLengths = NULL;
if (numEntries)
{
this->ExtentLists = new int *[numEntries];
this->ExtentListLengths = new int[numEntries];
for (int i = 0; i < numEntries; i++)
{
this->ExtentListLengths[i] = 0;
this->ExtentLists[i] = NULL;
}
}
}
else
{
for (int i = 0; i < numEntries; i++)
{
if (this->ExtentListLengths[i] != 0)
{
this->ExtentListLengths[i] = 0;
delete this->ExtentLists[i];
this->ExtentLists[i] = NULL;
}
}
}
}
//----------------------------------------------------------------------------
// Given the output x extent [rmin,rmax] and the current y, z indices,
// return the sub extents [r1,r2] for which transformation/interpolation
// are to be done. The variable 'iter' should be initialized to zero
// before the first call. The return value is zero if there are no
// extents remaining.
int vtkImageStencilData::GetNextExtent(int &r1, int &r2,
int rmin, int rmax,
int yIdx, int zIdx, int &iter)
{
int extent[6];
this->GetExtent(extent);
int yExt = extent[3] - extent[2] + 1;
int zExt = extent[5] - extent[4] + 1;
yIdx -= extent[2];
zIdx -= extent[4];
// initialize r1, r2 to defaults
r1 = rmax + 1;
r2 = rmax;
if (yIdx < 0 || yIdx >= yExt || zIdx < 0 || zIdx >= zExt)
{ // out-of-bounds in y or z, use null extent
return 0;
}
// get the ExtentList and ExtentListLength for this yIdx,zIdx
int incr = zIdx*yExt + yIdx;
int *clist = this->ExtentLists[incr];
int clistlen = this->ExtentListLengths[incr];
if (iter <= 0)
{
int state = 1; // start outside
if (iter < 0) // unless iter is negative at start
{
iter = 0;
state = -1;
}
r1 = VTK_INT_MIN;
for ( ; iter < clistlen; iter++)
{
if (clist[iter] >= rmin)
{
if (state > 0)
{
r1 = clist[iter++];
}
break;
}
state = -state;
}
if (r1 == VTK_INT_MIN)
{
r1 = rmin;
if (state > 0)
{
r1 = rmax + 1;
}
}
}
else
{
if (iter >= clistlen)
{
return 0;
}
r1 = clist[iter++];
}
if (r1 > rmax)
{
r1 = rmax + 1;
return 0;
}
if (iter >= clistlen)
{
return 1;
}
r2 = clist[iter++] - 1;
if (r2 > rmax)
{
r2 = rmax;
}
return 1;
}
//----------------------------------------------------------------------------
// Insert a sub extent [r1,r2] on to the list for the x row at (yIdx,zIdx).
void vtkImageStencilData::InsertNextExtent(int r1, int r2, int yIdx, int zIdx)
{
// calculate the index into the extent array
int extent[6];
this->GetExtent(extent);
int yExt = extent[3] - extent[2] + 1;
int incr = (zIdx - extent[4])*yExt + (yIdx - extent[2]);
int &clistlen = this->ExtentListLengths[incr];
int *&clist = this->ExtentLists[incr];
if (clistlen == 0)
{ // no space has been allocated yet
clist = new int[2];
}
else
{ // check whether more space is needed
// the allocated space is always the smallest power of two
// that is not less than the number of stored items, therefore
// we need to allocate space when clistlen is a power of two
int clistmaxlen = 2;
while (clistlen > clistmaxlen)
{
clistmaxlen *= 2;
}
if (clistmaxlen == clistlen)
{ // need to allocate more space
clistmaxlen *= 2;
int *newclist = new int[clistmaxlen];
for (int k = 0; k < clistlen; k++)
{
newclist[k] = clist[k];
}
delete [] clist;
clist = newclist;
}
}
clist[clistlen++] = r1;
clist[clistlen++] = r2 + 1;
}
//----------------------------------------------------------------------------
vtkImageStencilData* vtkImageStencilData::GetData(vtkInformation* info)
{
return info? vtkImageStencilData::SafeDownCast(info->Get(DATA_OBJECT())) : 0;
}
//----------------------------------------------------------------------------
vtkImageStencilData* vtkImageStencilData::GetData(vtkInformationVector* v,
int i)
{
return vtkImageStencilData::GetData(v->GetInformationObject(i));
}
|