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 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkConnectedComponentImageFilter.txx,v $
Language: C++
Date: $Date: 2007-09-05 15:43:34 $
Version: $Revision: 1.22 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/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 notices for more information.
=========================================================================*/
#ifndef __itkConnectedComponentImageFilter_txx
#define __itkConnectedComponentImageFilter_txx
#include "itkConnectedComponentImageFilter.h"
#include "itkNumericTraits.h"
// don't think we need the indexed version as we only compute the
// index at the start of each run, but there isn't a choice
#include "itkImageLinearConstIteratorWithIndex.h"
#include "itkConstShapedNeighborhoodIterator.h"
#include "itkImageRegionIterator.h"
#include "itkMaskImageFilter.h"
#include "itkConnectedComponentAlgorithm.h"
namespace itk
{
template< class TInputImage, class TOutputImage, class TMaskImage >
void
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage >
::GenerateInputRequestedRegion()
{
// call the superclass' implementation of this method
Superclass::GenerateInputRequestedRegion();
// We need all the input.
InputImagePointer input = const_cast<InputImageType *>(this->GetInput());
if( !input )
{
return;
}
input->SetRequestedRegion( input->GetLargestPossibleRegion() );
MaskImagePointer mask = const_cast<MaskImageType *>(this->GetMaskImage());
if (mask)
{
mask->SetRequestedRegion( input->GetLargestPossibleRegion() );
}
}
template< class TInputImage, class TOutputImage, class TMaskImage >
void
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::EnlargeOutputRequestedRegion(DataObject *)
{
this->GetOutput()
->SetRequestedRegion( this->GetOutput()->GetLargestPossibleRegion() );
}
template< class TInputImage, class TOutputImage, class TMaskImage >
void
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::GenerateData()
{
// create a line iterator
typedef itk::ImageLinearConstIteratorWithIndex<InputImageType>
InputLineIteratorType;
typename TOutputImage::Pointer output = this->GetOutput();
typename TInputImage::ConstPointer input = this->GetInput();
typename TMaskImage::ConstPointer mask = this->GetMaskImage();
typedef MaskImageFilter< TInputImage, TMaskImage, TInputImage >
MaskFilterType;
typename MaskFilterType::Pointer maskFilter = MaskFilterType::New();
if( mask )
{
maskFilter->SetInput( input );
maskFilter->SetInput2( mask );
maskFilter->Update();
input = maskFilter->GetOutput();
}
long LineIdx = 0;
InputLineIteratorType inLineIt(input, output->GetRequestedRegion());
inLineIt.SetDirection(0);
LineMapType LineMap;
// Allocate the output
this->AllocateOutputs();
long int lab = NumericTraits<long int>::Zero;
OffsetVec LineOffsets;
// set the progress reporter to deal with the number of lines
long pixelcount = this->GetOutput()->GetRequestedRegion().GetNumberOfPixels();
long xsize = this->GetOutput()->GetRequestedRegion().GetSize()[0];
long linecount = pixelcount/xsize;
ProgressReporter progress(this, 0, linecount * 2);
SetupLineOffsets(LineOffsets);
for( inLineIt.GoToBegin();
!inLineIt.IsAtEnd();
inLineIt.NextLine(), ++LineIdx)
{
inLineIt.GoToBeginOfLine();
lineEncoding ThisLine;
while (! inLineIt.IsAtEndOfLine())
{
InputPixelType PVal = inLineIt.Get();
//std::cout << inLineIt.GetIndex() << std::endl;
if (PVal != NumericTraits<InputPixelType>::Zero)
{
// We've hit the start of a run
runLength thisRun;
long length=0;
IndexType thisIndex;
++lab;
thisIndex = inLineIt.GetIndex();
//std::cout << thisIndex << std::endl;
++length;
++inLineIt;
while( !inLineIt.IsAtEndOfLine()
&& inLineIt.Get() != NumericTraits<InputPixelType>::Zero )
{
++length;
++inLineIt;
}
// create the run length object to go in the vector
thisRun.length=length;
thisRun.label=lab;
thisRun.where = thisIndex;
ThisLine.push_back(thisRun);
}
else
{
++inLineIt;
}
}
if (ThisLine.size() != 0)
{
//
// There are some runs on this line, so insert it into the map.
// This conditional insertion "breaks" the full progress report - because
// of it, the report will not be 1.0 at the end of the execution if some
// lines are empty - but with it, the computation time decrease from
// 0.059922 s to 0.0452819 s on the test image
// http://voxel.jouy.inra.fr/darcs/contrib-itk/watershed/images/ESCells-markers.tif
//
LineMap[LineIdx] = ThisLine;
}
progress.CompletedPixel();
}
// set up the union find structure
InitUnion(lab);
// insert all the labels into the structure -- an extra loop but
// saves complicating the ones that come later
for (long pp = 1; pp <= lab; pp++)
{
InsertSet(pp);
}
// now process the map and make appropriate entries in an equivalence
// table
typename LineMapType::iterator MapBegin, MapEnd, LineIt;
MapBegin = LineMap.begin();
MapEnd = LineMap.end();
LineIt = MapBegin;
//while( LineIt != MapEnd)
for (LineIt = MapBegin; LineIt != MapEnd; ++LineIt)
{
//lineEncoding L = LineIt->second;
long ThisIdx = LineIt->first;
//std::cout << "Line number = " << LineIt->first << std::endl;
for (OffsetVec::const_iterator I = LineOffsets.begin();
I != LineOffsets.end(); ++I)
{
long NeighIdx = ThisIdx + (*I);
// check if the neighbor is in the map
typename LineMapType::const_iterator NN = LineMap.find(NeighIdx);
if (NN != MapEnd)
{
// Now check whether they are really neighbors
bool areNeighbors
= CheckNeighbors(LineIt->second[0].where, NN->second[0].where);
if (areNeighbors)
{
// Compare the two lines
CompareLines(LineIt->second, NN->second);
}
}
}
}
unsigned long int totalLabs = CreateConsecutive();
m_ObjectCount = totalLabs;
// check for overflow exception here
if( totalLabs > static_cast<unsigned long int>(
NumericTraits<OutputPixelType>::max() ) )
{
itkExceptionMacro(
<< "Number of objects greater than maximum of output pixel type " );
}
// create the output
// A more complex version that is intended to minimize the number of
// visits to the output image which should improve cache
// performance on large images. We also want to optimize the
// performance of the map by being able to iterate through it,
// rather than do lots of look ups. Don't know whether that will
// make much difference in practice.
// Note - this is unnecessary if AllocateOutputs initalizes to zero
FillOutput(LineMap, progress);
}
template< class TInputImage, class TOutputImage, class TMaskImage >
void
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::SetupLineOffsets(OffsetVec &LineOffsets)
{
// Create a neighborhood so that we can generate a table of offsets
// to "previous" line indexes
// We are going to mis-use the neighborhood iterators to compute the
// offset for us. All this messing around produces an array of
// offsets that will be used to index the map
typename TOutputImage::Pointer output = this->GetOutput();
typedef Image<long, TOutputImage::ImageDimension - 1> PretendImageType;
typedef typename PretendImageType::RegionType::SizeType PretendSizeType;
typedef typename PretendImageType::RegionType::IndexType PretendIndexType;
typedef ConstShapedNeighborhoodIterator<PretendImageType>
LineNeighborhoodType;
typename PretendImageType::Pointer fakeImage;
fakeImage = PretendImageType::New();
typename PretendImageType::RegionType LineRegion;
//LineRegion = PretendImageType::RegionType::New();
OutSizeType OutSize = output->GetRequestedRegion().GetSize();
PretendSizeType PretendSize;
// The first dimension has been collapsed
for (unsigned int i = 0; i<PretendSize.GetSizeDimension(); i++)
{
PretendSize[i] = OutSize[i+1];
}
LineRegion.SetSize(PretendSize);
fakeImage->SetRegions( LineRegion );
PretendSizeType kernelRadius;
kernelRadius.Fill(1);
LineNeighborhoodType lnit(kernelRadius, fakeImage, LineRegion);
// only activate the indices that are "previous" to the current
// pixel and face connected (exclude the center pixel from the
// neighborhood)
//
setConnectivityPrevious( &lnit, m_FullyConnected );
typename LineNeighborhoodType::IndexListType ActiveIndexes;
ActiveIndexes = lnit.GetActiveIndexList();
typename LineNeighborhoodType::IndexListType::const_iterator LI;
PretendIndexType idx = LineRegion.GetIndex();
long offset = fakeImage->ComputeOffset( idx );
for (LI=ActiveIndexes.begin(); LI != ActiveIndexes.end(); LI++)
{
LineOffsets.push_back( fakeImage->ComputeOffset( idx + lnit.GetOffset( *LI ) ) - offset );
}
// LineOffsets is the thing we wanted.
}
template< class TInputImage, class TOutputImage, class TMaskImage >
bool
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::CheckNeighbors(const OutputIndexType &A,
const OutputIndexType &B)
{
// this checks whether the line encodings are really neighbors. The
// first dimension gets ignored because the encodings are along that
// axis
OutputOffsetType Off = A - B;
for (unsigned i = 1; i < OutputImageDimension; i++)
{
if (abs(Off[i]) > 1)
{
return(false);
}
}
return(true);
}
template< class TInputImage, class TOutputImage, class TMaskImage >
void
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::CompareLines(lineEncoding ¤t, const lineEncoding &Neighbour)
{
long offset = 0;
if (m_FullyConnected)
{
offset = 1;
}
typename lineEncoding::const_iterator nIt, mIt;
typename lineEncoding::iterator cIt;
mIt = Neighbour.begin(); // out marker iterator
for (cIt = current.begin();cIt != current.end();++cIt)
{
//runLength cL = *cIt;
long cStart = cIt->where[0]; // the start x position
long cLast = cStart + cIt->length - 1;
for (nIt=mIt; nIt != Neighbour.end(); ++nIt)
{
//runLength nL = *nIt;
long nStart = nIt->where[0];
long nLast = nStart + nIt->length - 1;
// there are a few ways that neighbouring lines might overlap
// neighbor S E
// current S E
//------------------------------------------
// neighbor S E
// current S E
//------------------------------------------
// neighbor S E
// current S E
//------------------------------------------
// neighbor S E
// current S E
//------------------------------------------
long ss1 = nStart - offset;
// long ss2 = nStart + offset;
long ee1 = nLast - offset;
long ee2 = nLast + offset;
bool eq = false;
// the logic here can probably be improved a lot
if ((ss1 >= cStart) && (ee2 <= cLast))
{
// case 1
eq = true;
}
else
{
if ((ss1 <= cLast) && (ee2 >= cLast))
{
// case 2
eq = true;
}
else
{
if ((ss1 <= cStart) && (ee2 >= cStart))
{
// case 3
eq = true;
}
else
{
if ((ss1 <= cStart) && (ee2 >= cLast))
{
// case 4
eq = true;
}
}
}
}
if (eq)
{
LinkLabels(nIt->label, cIt->label);
}
if (ee1 >= cLast)
{
// No point looking for more overlaps with the current run
// because the neighbor run is either case 2 or 4
mIt = nIt;
break;
}
}
}
}
template< class TInputImage, class TOutputImage, class TMaskImage >
void
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::FillOutput(const LineMapType &LineMap,
ProgressReporter &progress)
{
typename LineMapType::const_iterator MapBegin, MapEnd, LineIt;
typename TOutputImage::Pointer output = this->GetOutput();
MapBegin = LineMap.begin();
MapEnd = LineMap.end();
LineIt = MapBegin;
ImageRegionIterator<OutputImageType> oit(output,
output->GetRequestedRegion());
ImageRegionIterator<OutputImageType> fstart=oit, fend=oit;
fstart.GoToBegin();
fend.GoToEnd();
for (LineIt = MapBegin; LineIt != MapEnd; ++LineIt)
{
// now fill the labelled sections
typename lineEncoding::const_iterator cIt;
//std::cout << LineIt->first << std::endl;
for (cIt = LineIt->second.begin();cIt != LineIt->second.end();++cIt)
{
unsigned long Ilab = LookupSet( cIt->label);
OutputPixelType lab = m_Consecutive[Ilab];
oit.SetIndex(cIt->where);
// initialize the non labelled pixels
for (; fstart != oit; ++fstart)
{
fstart.Set(NumericTraits<OutputPixelType>::Zero );
}
for (long i = 0; i < cIt->length; ++i, ++oit)
{
oit.Set(lab);
}
fstart = oit;
//++fstart;
}
progress.CompletedPixel();
}
// fill the rest of the image with zeros
for (; fstart != fend; ++fstart)
{
fstart.Set(NumericTraits<OutputPixelType>::Zero );
}
}
// union find related functions
template< class TInputImage, class TOutputImage, class TMaskImage >
void
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::InsertSet(const unsigned long int label)
{
m_UnionFind[label]=label;
}
template< class TInputImage, class TOutputImage, class TMaskImage >
unsigned long int
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::CreateConsecutive()
{
m_Consecutive = UnionFindType(m_UnionFind.size());
m_Consecutive[0] = 0;
unsigned long int CLab = 0;
for (unsigned long int I = 1; I < m_UnionFind.size(); I++)
{
unsigned long int L = m_UnionFind[I];
if (L == I)
{
++CLab;
m_Consecutive[L] = CLab;
}
}
return(CLab);
}
template< class TInputImage, class TOutputImage, class TMaskImage >
unsigned long int
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::LookupSet(const unsigned long int label)
{
// recursively set the equivalence if necessary
if (label != m_UnionFind[label])
{
m_UnionFind[label] = this->LookupSet(m_UnionFind[label]);
}
return(m_UnionFind[label]);
}
template< class TInputImage, class TOutputImage, class TMaskImage >
void
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::LinkLabels(const unsigned long int lab1, const unsigned long int lab2)
{
unsigned long E1 = this->LookupSet(lab1);
unsigned long E2 = this->LookupSet(lab2);
if (E1 < E2)
{
m_UnionFind[E2] = E1;
}
else
{
m_UnionFind[E1] = E2;
}
}
template< class TInputImage, class TOutputImage, class TMaskImage >
void
ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage>
::PrintSelf(std::ostream& os, Indent indent) const
{
Superclass::PrintSelf(os,indent);
os << indent << "FullyConnected: " << m_FullyConnected << std::endl;
os << indent << "ObjectCount: " << m_ObjectCount << std::endl;
}
} // end namespace itk
#endif
|