Rerun C++ SDK
Loading...
Searching...
No Matches
tensor_slice_selection.hpp
1// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/cpp/mod.rs
2// Based on "crates/store/re_types/definitions/rerun/blueprint/archetypes/tensor_slice_selection.fbs".
3
4#pragma once
5
6#include "../../blueprint/components/tensor_dimension_index_slider.hpp"
7#include "../../collection.hpp"
8#include "../../component_batch.hpp"
9#include "../../component_column.hpp"
10#include "../../components/tensor_dimension_index_selection.hpp"
11#include "../../components/tensor_height_dimension.hpp"
12#include "../../components/tensor_width_dimension.hpp"
13#include "../../indicator_component.hpp"
14#include "../../result.hpp"
15
16#include <cstdint>
17#include <optional>
18#include <utility>
19#include <vector>
20
21namespace rerun::blueprint::archetypes {
22 /// **Archetype**: Specifies a 2D slice of a tensor.
24 /// Which dimension to map to width.
25 ///
26 /// If not specified, the height will be determined automatically based on the name and index of the dimension.
27 std::optional<ComponentBatch> width;
28
29 /// Which dimension to map to height.
30 ///
31 /// If not specified, the height will be determined automatically based on the name and index of the dimension.
32 std::optional<ComponentBatch> height;
33
34 /// Selected indices for all other dimensions.
35 ///
36 /// If any of the here listed dimensions is equal to `width` or `height`, it will be ignored.
37 std::optional<ComponentBatch> indices;
38
39 /// Any dimension listed here will have a slider for the index.
40 ///
41 /// Edits to the sliders will directly manipulate dimensions on the `indices` list.
42 /// If any of the here listed dimensions is equal to `width` or `height`, it will be ignored.
43 /// If not specified, adds slides for any dimension in `indices`.
44 std::optional<ComponentBatch> slider;
45
46 public:
47 static constexpr const char IndicatorComponentName[] =
48 "rerun.blueprint.components.TensorSliceSelectionIndicator";
49
50 /// Indicator component, used to identify the archetype when converting to a list of components.
52 /// The name of the archetype as used in `ComponentDescriptor`s.
53 static constexpr const char ArchetypeName[] =
54 "rerun.blueprint.archetypes.TensorSliceSelection";
55
56 /// `ComponentDescriptor` for the `width` field.
57 static constexpr auto Descriptor_width = ComponentDescriptor(
58 ArchetypeName, "width",
60 );
61 /// `ComponentDescriptor` for the `height` field.
62 static constexpr auto Descriptor_height = ComponentDescriptor(
63 ArchetypeName, "height",
65 );
66 /// `ComponentDescriptor` for the `indices` field.
67 static constexpr auto Descriptor_indices = ComponentDescriptor(
68 ArchetypeName, "indices",
70 );
71 /// `ComponentDescriptor` for the `slider` field.
72 static constexpr auto Descriptor_slider = ComponentDescriptor(
73 ArchetypeName, "slider",
75 .component_name
76 );
77
78 public:
79 TensorSliceSelection() = default;
81 TensorSliceSelection(const TensorSliceSelection& other) = default;
82 TensorSliceSelection& operator=(const TensorSliceSelection& other) = default;
83 TensorSliceSelection& operator=(TensorSliceSelection&& other) = default;
84
85 /// Update only some specific fields of a `TensorSliceSelection`.
87 return TensorSliceSelection();
88 }
89
90 /// Clear all the fields of a `TensorSliceSelection`.
92
93 /// Which dimension to map to width.
94 ///
95 /// If not specified, the height will be determined automatically based on the name and index of the dimension.
97 width = ComponentBatch::from_loggable(_width, Descriptor_width).value_or_throw();
98 return std::move(*this);
99 }
100
101 /// Which dimension to map to height.
102 ///
103 /// If not specified, the height will be determined automatically based on the name and index of the dimension.
105 ) && {
106 height = ComponentBatch::from_loggable(_height, Descriptor_height).value_or_throw();
107 return std::move(*this);
108 }
109
110 /// Selected indices for all other dimensions.
111 ///
112 /// If any of the here listed dimensions is equal to `width` or `height`, it will be ignored.
115 ) && {
116 indices = ComponentBatch::from_loggable(_indices, Descriptor_indices).value_or_throw();
117 return std::move(*this);
118 }
119
120 /// Any dimension listed here will have a slider for the index.
121 ///
122 /// Edits to the sliders will directly manipulate dimensions on the `indices` list.
123 /// If any of the here listed dimensions is equal to `width` or `height`, it will be ignored.
124 /// If not specified, adds slides for any dimension in `indices`.
127 ) && {
128 slider = ComponentBatch::from_loggable(_slider, Descriptor_slider).value_or_throw();
129 return std::move(*this);
130 }
131
132 /// Partitions the component data into multiple sub-batches.
133 ///
134 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
135 /// instead, via `ComponentBatch::partitioned`.
136 ///
137 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
138 ///
139 /// The specified `lengths` must sum to the total length of the component batch.
141
142 /// Partitions the component data into unit-length sub-batches.
143 ///
144 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
145 /// where `n` is automatically guessed.
147 };
148
149} // namespace rerun::blueprint::archetypes
150
151namespace rerun {
152 /// \private
153 template <typename T>
154 struct AsComponents;
155
156 /// \private
157 template <>
158 struct AsComponents<blueprint::archetypes::TensorSliceSelection> {
159 /// Serialize all set component batches.
160 static Result<Collection<ComponentBatch>> as_batches(
162 );
163 };
164} // namespace rerun
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
A class for representing either a usable value, or an error.
Definition result.hpp:14
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &descriptor=rerun::Loggable< T >::Descriptor)
Creates a new component batch from a collection of component instances.
Definition component_batch.hpp:46
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:14
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: Specifies a 2D slice of a tensor.
Definition tensor_slice_selection.hpp:23
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition tensor_slice_selection.hpp:53
std::optional< ComponentBatch > width
Which dimension to map to width.
Definition tensor_slice_selection.hpp:27
std::optional< ComponentBatch > indices
Selected indices for all other dimensions.
Definition tensor_slice_selection.hpp:37
static constexpr auto Descriptor_slider
ComponentDescriptor for the slider field.
Definition tensor_slice_selection.hpp:72
TensorSliceSelection with_height(const rerun::components::TensorHeightDimension &_height) &&
Which dimension to map to height.
Definition tensor_slice_selection.hpp:104
static constexpr auto Descriptor_indices
ComponentDescriptor for the indices field.
Definition tensor_slice_selection.hpp:67
TensorSliceSelection with_width(const rerun::components::TensorWidthDimension &_width) &&
Which dimension to map to width.
Definition tensor_slice_selection.hpp:96
TensorSliceSelection with_slider(const Collection< rerun::blueprint::components::TensorDimensionIndexSlider > &_slider) &&
Any dimension listed here will have a slider for the index.
Definition tensor_slice_selection.hpp:125
static constexpr auto Descriptor_width
ComponentDescriptor for the width field.
Definition tensor_slice_selection.hpp:57
TensorSliceSelection with_indices(const Collection< rerun::components::TensorDimensionIndexSelection > &_indices) &&
Selected indices for all other dimensions.
Definition tensor_slice_selection.hpp:113
static TensorSliceSelection update_fields()
Update only some specific fields of a TensorSliceSelection.
Definition tensor_slice_selection.hpp:86
static constexpr auto Descriptor_height
ComponentDescriptor for the height field.
Definition tensor_slice_selection.hpp:62
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
static TensorSliceSelection clear_fields()
Clear all the fields of a TensorSliceSelection.
std::optional< ComponentBatch > height
Which dimension to map to height.
Definition tensor_slice_selection.hpp:32
std::optional< ComponentBatch > slider
Any dimension listed here will have a slider for the index.
Definition tensor_slice_selection.hpp:44
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:32
Component: Specifies which dimension to use for height.
Definition tensor_height_dimension.hpp:15
Component: Specifies which dimension to use for width.
Definition tensor_width_dimension.hpp:15