Skip to content
Snippets Groups Projects
Commit 2250292c authored by Fabian Reister's avatar Fabian Reister
Browse files

Update ArmarDEConverter.cpp: fixing ARMARX_CHECKs

parent 2c977094
No related branches found
No related tags found
1 merge request!436added uint support and 2 more tof sensor values
Pipeline #18150 failed
This commit is part of merge request !436. Comments created here will be created in the context of that merge request.
......@@ -203,7 +203,7 @@ namespace armarx::armem::server::robot_state::exteroception
const int idx = std::stoi(elements.at(1));
ARMARX_CHECK_LESS(idx, tof.depth.size());
ARMARX_CHECK_LESS(idx, tof.sigma.size());
// we don't allow dynamic ToF size atm
// if (tof.array.size() < (idx + 1))
......@@ -251,7 +251,7 @@ namespace armarx::armem::server::robot_state::exteroception
const int idx = std::stoi(elements.at(1));
ARMARX_CHECK_LESS(idx, tof.depth.size());
ARMARX_CHECK_LESS(idx, tof.targetDetected.size());
// we don't allow dynamic ToF size atm
// if (tof.array.size() < (idx + 1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment