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.
23 ///
24 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
25 ///
27 /// Which dimension to map to width.
28 ///
29 /// If not specified, the height will be determined automatically based on the name and index of the dimension.
30 std::optional<ComponentBatch> width;
31
32 /// Which dimension to map to height.
33 ///
34 /// If not specified, the height will be determined automatically based on the name and index of the dimension.
35 std::optional<ComponentBatch> height;
36
37 /// Selected indices for all other dimensions.
38 ///
39 /// If any of the here listed dimensions is equal to `width` or `height`, it will be ignored.
40 std::optional<ComponentBatch> indices;
41
42 /// Any dimension listed here will have a slider for the index.
43 ///
44 /// Edits to the sliders will directly manipulate dimensions on the `indices` list.
45 /// If any of the here listed dimensions is equal to `width` or `height`, it will be ignored.
46 /// If not specified, adds slides for any dimension in `indices`.
47 std::optional<ComponentBatch> slider;
48
49 public:
50 static constexpr const char IndicatorComponentName[] =
51 "rerun.blueprint.components.TensorSliceSelectionIndicator";
52
53 /// Indicator component, used to identify the archetype when converting to a list of components.
55 /// The name of the archetype as used in `ComponentDescriptor`s.
56 static constexpr const char ArchetypeName[] =
57 "rerun.blueprint.archetypes.TensorSliceSelection";
58
59 /// `ComponentDescriptor` for the `width` field.
60 static constexpr auto Descriptor_width = ComponentDescriptor(
61 ArchetypeName, "width",
63 );
64 /// `ComponentDescriptor` for the `height` field.
65 static constexpr auto Descriptor_height = ComponentDescriptor(
66 ArchetypeName, "height",
68 );
69 /// `ComponentDescriptor` for the `indices` field.
70 static constexpr auto Descriptor_indices = ComponentDescriptor(
71 ArchetypeName, "indices",
73 );
74 /// `ComponentDescriptor` for the `slider` field.
75 static constexpr auto Descriptor_slider = ComponentDescriptor(
76 ArchetypeName, "slider",
78 .component_name
79 );
80
81 public:
82 TensorSliceSelection() = default;
84 TensorSliceSelection(const TensorSliceSelection& other) = default;
85 TensorSliceSelection& operator=(const TensorSliceSelection& other) = default;
86 TensorSliceSelection& operator=(TensorSliceSelection&& other) = default;
87
88 /// Update only some specific fields of a `TensorSliceSelection`.
90 return TensorSliceSelection();
91 }
92
93 /// Clear all the fields of a `TensorSliceSelection`.
95
96 /// Which dimension to map to width.
97 ///
98 /// If not specified, the height will be determined automatically based on the name and index of the dimension.
100 width = ComponentBatch::from_loggable(_width, Descriptor_width).value_or_throw();
101 return std::move(*this);
102 }
103
104 /// Which dimension to map to height.
105 ///
106 /// If not specified, the height will be determined automatically based on the name and index of the dimension.
108 ) && {
109 height = ComponentBatch::from_loggable(_height, Descriptor_height).value_or_throw();
110 return std::move(*this);
111 }
112
113 /// Selected indices for all other dimensions.
114 ///
115 /// If any of the here listed dimensions is equal to `width` or `height`, it will be ignored.
118 ) && {
119 indices = ComponentBatch::from_loggable(_indices, Descriptor_indices).value_or_throw();
120 return std::move(*this);
121 }
122
123 /// Any dimension listed here will have a slider for the index.
124 ///
125 /// Edits to the sliders will directly manipulate dimensions on the `indices` list.
126 /// If any of the here listed dimensions is equal to `width` or `height`, it will be ignored.
127 /// If not specified, adds slides for any dimension in `indices`.
130 ) && {
131 slider = ComponentBatch::from_loggable(_slider, Descriptor_slider).value_or_throw();
132 return std::move(*this);
133 }
134
135 /// Partitions the component data into multiple sub-batches.
136 ///
137 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
138 /// instead, via `ComponentBatch::partitioned`.
139 ///
140 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
141 ///
142 /// The specified `lengths` must sum to the total length of the component batch.
144
145 /// Partitions the component data into unit-length sub-batches.
146 ///
147 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
148 /// where `n` is automatically guessed.
150 };
151
152} // namespace rerun::blueprint::archetypes
153
154namespace rerun {
155 /// \private
156 template <typename T>
157 struct AsComponents;
158
159 /// \private
160 template <>
161 struct AsComponents<blueprint::archetypes::TensorSliceSelection> {
162 /// Serialize all set component batches.
163 static Result<Collection<ComponentBatch>> as_batches(
165 );
166 };
167} // 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:26
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition tensor_slice_selection.hpp:56
std::optional< ComponentBatch > width
Which dimension to map to width.
Definition tensor_slice_selection.hpp:30
std::optional< ComponentBatch > indices
Selected indices for all other dimensions.
Definition tensor_slice_selection.hpp:40
static constexpr auto Descriptor_slider
ComponentDescriptor for the slider field.
Definition tensor_slice_selection.hpp:75
TensorSliceSelection with_height(const rerun::components::TensorHeightDimension &_height) &&
Which dimension to map to height.
Definition tensor_slice_selection.hpp:107
static constexpr auto Descriptor_indices
ComponentDescriptor for the indices field.
Definition tensor_slice_selection.hpp:70
TensorSliceSelection with_width(const rerun::components::TensorWidthDimension &_width) &&
Which dimension to map to width.
Definition tensor_slice_selection.hpp:99
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:128
static constexpr auto Descriptor_width
ComponentDescriptor for the width field.
Definition tensor_slice_selection.hpp:60
TensorSliceSelection with_indices(const Collection< rerun::components::TensorDimensionIndexSelection > &_indices) &&
Selected indices for all other dimensions.
Definition tensor_slice_selection.hpp:116
static TensorSliceSelection update_fields()
Update only some specific fields of a TensorSliceSelection.
Definition tensor_slice_selection.hpp:89
static constexpr auto Descriptor_height
ComponentDescriptor for the height field.
Definition tensor_slice_selection.hpp:65
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:35
std::optional< ComponentBatch > slider
Any dimension listed here will have a slider for the index.
Definition tensor_slice_selection.hpp:47
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