Scripting API

btkRemovePoint

Module BTKPointModifier

Description#

Deletes the point with the given index or label.

Parameters#

hHandle pointing to a C++ btk::Acquisition object.
idxInteger with the index of the point to remove.
labelString with the label of the point to remove.

Returned Values#

pointsUpdated list of points. Its format is the same than using the function
pointsInfoUpdated informations related to the points. Its format is the same than using the function

Detailed Description#

  • btkRemovePoint(h, idx) removes the point with the given index.
  • btkRemovePoint(h, label) removes the point with the given label.

Notes#

See also#

btkRemoveAnalog, btkRemoveMetaData

Syntax#

[points, pointsInfo] = btkRemovePoint(h, idx)
[points, pointsInfo] = btkRemovePoint(h, label)

Examples#