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.
![Screenshot from 2024-07-22 03-08-17](https://private-user-images.githubusercontent.com/132998010/350925823-f8d9165b-ed34-4dbe-a605-4db640b5d49a.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2MjQ4MzIsIm5iZiI6MTczOTYyNDUzMiwicGF0aCI6Ii8xMzI5OTgwMTAvMzUwOTI1ODIzLWY4ZDkxNjViLWVkMzQtNGRiZS1hNjA1LTRkYjY0MGI1ZDQ5YS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjE1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxNVQxMzAyMTJaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT02NDQwZjJlM2YwZjcxOWE3NzQxZGVhNjhiNjcwZjY5NjVlMjFkNTQ3MDBlNGJjMGI2ODgzY2E0MWZkYzMyZDk5JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.LCNxca-Mjm9NTehCMUFxKbk5ojYE37it4cO7l-ASKDw)
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