19typedef int8_t t_constellation_device_id_t;
20typedef int8_t t_constellation_led_id_it;
22#define XRT_CONSTELLATION_MAX_BLOBS_PER_FRAME 250
23#define XRT_CONSTELLATION_MAX_DEVICES 4
25#define XRT_CONSTELLATION_INVALID_DEVICE_ID -1
26#define XRT_CONSTELLATION_INVALID_LED_ID -1
118XRT_NONNULL_ALL
static inline void
131XRT_NONNULL_ALL
static inline void
161 t_constellation_device_id_t device_id);
176XRT_NONNULL_ALL
static inline void
179 t_constellation_device_id_t device_id)
191XRT_NONNULL_ALL
static inline void
228XRT_NONNULL_ALL
static inline void
234 tracking_source->get_tracked_pose(tracking_source, when_ns, out_relation);
249 t_constellation_led_id_it
id;
290XRT_NONNULL_ALL
static inline bool
335XRT_NONNULL_ALL
static inline void
Definition t_constellation.h:74
uint64_t id
Internal ID for this observation, may be set by the blobwatch implementation if it needs to know this...
Definition t_constellation.h:81
A generic interface to allow a tracking system to receive "snapshots" of seen t_blob in a frame.
Definition t_constellation.h:95
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:103
void(* destroy)(struct t_blob_sink *tbs)
Destroy this blob sink.
Definition t_constellation.h:108
static XRT_NONNULL_ALL void t_blob_sink_push_blobs(struct t_blob_sink *tbs, struct t_blob_observation *tbo)
Helper function for t_blob_sink::push_blobs.
Definition t_constellation.h:119
static XRT_NONNULL_ALL void t_blob_sink_destroy(struct t_blob_sink **tbs_ptr)
Helper function for t_blob_sink::destroy.
Definition t_constellation.h:132
A blob is a 2d position in a camera sensor's view that is being tracked.
Definition t_constellation.h:37
t_constellation_led_id_it matched_device_led_id
The LED ID this blob is associated with, if any.
Definition t_constellation.h:55
t_constellation_device_id_t matched_device_id
The device ID this blob is associated with, if any.
Definition t_constellation.h:49
struct xrt_vec2 motion_vector
Estimated motion vector of blob, in pixels per second.
Definition t_constellation.h:64
uint32_t blob_id
The ID of a blob, which may be used to track it across frames.
Definition t_constellation.h:43
struct xrt_vec2 center
Centre of blob.
Definition t_constellation.h:58
struct xrt_rect bounding_box
The bounding box of the blob in pixel coordinates.
Definition t_constellation.h:67
Definition t_constellation.h:146
static XRT_NONNULL_ALL void t_blobwatch_mark_blob_device(struct t_blobwatch *tbw, const struct t_blob_observation *tbo, t_constellation_device_id_t device_id)
Helper function for t_blobwatch::mark_blob_device.
Definition t_constellation.h:177
static XRT_NONNULL_ALL void t_blobwatch_destroy(struct t_blobwatch **tbw_ptr)
Helper function for t_blobwatch::destroy.
Definition t_constellation.h:192
void(* destroy)(struct t_blobwatch *tbw)
Destroy this blobwatch.
Definition t_constellation.h:166
void(* mark_blob_device)(struct t_blobwatch *tbw, const struct t_blob_observation *tbo, t_constellation_device_id_t device_id)
Notify the blobwatch that the blobs in the given observation with the correct ID set are associated w...
Definition t_constellation.h:159
A constellation tracker device is a device that the constellation tracker will attempt to track in 6d...
Definition t_constellation.h:315
static XRT_NONNULL_ALL void t_constellation_tracker_device_push_sample(struct t_constellation_tracker_device *device, struct t_constellation_tracker_sample *sample)
Helper function for t_constellation_tracker_device::push_constellation_tracker_sample.
Definition t_constellation.h:336
void(* push_constellation_tracker_sample)(struct t_constellation_tracker_device *connection, struct t_constellation_tracker_sample *sample)
A function that the constellation tracker will call to push a new sample of the device's pose as it t...
Definition t_constellation.h:324
The LED model is a series of points which define the real-world positions of all LEDs.
Definition t_constellation.h:260
bool(* compute_led_visibility)(struct t_constellation_tracker_led_model *led_model, size_t led, struct xrt_vec3 T_obj_cam)
A function to compute whether a given LED is visible from a given position.
Definition t_constellation.h:278
static XRT_NONNULL_ALL bool t_constellation_tracker_led_model_compute_led_visibility(struct t_constellation_tracker_led_model *led_model, size_t led, struct xrt_vec3 T_obj_cam)
Helper function for t_constellation_tracker_led_model::compute_led_visibility.
Definition t_constellation.h:291
size_t led_count
The number of LEDs in this model.
Definition t_constellation.h:264
struct t_constellation_tracker_led * leds
The LEDs in this model.
Definition t_constellation.h:262
Definition t_constellation.h:239
float radius_m
The visible radius of the LED in meters.
Definition t_constellation.h:245
float visibility_angle
The angle from dead on where the LED is no longer visible, in radians.
Definition t_constellation.h:247
struct xrt_vec3 position
The position of the LED in the model.
Definition t_constellation.h:241
t_constellation_led_id_it id
A unique ID for this LED, which distinguishes it from all other LEDs.
Definition t_constellation.h:249
struct xrt_vec3 normal
The normal of the LED, determines where it is facing.
Definition t_constellation.h:243
Definition t_constellation.h:300
int64_t timestamp_ns
The time the original blobservation was made.
Definition t_constellation.h:302
struct xrt_pose pose
The pose of the device at the time of the blobservation.
Definition t_constellation.h:304
A constellation tracker tracking source is an arbitrary source of tracking data for the constellation...
Definition t_constellation.h:215
static XRT_NONNULL_ALL void t_constellation_tracker_tracking_source_get_tracked_pose(struct t_constellation_tracker_tracking_source *tracking_source, int64_t when_ns, struct xrt_space_relation *out_relation)
Helper function for t_constellation_tracker_tracking_source::get_tracked_pose.
Definition t_constellation.h:229
A pose composed of a position and orientation.
Definition xrt_defines.h:492
Image rectangle.
Definition xrt_defines.h:457
A relation with two spaces, includes velocity and acceleration.
Definition xrt_defines.h:683
A 2 element vector with single floats.
Definition xrt_defines.h:268
A 3 element vector with single floats.
Definition xrt_defines.h:289
Common defines and enums for XRT.