├── README.md ├── json_msgs ├── CMakeLists.txt ├── action │ └── Json.action ├── msg │ └── JsonMsg.msg ├── package.xml └── srv │ └── JsonSrv.srv └── soundloc ├── CMakeLists.txt ├── package.xml ├── soundloc.launch ├── soundloc_config.yaml └── src ├── mcmcda ├── MultiTargetTracker.hpp ├── Track.hpp ├── kalman.conf ├── matrix.cpp ├── matrix.h ├── mcmcda.conf ├── mcmcda.hpp ├── munkres.cpp ├── munkres.h ├── partition.hpp ├── posterior.hpp ├── proposal.hpp ├── proposal2.hpp ├── scans.hpp ├── utils.cpp └── utils.hpp ├── multisoundloc ├── multisoundloc.cpp └── multisoundloc.h └── soundloc_multi.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/README.md -------------------------------------------------------------------------------- /json_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/json_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /json_msgs/action/Json.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/json_msgs/action/Json.action -------------------------------------------------------------------------------- /json_msgs/msg/JsonMsg.msg: -------------------------------------------------------------------------------- 1 | string json 2 | -------------------------------------------------------------------------------- /json_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/json_msgs/package.xml -------------------------------------------------------------------------------- /json_msgs/srv/JsonSrv.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/json_msgs/srv/JsonSrv.srv -------------------------------------------------------------------------------- /soundloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/CMakeLists.txt -------------------------------------------------------------------------------- /soundloc/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/package.xml -------------------------------------------------------------------------------- /soundloc/soundloc.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/soundloc.launch -------------------------------------------------------------------------------- /soundloc/soundloc_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/soundloc_config.yaml -------------------------------------------------------------------------------- /soundloc/src/mcmcda/MultiTargetTracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/MultiTargetTracker.hpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/Track.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/Track.hpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/kalman.conf: -------------------------------------------------------------------------------- 1 | 5 2 | 0.1 3 | 2 4 | 0.5 5 | -------------------------------------------------------------------------------- /soundloc/src/mcmcda/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/matrix.cpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/matrix.h -------------------------------------------------------------------------------- /soundloc/src/mcmcda/mcmcda.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/mcmcda.conf -------------------------------------------------------------------------------- /soundloc/src/mcmcda/mcmcda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/mcmcda.hpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/munkres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/munkres.cpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/munkres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/munkres.h -------------------------------------------------------------------------------- /soundloc/src/mcmcda/partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/partition.hpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/posterior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/posterior.hpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/proposal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/proposal.hpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/proposal2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/proposal2.hpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/scans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/scans.hpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/utils.cpp -------------------------------------------------------------------------------- /soundloc/src/mcmcda/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/mcmcda/utils.hpp -------------------------------------------------------------------------------- /soundloc/src/multisoundloc/multisoundloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/multisoundloc/multisoundloc.cpp -------------------------------------------------------------------------------- /soundloc/src/multisoundloc/multisoundloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/multisoundloc/multisoundloc.h -------------------------------------------------------------------------------- /soundloc/src/soundloc_multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balkce/soundloc/HEAD/soundloc/src/soundloc_multi.cpp --------------------------------------------------------------------------------