Rerun C++ SDK
|
Archetype: A 2D point cloud with positions and optional colors, radii, labels, etc. More...
#include <rerun/archetypes/points2d.hpp>
Public Types | |
using | IndicatorComponent = components::IndicatorComponent< IndicatorComponentName > |
Indicator component, used to identify the archetype when converting to a list of components. | |
Public Member Functions | |
Points2D (Points2D &&other)=default | |
Points2D (Collection< rerun::components::Position2D > _positions) | |
Points2D | with_radii (Collection< rerun::components::Radius > _radii) && |
Optional radii for the points, effectively turning them into circles. | |
Points2D | with_colors (Collection< rerun::components::Color > _colors) && |
Optional colors for the points. | |
Points2D | with_labels (Collection< rerun::components::Text > _labels) && |
Optional text labels for the points. | |
Points2D | with_draw_order (rerun::components::DrawOrder _draw_order) && |
An optional floating point value that specifies the 2D drawing order. | |
Points2D | with_class_ids (Collection< rerun::components::ClassId > _class_ids) && |
Optional class Ids for the points. | |
Points2D | with_keypoint_ids (Collection< rerun::components::KeypointId > _keypoint_ids) && |
Optional keypoint IDs for the points, identifying them within a class. | |
Points2D | with_instance_keys (Collection< rerun::components::InstanceKey > _instance_keys) && |
Unique identifiers for each individual point in the batch. | |
size_t | num_instances () const |
Returns the number of primary instances of this archetype. | |
Public Attributes | |
Collection< rerun::components::Position2D > | positions |
All the 2D positions at which the point cloud shows points. | |
std::optional< Collection< rerun::components::Radius > > | radii |
Optional radii for the points, effectively turning them into circles. | |
std::optional< Collection< rerun::components::Color > > | colors |
Optional colors for the points. | |
std::optional< Collection< rerun::components::Text > > | labels |
Optional text labels for the points. | |
std::optional< rerun::components::DrawOrder > | draw_order |
An optional floating point value that specifies the 2D drawing order. | |
std::optional< Collection< rerun::components::ClassId > > | class_ids |
Optional class Ids for the points. | |
std::optional< Collection< rerun::components::KeypointId > > | keypoint_ids |
Optional keypoint IDs for the points, identifying them within a class. | |
std::optional< Collection< rerun::components::InstanceKey > > | instance_keys |
Unique identifiers for each individual point in the batch. | |
Static Public Attributes | |
static constexpr const char | IndicatorComponentName [] = "rerun.components.Points2DIndicator" |
Archetype: A 2D point cloud with positions and optional colors, radii, labels, etc.
|
inline |
An optional floating point value that specifies the 2D drawing order.
Objects with higher values are drawn on top of those with lower values.
|
inline |
Optional class Ids for the points.
The class ID provides colors and labels if not specified explicitly.
|
inline |
Optional keypoint IDs for the points, identifying them within a class.
If keypoint IDs are passed in but no class IDs were specified, the class ID will default to 0. This is useful to identify points within a single classification (which is identified with class_id
). E.g. the classification might be 'Person' and the keypoints refer to joints on a detected skeleton.
std::optional<rerun::components::DrawOrder> rerun::archetypes::Points2D::draw_order |
An optional floating point value that specifies the 2D drawing order.
Objects with higher values are drawn on top of those with lower values.
std::optional<Collection<rerun::components::ClassId> > rerun::archetypes::Points2D::class_ids |
Optional class Ids for the points.
The class ID provides colors and labels if not specified explicitly.
std::optional<Collection<rerun::components::KeypointId> > rerun::archetypes::Points2D::keypoint_ids |
Optional keypoint IDs for the points, identifying them within a class.
If keypoint IDs are passed in but no class IDs were specified, the class ID will default to 0. This is useful to identify points within a single classification (which is identified with class_id
). E.g. the classification might be 'Person' and the keypoints refer to joints on a detected skeleton.