A-SW Hub / Repositories
Local Gitea · READ ONLY
← 저장소 Repositories
REPOSITORY

jbnu/sensor-fusion-localization Private

[참조 MVP] 센서융합 측위 A-SW — GNSS와 주행 추정값을 품질 가중치로 융합해 연속적인 위치를 제공합니다.

https://git.agrithing.ai/jbnu/sensor-fusion-localization.git
6 commits
1 items · main
·/ tests/component_test.cpp
text · 199 B · 9cf3b4d Download
#include "component.hpp"#include <cassert>int main() { const auto pose = asw::fuse(10.2, 4.9, 0.9, 9.8, 5.1, 0.7); assert(pose.x > 10 && pose.x < 10.2); assert(pose.confidence == 0.8); return 0; }