Error or exeption caught::Trying to initialize a DQ with a size of 0 which is not allowed. #20
Replies: 1 comment 1 reply
-
Hi, @AkaneUnosawa. From my understanding of this, this is not a DQ Robotics problem. One of these statements is not initializing a DQ correctly. Which one, in particular, I am not able to answer. arm1_->initialize(cfg_.robot1_parameter_file_path, q1, &vrep_interface_);
arm2_->initialize(cfg_.robot2_parameter_file_path, q2, &vrep_interface_);
arm1_->set_partner(arm2_.get());
arm2_->set_partner(arm1_.get());
robot1_kinematics_provider_->send_reference_frame(arm1_->get_reference_frame());
robot2_kinematics_provider_->send_reference_frame(arm2_->get_reference_frame());
vrep_interface_.set_object_translation("rcm1", arm1_->rcm_translation());
vrep_interface_.set_object_translation("rcm2", arm2_->rcm_translation()); Please check if all these statements are returning a proper object. This would be how I'd start the search for the problem. arm1_->get_reference_frame()
arm2_->get_reference_frame()
arm1_->rcm_translation()
arm2_->rcm_translation() Kind regards, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, everyone.
I tried to do automation then I'm getting this error, is there a problem with the kinematics and DQ module settings?
Error or exeption caught::Trying to initialize a DQ with a size of 0 which is not allowed.
There seems to be a problem with the FlexibleSmartArm part of
Beta Was this translation helpful? Give feedback.
All reactions