Please refer to the installation guide
mRI-Walking:
python tools/create_data.py mri --root-path /parent/of/dataset_release/folder --out-dir data/mripython tools/run_app.py configs/apps/read_and_vis.pypython tools/run_app.py configs/apps/tracking_mri-walking_rkf.pyAll tracker threads consume a signal with the following format:
data = np.stack([
det_obj["x"],
det_obj["y"],
det_obj["z"],
det_obj["doppler"],
det_obj["peakVal"]
], axis=-1)| Tracker Type | Output Format | Description | Example Trackers |
|---|---|---|---|
| Cartesian Tracker | [x, y, z] |
Centroid in Cartesian coordinates | AsteriosTracker, GTracker |
| Polar Tracker | [r, theta, r'] |
Centroid in polar/radial coordinates | RKFTracker |
- The output is always a list of
nd.arrays, each representing the centroid of a detected object.