Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SE3 Error #16

Open
xtream111 opened this issue Jun 2, 2020 · 1 comment
Open

SE3 Error #16

xtream111 opened this issue Jun 2, 2020 · 1 comment

Comments

@xtream111
Copy link

xtream111 commented Jun 2, 2020

When I try to run the live script from chapter 15, this part from the second section

P = mkgrid( 2, 0.5, 'pose', SE3(0,0,3) );

gives me the following error

`The class SE3 has no Constant property or Static method named 'check'. Error in mkgrid (line 72)

p=SE3.check(opt.pose)*p;`

Why is this happening and what is the solution.

Thanks

@allbluelai
Copy link

In PBVS.m, change the code

            %vs.camera.clf();
            vs.camera.T = SE3.check(vs.T0);    % set camera back to its initial pose
            vs.Tcam = SE3.check(vs.T0);        % initial camera/robot pose

to

            %vs.camera.clf();
            vs.camera.T = SE3.convert(vs.T0);    % set camera back to its initial pose
            vs.Tcam = SE3.convert(vs.T0);        % initial camera/robot pose

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants