31#include <shared_mutex>
43#define CT_TRACE(ct, ...) U_LOG_IFL_T(ct->log_level, __VA_ARGS__)
44#define CT_DEBUG(ct, ...) U_LOG_IFL_D(ct->log_level, __VA_ARGS__)
45#define CT_INFO(ct, ...) U_LOG_IFL_I(ct->log_level, __VA_ARGS__)
46#define CT_WARN(ct, ...) U_LOG_IFL_W(ct->log_level, __VA_ARGS__)
47#define CT_ERROR(ct, ...) U_LOG_IFL_E(ct->log_level, __VA_ARGS__)
49#define MIN_ROT_ERROR DEG_TO_RAD(30)
50#define MIN_POS_ERROR 0.10
62constellation_tracker_camera_destroy(
t_blob_sink *tbs);
65constellation_tracker_camera_slow_thread(
void *ptr);
68constellation_tracker_camera_fast_thread(
void *ptr);
77namespace xrt::tracking::constellation {
79namespace os = xrt::auxiliary::os;
85struct ConstellationTracker;
90 t_constellation_device_id_t
device_id{XRT_CONSTELLATION_INVALID_DEVICE_ID};
107 int64_t timestamp_ns{};
108 t_blob blobs[XRT_CONSTELLATION_MAX_BLOBS_PER_FRAME]{};
109 uint32_t blob_count{};
114 std::array<DeviceState, XRT_CONSTELLATION_MAX_DEVICES> device_states{};
115 uint32_t device_count{};
118 std::optional<DeviceState *>
119 GetDeviceState(t_constellation_device_id_t device_id);
124 MarkMatchingBlobs(ConstellationTracker *ct,
126 t_constellation_device_id_t device_id,
130 ToBlobObservation() const &
133 .source = this->source,
135 .timestamp_ns = this->timestamp_ns,
136 .blobs =
const_cast<t_blob *
>(this->blobs),
137 .num_blobs = this->blob_count,
144 ToBlobObservation() && =
delete;
146 ToBlobObservation() const && = delete;
153 bool draw_blobs{
true};
155 bool draw_blob_ids{
false};
157 bool draw_blob_device_ids{
true};
159 bool draw_blob_led_ids{
false};
162 bool draw_prior{
false};
164 bool draw_found{
false};
168 SetupDebugTracking(
void *root);
175 .
push_blobs = constellation_tracker_camera_push_blobs,
176 .destroy = constellation_tracker_camera_destroy,
181 std::weak_ptr<CameraMosaic> mosaic;
196 std::optional<CameraSample> sample{std::nullopt};
201 } slow_processing_thread_data;
210 std::optional<CameraSample> sample{std::nullopt};
215 } fast_processing_thread_data;
223 bool has_concrete_pose;
233 Camera(ConstellationTracker *tracker,
234 std::weak_ptr<CameraMosaic> mosaic,
242 Camera(
const Camera &) =
delete;
243 Camera(Camera &&) =
delete;
245 operator=(
const Camera &) =
delete;
247 operator=(Camera &&) =
delete;
249 std::optional<xrt_pose>
253 DeferSampleToSlowThread(CameraSample &sample);
257 TryDevicePose(std::unique_ptr<Device> &device,
258 CameraSample &sample,
261 xrt_pose &Tcv_world_device_candidate,
265 TryDeviceBlobRecovery(std::unique_ptr<Device> &device,
266 CameraSample &sample,
272 SlowSampleProcess(CameraSample &sample);
276 FastSampleProcess(CameraSample &sample);
279 PushPose(CameraSample &sample,
280 std::unique_ptr<Device> &device,
287 DebugScribbleSample(CameraSample &sample,
bool fast);
293 std::vector<std::unique_ptr<Camera>> cameras;
306 std::optional<xrt_pose>
316 t_constellation_device_id_t id;
321 xrt_vec3 prior_pos_error{MIN_POS_ERROR, MIN_POS_ERROR, MIN_POS_ERROR};
322 xrt_vec3 prior_rot_error{MIN_POS_ERROR, MIN_POS_ERROR, MIN_POS_ERROR};
323 float gravity_error_rad{MIN_ROT_ERROR};
325 mutable os::Mutex data_lock;
328 std::optional<xrt_pose> Txr_world_device_last_known;
335 t_constellation_device_id_t
id);
345 .
break_apart = constellation_tracker_node_break_apart,
346 .destroy = constellation_tracker_node_destroy,
349 .
name =
"Constellation Tracker",
351 .initial_offset = XRT_POSE_IDENTITY,
361 std::vector<std::shared_ptr<CameraMosaic>> mosaics;
363 std::shared_mutex device_lock;
364 std::vector<std::unique_ptr<Device>> devices;
365 t_constellation_device_id_t next_device_id{0};
376 ~ConstellationTracker();
379 ConstellationTracker(
const ConstellationTracker &) =
delete;
380 ConstellationTracker(ConstellationTracker &&) =
delete;
381 ConstellationTracker &
382 operator=(
const ConstellationTracker &) =
delete;
383 ConstellationTracker &
384 operator=(ConstellationTracker &&) =
delete;
387 SetupVariableTracking();
389 t_constellation_device_id_t
393 RemoveDevice(t_constellation_device_id_t device_id);
Ab-initio blob<->LED correspondence search.
u_logging_level
Logging level enum.
Definition u_logging.h:45
@ U_LOGGING_WARN
Warning messages: indicating a potential problem.
Definition u_logging.h:49
int64_t timepoint_ns
Integer timestamp type.
Definition u_time.h:77
#define container_of(ptr, type, field)
Get the holder from a pointer to a field.
Definition xrt_compiler.h:226
@ XRT_TRACKING_TYPE_CONSTELLATION
The device(s) are tracked through a constellation of lights as seen by cameras.
Definition xrt_tracking.h:63
LED search model management code.
C interface to math library.
Metrics for constellation tracking poses.
RANSAC PnP pose refinement.
Definition t_rift_blobwatch.c:82
Definition camera_model.h:19
Definition correspondence_search.h:92
All in one helper that handles locking, waiting for change and starting a thread.
Definition os_threading.h:499
Definition pose_metrics.h:85
Definition pose_metrics.h:61
Definition t_constellation.h:80
A generic interface to allow a tracking system to receive "snapshots" of seen t_blob in a frame.
Definition t_constellation.h:101
void(* push_blobs)(struct t_blob_sink *tbs, struct t_blob_observation *observation)
Push a set of blobs into the sink.
Definition t_constellation.h:109
A blob is a 2d position in a camera sensor's view that is being tracked.
Definition t_constellation.h:37
Definition t_constellation.h:152
Essential calibration data for a single camera, or single lens/sensor of a stereo camera.
Definition t_tracking.h:236
Definition led_search_model.h:40
A constellation tracker camera mosaic is a set of cameras that may or may not be physically attached,...
Definition t_constellation_tracker.h:60
A constellation tracker camera is a single camera that the constellation tracker will use to track de...
Definition t_constellation_tracker.h:34
Parameters for adding a device to the constellation tracker.
Definition t_constellation_tracker.h:79
A constellation tracker device is a device that the constellation tracker will attempt to track in 6d...
Definition t_constellation.h:327
The LED model is a series of points which define the real-world positions of all LEDs.
Definition t_constellation.h:266
Definition t_constellation_tracker.h:94
A constellation tracker tracking source is an arbitrary source of tracking data for the constellation...
Definition t_constellation.h:221
Allows more safely to debug sink inputs and outputs.
Definition u_sink.h:214
Definition t_constellation_tracker_internal.hpp:172
os_thread_helper slow_processing_thread
Does "slow" processing for this camera when fast recovery paths fail.
Definition t_constellation_tracker_internal.hpp:193
os_thread_helper fast_processing_thread
Does "fast" processing for this camera, trying to recover a pose quickly.
Definition t_constellation_tracker_internal.hpp:207
os::Mutex processing_lock
Locks all processing data.
Definition t_constellation_tracker_internal.hpp:218
ConstellationTracker * tracker
The owner tracker, so we can retrieve it from the blob sink callback.
Definition t_constellation_tracker_internal.hpp:180
size_t index
The index in the mosaic.
Definition t_constellation_tracker_internal.hpp:190
Definition t_constellation_tracker_internal.hpp:291
size_t index
The index of this mosaic in the tracker.
Definition t_constellation_tracker_internal.hpp:295
Definition t_constellation_tracker_internal.hpp:103
std::optional< xrt_pose > Txr_world_cam
The camera's position in the constellation tracker's tracking origin.
Definition t_constellation_tracker_internal.hpp:112
Definition t_constellation_tracker_internal.hpp:150
Definition t_constellation_tracker_internal.hpp:341
Definition t_constellation_tracker_internal.hpp:311
Definition t_constellation_tracker_internal.hpp:88
t_constellation_device_id_t device_id
The ID of the device.
Definition t_constellation_tracker_internal.hpp:90
std::optional< xrt_pose > Txr_world_device_prior
The "predicted" pose, which is the pose the device expects itself to be at at the time of the blobser...
Definition t_constellation_tracker_internal.hpp:93
std::optional< xrt_pose > Tcv_cam_device_found
The final found pose of the device in this specific sample.
Definition t_constellation_tracker_internal.hpp:96
bool needs_slow_processing
Whether the device needs to have the slow processing thread run over it.
Definition t_constellation_tracker_internal.hpp:99
A interface object used for destroying a frame graph.
Definition xrt_frame.h:87
void(* break_apart)(struct xrt_frame_node *node)
Called first in when the graph is being destroyed, remove any references frames and other objects and...
Definition xrt_frame.h:94
A pose composed of a position and orientation.
Definition xrt_defines.h:492
A tracking system or device origin.
Definition xrt_tracking.h:78
char name[256]
For debugging.
Definition xrt_tracking.h:80
A 3 element vector with single floats.
Definition xrt_defines.h:289
Header defining the tracking system integration in Monado.
Header defining the constellation tracker parameters and functions.
xrt_frame helpers for scribbling onto frames.
Basic logging functionality.
xrt_frame_sink converters and other helpers.
Slightly higher level thread safe helpers.
C++ helpers for weak pointers.
Header defining the tracking system integration in Monado.