You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.8 KiB
C++
99 lines
2.8 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkImageConnector.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.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkImageConnector
|
|
* @brief Create a binary image of a sphere.
|
|
*
|
|
* vtkImageConnector is a helper class for connectivity filters.
|
|
* It is not meant to be used directly.
|
|
* It implements a stack and breadth first search necessary for
|
|
* some connectivity filters. Filtered axes sets the dimensionality
|
|
* of the neighbor comparison, and
|
|
* cannot be more than three dimensions.
|
|
* As implemented, only voxels which share faces are considered
|
|
* neighbors.
|
|
*/
|
|
|
|
#ifndef vtkImageConnector_h
|
|
#define vtkImageConnector_h
|
|
|
|
#include "vtkImagingMorphologicalModule.h" // For export macro
|
|
#include "vtkObject.h"
|
|
|
|
class vtkImageData;
|
|
|
|
//
|
|
// Special classes for manipulating data
|
|
//
|
|
// For the breadth first search
|
|
class vtkImageConnectorSeed
|
|
{ //;prevent man page generation
|
|
public:
|
|
static vtkImageConnectorSeed* New() { return new vtkImageConnectorSeed; }
|
|
void* Pointer;
|
|
int Index[3];
|
|
vtkImageConnectorSeed* Next;
|
|
};
|
|
|
|
class VTKIMAGINGMORPHOLOGICAL_EXPORT vtkImageConnector : public vtkObject
|
|
{
|
|
public:
|
|
static vtkImageConnector* New();
|
|
|
|
vtkTypeMacro(vtkImageConnector, vtkObject);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
vtkImageConnectorSeed* NewSeed(int index[3], void* ptr);
|
|
void AddSeed(vtkImageConnectorSeed* seed);
|
|
void AddSeedToEnd(vtkImageConnectorSeed* seed);
|
|
|
|
void RemoveAllSeeds();
|
|
|
|
//@{
|
|
/**
|
|
* Values used by the MarkRegion method
|
|
*/
|
|
vtkSetMacro(ConnectedValue, unsigned char);
|
|
vtkGetMacro(ConnectedValue, unsigned char);
|
|
vtkSetMacro(UnconnectedValue, unsigned char);
|
|
vtkGetMacro(UnconnectedValue, unsigned char);
|
|
//@}
|
|
|
|
/**
|
|
* Input a data of 0's and "UnconnectedValue"s. Seeds of this object are
|
|
* used to find connected pixels. All pixels connected to seeds are set to
|
|
* ConnectedValue. The data has to be unsigned char.
|
|
*/
|
|
void MarkData(vtkImageData* data, int dimensionality, int ext[6]);
|
|
|
|
protected:
|
|
vtkImageConnector();
|
|
~vtkImageConnector() override;
|
|
|
|
unsigned char ConnectedValue;
|
|
unsigned char UnconnectedValue;
|
|
|
|
vtkImageConnectorSeed* PopSeed();
|
|
|
|
vtkImageConnectorSeed* Seeds;
|
|
vtkImageConnectorSeed* LastSeed;
|
|
|
|
private:
|
|
vtkImageConnector(const vtkImageConnector&) = delete;
|
|
void operator=(const vtkImageConnector&) = delete;
|
|
};
|
|
|
|
#endif
|