Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
Data structure which stores a set of points. Superclass of mitk::Mesh. More...
#include <mitkPointSet.h>
Classes | |
struct | CellDataType |
struct | PointDataType |
struct for data of a point More... | |
Public Types | |
typedef PointSet | Self |
typedef BaseData | Superclass |
typedef itk::SmartPointer< Self > | Pointer |
typedef itk::SmartPointer< const Self > | ConstPointer |
typedef mitk::ScalarType | CoordinateType |
typedef mitk::ScalarType | InterpolationWeightType |
typedef std::vector< unsigned int > | SelectedLinesType |
cellDataType, that stores all indexes of the lines, that are selected e.g.: points A,B and C.Between A and B there is a line with index 0. If vector of cellData contains 1 and 2, then the lines between B and C and C and A is selected. More... | |
typedef SelectedLinesType::iterator | SelectedLinesIter |
typedef itk::DefaultDynamicMeshTraits< PointDataType, PointDimension, MaxTopologicalDimension, CoordinateType, InterpolationWeightType, CellDataType > | MeshTraits |
typedef itk::Mesh< PointDataType, PointDimension, MeshTraits > | MeshType |
typedef MeshType | DataType |
typedef Point3D | PointType |
typedef DataType::PointIdentifier | PointIdentifier |
typedef DataType::PointsContainer | PointsContainer |
typedef DataType::PointsContainerIterator | PointsIterator |
typedef DataType::PointsContainer::ConstIterator | PointsConstIterator |
typedef DataType::PointDataContainer | PointDataContainer |
typedef DataType::PointDataContainerIterator | PointDataIterator |
typedef DataType::PointDataContainerIterator | PointDataConstIterator |
Public Types inherited from mitk::BaseData | |
typedef BaseData | Self |
typedef itk::DataObject | Superclass |
typedef itk::SmartPointer< Self > | Pointer |
typedef itk::SmartPointer< const Self > | ConstPointer |
Public Member Functions | |
virtual std::vector< std::string > | GetClassHierarchy () const override |
virtual const char * | GetClassName () const |
Pointer | Clone () const |
virtual void | Expand (unsigned int timeSteps) override |
Expands the TimeGeometry to a number of TimeSteps. More... | |
virtual void | ExecuteOperation (Operation *operation) override |
executes the given Operation More... | |
virtual int | GetSize (unsigned int t=0) const |
returns the current size of the point-list More... | |
virtual unsigned int | GetPointSetSeriesSize () const |
virtual DataType::Pointer | GetPointSet (int t=0) const |
returns the pointset More... | |
PointsIterator | Begin (int t=0) |
PointsConstIterator | Begin (int t=0) const |
PointsIterator | End (int t=0) |
PointsConstIterator | End (int t=0) const |
PointsIterator | GetMaxId (int t=0) |
Get an iterator to the max ID element if existent. Return End() otherwise. More... | |
PointType | GetPoint (PointIdentifier id, int t=0) const |
Get the point with ID id in world coordinates. More... | |
bool | GetPointIfExists (PointIdentifier id, PointType *point, int t=0) const |
Get the point with ID id in world coordinates. More... | |
void | SetPoint (PointIdentifier id, PointType point, int t=0) |
Set the given point in world coordinate system into the itkPointSet. More... | |
void | SetPoint (PointIdentifier id, PointType point, PointSpecificationType spec, int t=0) |
Set the given point in world coordinate system with the given PointSpecificationType. More... | |
void | InsertPoint (PointIdentifier id, PointType point, int t=0) |
Set the given point in world coordinate system into the itkPointSet. More... | |
void | InsertPoint (PointIdentifier id, PointType point, PointSpecificationType spec, int t) |
Set the given point in world coordinate system with given PointSpecificationType. More... | |
PointIdentifier | InsertPoint (PointType point, int t=0) |
Insert the given point in world coordinate system with incremented max id at time step t. More... | |
bool | RemovePointIfExists (PointIdentifier id, int t=0) |
Remove point with given id at timestep t, if existent. More... | |
PointsIterator | RemovePointAtEnd (int t=0) |
Remove max id point at timestep t and return iterator to precedent point. More... | |
bool | SwapPointPosition (PointIdentifier id, bool moveUpwards, int t=0) |
Swap a point at the given position (id) with the upper point (moveUpwards=true) or with the lower point (moveUpwards=false). If upper or lower index does not exist false is returned, if swap was successful true. More... | |
virtual int | SearchSelectedPoint (int t=0) const |
searches a selected point and returns the id of that point. If no point is found, then -1 is returned More... | |
virtual bool | IndexExists (int position, int t=0) const |
returns true if a point exists at this position More... | |
virtual bool | GetSelectInfo (int position, int t=0) const |
to get the state selected/unselected of the point on the position More... | |
virtual void | SetSelectInfo (int position, bool selected, int t=0) |
virtual PointSpecificationType | GetSpecificationTypeInfo (int position, int t) const |
to get the type of the point at the position and the moment More... | |
virtual int | GetNumberOfSelected (int t=0) const |
returns the number of selected points More... | |
int | SearchPoint (Point3D point, ScalarType distance, int t=0) const |
searches a point in the list == point +/- distance More... | |
virtual bool | IsEmptyTimeStep (unsigned int t) const override |
Check whether object contains data (at a specified time), e.g., a set of points may be empty. More... | |
virtual void | UpdateOutputInformation () override |
virtual void | SetRequestedRegionToLargestPossibleRegion () override |
Set the RequestedRegion to the LargestPossibleRegion. More... | |
virtual bool | RequestedRegionIsOutsideOfTheBufferedRegion () override |
Determine whether the RequestedRegion is outside of the BufferedRegion. More... | |
virtual bool | VerifyRequestedRegion () override |
Verify that the RequestedRegion is within the LargestPossibleRegion. More... | |
virtual void | SetRequestedRegion (const itk::DataObject *data) override |
Set the requested region from this data object to match the requested region of the data object passed in as a parameter. More... | |
virtual void | OnPointSetChange () |
Public Member Functions inherited from mitk::BaseData | |
const mitk::TimeGeometry * | GetTimeGeometry () const |
Return the TimeGeometry of the data as const pointer. More... | |
const mitk::TimeGeometry * | GetTimeSlicedGeometry () const |
Return the TimeGeometry of the data as const pointer. More... | |
mitk::TimeGeometry * | GetTimeGeometry () |
Return the TimeGeometry of the data as pointer. More... | |
const mitk::TimeGeometry * | GetUpdatedTimeGeometry () |
Return the TimeGeometry of the data. More... | |
const mitk::TimeGeometry * | GetUpdatedTimeSliceGeometry () |
Return the TimeGeometry of the data. More... | |
const mitk::BaseGeometry * | GetUpdatedGeometry (int t=0) |
Return the BaseGeometry of the data at time t. More... | |
mitk::BaseGeometry * | GetGeometry (int t=0) const |
Return the geometry, which is a TimeGeometry, of the data as non-const pointer. More... | |
void | UpdateOutputInformation () override |
Update the information for this BaseData (the geometry in particular) so that it can be used as an output of a BaseProcess. More... | |
void | CopyInformation (const itk::DataObject *data) override |
Copy information from the specified data set. More... | |
virtual bool | IsInitialized () const |
Check whether the data has been initialized, i.e., at least the Geometry and other header data has been set. More... | |
virtual void | Clear () |
Calls ClearData() and InitializeEmpty();. More... | |
virtual bool | IsEmpty () const |
Check whether object contains data (at least at one point in time), e.g., a set of points may be empty. More... | |
virtual void | SetGeometry (BaseGeometry *aGeometry3D) |
Set the BaseGeometry of the data, which will be referenced (not copied!). Assumes the data object has only 1 time step ( is a 3D object ) and creates a new TimeGeometry which saves the given BaseGeometry. If an TimeGeometry has already been set for the object, it will be replaced after calling this function. More... | |
virtual void | SetTimeGeometry (TimeGeometry *geometry) |
Set the TimeGeometry of the data, which will be referenced (not copied!). More... | |
virtual void | SetClonedGeometry (const BaseGeometry *aGeometry3D) |
Set a clone of the provided TimeGeometry as TimeGeometry of the data. Assumes the data object has only 1 time step ( is a 3D object ) and creates a new TimeGeometry. If an TimeGeometry has already been set for the object, it will be replaced after calling this function. More... | |
virtual void | SetClonedTimeGeometry (const TimeGeometry *geometry) |
Set a clone of the provided TimeGeometry as TimeGeometry of the data. More... | |
virtual void | SetClonedGeometry (const BaseGeometry *aGeometry3D, unsigned int time) |
Set a clone of the provided geometry as BaseGeometry of a given time step. More... | |
mitk::PropertyList::Pointer | GetPropertyList () const |
Get the data's property list. More... | |
void | SetPropertyList (PropertyList *propertyList) |
Set the data's property list. More... | |
mitk::BaseProperty::Pointer | GetProperty (const char *propertyKey) const |
Get the property (instance of BaseProperty) with key propertyKey from the PropertyList, and set it to this, respectively;. More... | |
void | SetProperty (const char *propertyKey, BaseProperty *property) |
virtual void | SetOrigin (const Point3D &origin) |
Convenience method for setting the origin of the BaseGeometry instances of all time steps. More... | |
itk::SmartPointer< mitk::BaseDataSource > | GetSource () const |
Get the process object that generated this data object. More... | |
unsigned int | GetTimeSteps () const |
Get the number of time steps from the TimeGeometry As the base data has not a data vector given by itself, the number of time steps is defined over the time sliced geometry. In sub classes, a better implementation could be over the length of the data vector. More... | |
virtual unsigned long | GetMTime () const override |
Get the modified time of the last change of the contents this data object or its geometry. More... | |
virtual void | Graft (const DataObject *) override |
Public Member Functions inherited from mitk::OperationActor | |
itkTypeMacroNoParent (OperationActor) virtual ~OperationActor() | |
Static Public Member Functions | |
static const char * | GetStaticNameOfClass () |
static Pointer | New () |
Static Public Member Functions inherited from mitk::BaseData | |
static const char * | GetStaticNameOfClass () |
Static Public Attributes | |
static const unsigned int | PointDimension |
static const unsigned int | MaxTopologicalDimension |
Protected Types | |
typedef std::vector< DataType::Pointer > | PointSetSeries |
Protected Member Functions | |
virtual itk::LightObject::Pointer | InternalClone () const override |
PointSet () | |
PointSet (const PointSet &other) | |
virtual | ~PointSet () |
virtual void | PrintSelf (std::ostream &os, itk::Indent indent) const override |
print content of the object to os More... | |
virtual void | ClearData () override |
reset to non-initialized state, release memory More... | |
virtual void | InitializeEmpty () override |
Pure virtual; Must be used in subclasses to get a data object to a valid state. Should at least create one empty object and call Superclass::InitializeTimeGeometry() to ensure an existing valid geometry. More... | |
bool | SwapPointContents (PointIdentifier id1, PointIdentifier id2, int t=0) |
swaps point coordinates and point data of the points with identifiers id1 and id2 More... | |
Protected Member Functions inherited from mitk::BaseData | |
BaseData () | |
BaseData (const BaseData &other) | |
~BaseData () | |
virtual void | InitializeTimeGeometry (unsigned int timeSteps=1) |
Initialize the TimeGeometry for a number of time steps. The TimeGeometry is initialized empty and evenly timed. In many cases it will be necessary to overwrite this in sub-classes. More... | |
virtual void | InitializeTimeSlicedGeometry (unsigned int timeSteps=1) |
Initialize the TimeGeometry for a number of time steps. The TimeGeometry is initialized empty and evenly timed. In many cases it will be necessary to overwrite this in sub-classes. More... | |
Protected Attributes | |
PointSetSeries | m_PointSetSeries |
DataType::PointsContainer::Pointer | m_EmptyPointsContainer |
bool | m_CalculateBoundingBox |
flag to indicate the right time to call SetBounds More... | |
Protected Attributes inherited from mitk::BaseData | |
bool | m_LastRequestedRegionWasOutsideOfTheBufferedRegion |
unsigned int | m_SourceOutputIndexDuplicate |
bool | m_Initialized |
Data structure which stores a set of points. Superclass of mitk::Mesh.
3D points are grouped within a point set; for time resolved usage, one point set is created and maintained per time step. A point entry consists of the point coordinates and point data.
The point data includes a point ID (unique identifier to address this point within the point set), the selection state of the point and the type of the point.
For further information about different point types see mitk::PointSpecificationType in mitkVector.h.
Inserting a point is accompanied by an event, containing an index. The new point is inserted into the list at the specified position. At the same time an internal ID is generated and stored for the point. Points at specific time steps are accessed by specifying the time step number (which defaults to 0).
The points of itk::PointSet stores the points in a pointContainer (MapContainer). The points are best accessed by using a ConstIterator (as defined in MapContainer); avoid access via index.
The class internally uses an itk::Mesh for each time step, because mitk::Mesh is derived from mitk::PointSet and needs the itk::Mesh structure which is also derived from itk::PointSet. Thus several typedefs which seem to be in wrong place, are declared here (for example SelectedLinesType).
The default mappers for this data structure are mitk::PointSetGLMapper2D and mitk::PointSetVtkMapper3D. See these classes for display options which can can be set via properties.
PointSet issues the following events, for which observers can register (the below events are grouped into a class hierarchy as indicated by identation level; e.g. PointSetSizeChangeEvent comprises PointSetAddEvent and PointSetRemoveEvent):
PointSetEvent subsumes all PointSet events PointSetMoveEvent issued when a point of the PointSet is moved PointSetSizeChangeEvent subsumes add and remove events PointSetAddEvent issued when a point is added to the PointSet PointSetRemoveEvent issued when a point is removed from the PointSet
Definition at line 79 of file mitkPointSet.h.
typedef itk::SmartPointer<const Self> mitk::PointSet::ConstPointer |
Definition at line 82 of file mitkPointSet.h.
Definition at line 86 of file mitkPointSet.h.
typedef MeshType mitk::PointSet::DataType |
Definition at line 133 of file mitkPointSet.h.
Definition at line 87 of file mitkPointSet.h.
typedef itk::DefaultDynamicMeshTraits<PointDataType, PointDimension, MaxTopologicalDimension, CoordinateType, InterpolationWeightType, CellDataType> mitk::PointSet::MeshTraits |
Definition at line 130 of file mitkPointSet.h.
typedef itk::Mesh<PointDataType, PointDimension, MeshTraits> mitk::PointSet::MeshType |
Definition at line 131 of file mitkPointSet.h.
typedef DataType::PointDataContainerIterator mitk::PointSet::PointDataConstIterator |
Definition at line 141 of file mitkPointSet.h.
typedef DataType::PointDataContainer mitk::PointSet::PointDataContainer |
Definition at line 139 of file mitkPointSet.h.
typedef DataType::PointDataContainerIterator mitk::PointSet::PointDataIterator |
Definition at line 140 of file mitkPointSet.h.
typedef itk::SmartPointer<Self> mitk::PointSet::Pointer |
Definition at line 82 of file mitkPointSet.h.
typedef DataType::PointIdentifier mitk::PointSet::PointIdentifier |
Definition at line 135 of file mitkPointSet.h.
typedef DataType::PointsContainer::ConstIterator mitk::PointSet::PointsConstIterator |
Definition at line 138 of file mitkPointSet.h.
typedef DataType::PointsContainer mitk::PointSet::PointsContainer |
Definition at line 136 of file mitkPointSet.h.
|
protected |
Definition at line 286 of file mitkPointSet.h.
typedef DataType::PointsContainerIterator mitk::PointSet::PointsIterator |
Definition at line 137 of file mitkPointSet.h.
typedef Point3D mitk::PointSet::PointType |
Definition at line 134 of file mitkPointSet.h.
typedef SelectedLinesType::iterator mitk::PointSet::SelectedLinesIter |
Definition at line 111 of file mitkPointSet.h.
typedef std::vector<unsigned int> mitk::PointSet::SelectedLinesType |
cellDataType, that stores all indexes of the lines, that are selected e.g.: points A,B and C.Between A and B there is a line with index 0. If vector of cellData contains 1 and 2, then the lines between B and C and C and A is selected.
Definition at line 110 of file mitkPointSet.h.
typedef PointSet mitk::PointSet::Self |
Definition at line 82 of file mitkPointSet.h.
typedef BaseData mitk::PointSet::Superclass |
Definition at line 82 of file mitkPointSet.h.
|
protected |
Definition at line 24 of file mitkPointSet.cpp.
References InitializeEmpty().
|
protected |
Definition at line 29 of file mitkPointSet.cpp.
References Begin(), End(), GetPointSet(), m_PointSetSeries, and mitk::New().
|
protectedvirtual |
Definition at line 50 of file mitkPointSet.cpp.
mitk::PointSet::PointsIterator mitk::PointSet::Begin | ( | int | t = 0 | ) |
Definition at line 141 of file mitkPointSet.cpp.
Referenced by mitk::Equal(), and PointSet().
mitk::PointSet::PointsConstIterator mitk::PointSet::Begin | ( | int | t = 0 | ) | const |
Definition at line 150 of file mitkPointSet.cpp.
|
overrideprotectedvirtual |
reset to non-initialized state, release memory
Reimplemented from mitk::BaseData.
Definition at line 55 of file mitkPointSet.cpp.
Pointer mitk::PointSet::Clone | ( | ) | const |
mitk::PointSet::PointsIterator mitk::PointSet::End | ( | int | t = 0 | ) |
Definition at line 159 of file mitkPointSet.cpp.
Referenced by mitk::Equal(), and PointSet().
mitk::PointSet::PointsConstIterator mitk::PointSet::End | ( | int | t = 0 | ) | const |
Definition at line 168 of file mitkPointSet.cpp.
|
overridevirtual |
executes the given Operation
Reimplemented from mitk::BaseData.
Reimplemented in mitk::Mesh.
Definition at line 564 of file mitkPointSet.cpp.
References mitk::Operation::GetOperationType(), MITK_ERROR, MITK_INFO, mitkCheckOperationTypeMacro, mitk::OpDESELECTPOINT, mitk::OpINSERT, mitk::OpMOVE, mitk::OpMOVEPOINTDOWN, mitk::OpMOVEPOINTUP, mitk::OpNOTHING, mitk::OpREMOVE, mitk::OpSELECTPOINT, mitk::OpSETPOINTTYPE, mitk::PointSet::PointDataType::pointSpec, mitk::PTUNDEFINED, mitk::PointSet::PointDataType::selected, and mitk::BaseGeometry::WorldToIndex().
Referenced by mitk::ContourModelToPointSetFilter::GenerateData(), QmitkPointListViewWidget::MoveSelectedPointDown(), QmitkPointListViewWidget::MoveSelectedPointUp(), QmitkPointListViewWidget::RemoveSelectedPoint(), mitk::PointSetDataInteractor::SelectPoint(), and mitk::PointSetDataInteractor::UnselectAll().
|
overridevirtual |
Expands the TimeGeometry to a number of TimeSteps.
The method expands the TimeGeometry to the given number of TimeSteps, filling newly created elements with empty geometries. Sub-classes should override this method to handle the elongation of their data vectors, too. Note that a shrinking is neither possible nor intended.
Reimplemented from mitk::BaseData.
Definition at line 81 of file mitkPointSet.cpp.
References mitk::New().
|
inlineoverridevirtual |
Reimplemented from mitk::BaseData.
Definition at line 82 of file mitkPointSet.h.
|
virtual |
Reimplemented from mitk::BaseData.
mitk::PointSet::PointsIterator mitk::PointSet::GetMaxId | ( | int | t = 0 | ) |
Get an iterator to the max ID element if existent. Return End() otherwise.
Definition at line 177 of file mitkPointSet.cpp.
Referenced by QmitkPointListWidget::OnBtnAddPointManually().
|
virtual |
returns the number of selected points
Definition at line 526 of file mitkPointSet.cpp.
Referenced by QmitkPointListView::OnPointSetSelectionChanged(), and QmitkPointListViewWidget::Update().
mitk::PointSet::PointType mitk::PointSet::GetPoint | ( | PointIdentifier | id, |
int | t = 0 |
||
) | const |
Get the point with ID id in world coordinates.
check if the ID exists. If it doesn't exist, then return 0,0,0
Definition at line 248 of file mitkPointSet.cpp.
Referenced by mitk::AnisotropicRegistrationCommon::ComputeTargetRegistrationError(), mitk::NavigationDataToPointSetFilter::GenerateDataMode3DMean(), mitk::PointSetDataInteractor::GetPointIndexByPosition(), QmitkPointListViewWidget::MoveSelectedPointDown(), QmitkPointListViewWidget::MoveSelectedPointUp(), QmitkPointListView::OnListViewSelectionChanged(), QmitkFiducialRegistrationWidget::Register(), and QmitkPointListViewWidget::RemoveSelectedPoint().
bool mitk::PointSet::GetPointIfExists | ( | PointIdentifier | id, |
PointType * | point, | ||
int | t = 0 |
||
) | const |
Get the point with ID id in world coordinates.
If a point exists for the ID id, the point is returned in the parameter point and the method returns true. If the ID does not exist, the method returns false
Definition at line 270 of file mitkPointSet.cpp.
|
virtual |
returns the pointset
Definition at line 129 of file mitkPointSet.cpp.
Referenced by mitk::EnhancedPointSetVtkMapper3D::ApplyColorAndOpacityProperties(), mitk::PointSetDataInteractor::GetPointIndexByPosition(), QmitkPointListView::OnListViewSelectionChanged(), PointSet(), mitk::PointLocator::SetPoints(), mitk::PointSetDataInteractor::UnselectAll(), QmitkPointListViewWidget::Update(), mitk::EnhancedPointSetVtkMapper3D::UpdateVtkObjects(), and mitk::PointSetWriter::WriteXML().
|
virtual |
Definition at line 112 of file mitkPointSet.cpp.
Referenced by mitk::PlaneFit::SetInput().
|
virtual |
to get the state selected/unselected of the point on the position
Definition at line 474 of file mitkPointSet.cpp.
References mitk::PTUNDEFINED, and mitk::PointSet::PointDataType::selected.
|
virtual |
returns the current size of the point-list
Definition at line 117 of file mitkPointSet.cpp.
Referenced by mitk::AnisotropicRegistrationCommon::ComputeTargetRegistrationError(), mitk::Equal(), mitk::NavigationDataToPointSetFilter::GenerateDataMode3D(), mitkPlaneFitTest(), QmitkPointListWidget::MoveSelectedPointDown(), QmitkPointListWidget::MoveSelectedPointUp(), QmitkFiducialRegistrationWidget::Register(), QmitkPointListWidget::RemoveSelectedPoint(), mitk::PointSetDataInteractor::SelectPoint(), and mitk::PointLocator::SetPoints().
|
virtual |
to get the type of the point at the position and the moment
Definition at line 512 of file mitkPointSet.cpp.
References mitk::PointSet::PointDataType::pointSpec, and mitk::PTUNDEFINED.
Referenced by mitk::PointSetWriter::WriteXML().
|
inlinestatic |
Definition at line 82 of file mitkPointSet.h.
Referenced by mitk::BaseDataCompare::RegisterCoreEquals().
|
virtual |
returns true if a point exists at this position
Definition at line 462 of file mitkPointSet.cpp.
|
overrideprotectedvirtual |
Pure virtual; Must be used in subclasses to get a data object to a valid state. Should at least create one empty object and call Superclass::InitializeTimeGeometry() to ensure an existing valid geometry.
Reimplemented from mitk::BaseData.
Definition at line 61 of file mitkPointSet.cpp.
References mitk::New().
Referenced by PointSet().
void mitk::PointSet::InsertPoint | ( | PointIdentifier | id, |
PointType | point, | ||
int | t = 0 |
||
) |
Set the given point in world coordinate system into the itkPointSet.
Definition at line 325 of file mitkPointSet.cpp.
References mitk::PTUNDEFINED.
Referenced by mitk::NavigationDataToPointSetFilter::GenerateDataMode3D(), mitk::NavigationDataToPointSetFilter::GenerateDataMode3DMean(), and QmitkFiducialRegistrationWidget::Register().
void mitk::PointSet::InsertPoint | ( | PointIdentifier | id, |
PointType | point, | ||
PointSpecificationType | spec, | ||
int | t | ||
) |
Set the given point in world coordinate system with given PointSpecificationType.
Definition at line 330 of file mitkPointSet.cpp.
References mitk::PointSet::PointDataType::id, MITK_INFO, mitk::PointSet::PointDataType::pointSpec, mitk::PointSet::PointDataType::selected, and mitk::BaseGeometry::WorldToIndex().
mitk::PointSet::PointIdentifier mitk::PointSet::InsertPoint | ( | PointType | point, |
int | t = 0 |
||
) |
Insert the given point in world coordinate system with incremented max id at time step t.
Definition at line 355 of file mitkPointSet.cpp.
References mitk::PointSet::PointDataType::id, mitk::PointSet::PointDataType::pointSpec, mitk::PTUNDEFINED, and mitk::PointSet::PointDataType::selected.
|
inlineoverrideprotectedvirtual |
Definition at line 271 of file mitkPointSet.h.
|
overridevirtual |
Check whether object contains data (at a specified time), e.g., a set of points may be empty.
Reimplemented from mitk::BaseData.
Definition at line 76 of file mitkPointSet.cpp.
|
static |
Referenced by mitk::FastMarchingTool3D::Activated(), mitk::FastMarchingTool::Activated(), mitk::AdaptiveRegionGrowingTool::AdaptiveRegionGrowingTool(), itk::MLBSTrackingFilter< ShOrder, NumImageFeatures >::BeforeThreadedGenerateData(), mitk::FastMarchingTool3D::ClearSeeds(), mitk::FastMarchingTool::ClearSeeds(), mitk::NavigationToolReader::ConvertDataNodeToNavigationTool(), mitk::NavigationToolReader::ConvertStringToPointSet(), mitk::NavigationToolStorageTestHelper::CreateTestData_StorageWithOneTool(), mitk::SinglePointDataInteractor::DataNodeChanged(), mitk::PointSetDataInteractor::DataNodeChanged(), mitk::ExampleInteractor::ExampleInteractor(), mitk::SurfaceToPointSetFilter::GenerateData(), mitk::PointSetReader::GenerateData(), QmitkIGTPlayerWidget::GetNavigationDatasPointSet(), Step6::Initialize(), QmitkNavigationToolCreationWidget::InitializeUIToolLandmarkLists(), QmitkToFPointSetWidget::InitializeWidget(), main(), QmitkToFPointSetWidget::MeasurementPointSetChanged(), mitkPlaneFitTest(), mitkPointSetLocaleTest(), mitkPointSetWriterTest(), mitkPropertySerializationTest(), mitkTimeGeometryTest(), mitk::NavigationDataReferenceTransformFilter::NavigationDataReferenceTransformFilter(), mitk::NavigationDataToPointSetFilter::NavigationDataToPointSetFilter(), mitk::PickingTool::PickingTool(), QmitkToFPointSetWidget::PointSetChanged(), mitk::PointSetDifferenceStatisticsCalculator::PointSetDifferenceStatisticsCalculator(), mitk::PointSetStatisticsCalculator::PointSetStatisticsCalculator(), mitk::PointSetWriter::PointSetWriter(), mitk::PointSetReaderService::Read(), QmitkFiducialRegistrationWidget::Register(), mitk::PointSetWriter::ResizeInputs(), QmitkFiducialRegistrationWidget::setDataStorage(), itk::TractsToDWIImageFilter< PixelType >::SimulateKspaceAcquisition(), mitk::NavigationDataEvaluationFilter::VectorToPointSet(), mitk::ToFTestingCommon::VtkPolyDataToMitkPointSet(), and WriterLocaleTest().
|
inlinevirtual |
Definition at line 268 of file mitkPointSet.h.
|
overrideprotectedvirtual |
print content of the object to os
Reimplemented from mitk::BaseData.
Definition at line 827 of file mitkPointSet.cpp.
mitk::PointSet::PointsIterator mitk::PointSet::RemovePointAtEnd | ( | int | t = 0 | ) |
Remove max id point at timestep t and return iterator to precedent point.
Definition at line 404 of file mitkPointSet.cpp.
bool mitk::PointSet::RemovePointIfExists | ( | PointIdentifier | id, |
int | t = 0 |
||
) |
Remove point with given id at timestep t, if existent.
Definition at line 384 of file mitkPointSet.cpp.
|
overridevirtual |
Determine whether the RequestedRegion is outside of the BufferedRegion.
This method returns true if the RequestedRegion is outside the BufferedRegion (true if at least one pixel is outside). This is used by the pipeline mechanism to determine whether a filter needs to re-execute in order to satisfy the current request. If the current RequestedRegion is already inside the BufferedRegion from the previous execution (and the current filter is up to date), then a given filter does not need to re-execute
Implements mitk::BaseData.
Definition at line 813 of file mitkPointSet.cpp.
int mitk::PointSet::SearchPoint | ( | Point3D | point, |
ScalarType | distance, | ||
int | t = 0 |
||
) | const |
searches a point in the list == point +/- distance
point | is in world coordinates. |
distance | is in mm. returns -1 if no point is found or the position in the list of the first match |
Definition at line 187 of file mitkPointSet.cpp.
|
virtual |
searches a selected point and returns the id of that point. If no point is found, then -1 is returned
Definition at line 546 of file mitkPointSet.cpp.
Referenced by QmitkPointListViewWidget::MoveSelectedPointDown(), QmitkPointListViewWidget::MoveSelectedPointUp(), QmitkPointListView::OnPointSetSelectionChanged(), QmitkPointListViewWidget::RemoveSelectedPoint(), and QmitkPointListViewWidget::Update().
void mitk::PointSet::SetPoint | ( | PointIdentifier | id, |
PointType | point, | ||
int | t = 0 |
||
) |
Set the given point in world coordinate system into the itkPointSet.
Definition at line 288 of file mitkPointSet.cpp.
References mitk::PointSet::PointDataType::id, mitk::PointSet::PointDataType::pointSpec, mitk::PTUNDEFINED, and mitk::PointSet::PointDataType::selected.
Referenced by mitk::NavigationDataToPointSetFilter::GenerateDataMode3DMean(), and mitk::NavigationDataToPointSetFilter::GenerateDataMode4D().
void mitk::PointSet::SetPoint | ( | PointIdentifier | id, |
PointType | point, | ||
PointSpecificationType | spec, | ||
int | t = 0 |
||
) |
Set the given point in world coordinate system with the given PointSpecificationType.
Definition at line 307 of file mitkPointSet.cpp.
References mitk::PointSet::PointDataType::id, mitk::PointSet::PointDataType::pointSpec, and mitk::PointSet::PointDataType::selected.
|
overridevirtual |
Set the requested region from this data object to match the requested region of the data object passed in as a parameter.
This method is implemented in the concrete subclasses of BaseData.
Implements mitk::BaseData.
Definition at line 823 of file mitkPointSet.cpp.
|
overridevirtual |
Set the RequestedRegion to the LargestPossibleRegion.
This forces a filter to produce all of the output in one execution (i.e. not streaming) on the next call to Update().
Implements mitk::BaseData.
Definition at line 809 of file mitkPointSet.cpp.
|
virtual |
Definition at line 488 of file mitkPointSet.cpp.
References mitk::OpDESELECTPOINT, and mitk::OpSELECTPOINT.
Referenced by QmitkPointListView::OnListViewSelectionChanged(), and QmitkPointListViewWidget::Update().
|
protected |
swaps point coordinates and point data of the points with identifiers id1 and id2
Definition at line 858 of file mitkPointSet.cpp.
bool mitk::PointSet::SwapPointPosition | ( | PointIdentifier | id, |
bool | moveUpwards, | ||
int | t = 0 |
||
) |
Swap a point at the given position (id) with the upper point (moveUpwards=true) or with the lower point (moveUpwards=false). If upper or lower index does not exist false is returned, if swap was successful true.
Definition at line 432 of file mitkPointSet.cpp.
|
overridevirtual |
Definition at line 752 of file mitkPointSet.cpp.
|
overridevirtual |
Verify that the RequestedRegion is within the LargestPossibleRegion.
If the RequestedRegion is not within the LargestPossibleRegion, then the filter cannot possibly satisfy the request. This method returns true if the request can be satisfied (even if it will be necessary to process the entire LargestPossibleRegion) and returns false otherwise. This method is used by PropagateRequestedRegion(). PropagateRequestedRegion() throws a InvalidRequestedRegionError exception if the requested region is not within the LargestPossibleRegion.
Implements mitk::BaseData.
Definition at line 818 of file mitkPointSet.cpp.
|
protected |
flag to indicate the right time to call SetBounds
Definition at line 295 of file mitkPointSet.h.
|
protected |
Definition at line 290 of file mitkPointSet.h.
|
protected |
Definition at line 288 of file mitkPointSet.h.
Referenced by PointSet().
|
static |
Definition at line 90 of file mitkPointSet.h.
|
static |
Definition at line 89 of file mitkPointSet.h.