You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Robotics & Machine Vision Toolboxes
hello dear professor,
would you pls guide me how to generate sinusoidal path for a camera attached to the end-effector?
Erik van Oene
unread,
Jan 5, 2017, 4:05:54 AM1/5/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Robotics & Machine Vision Toolboxes
Hi,
In fact the answer is simple. Use the sin function from Matlab. Although I guess this is not the answer you are looking for. There are many ways to do this, but here is one very basic idea of doing it.
Create a time vector t create a for-loop to loop over time
Assuming the initial transformation matrix of the end-effector is given as T0
Calc new setpoint doing something like: >> Tadd = eye(4); Tadd(1,4) = sin(t) % for a sin in x direction. >> T(t) = T0 + Tadd
perform Inverse kinematics using ikine on T(t) with the current q as initial guess.
Good luck. Erik
Op zaterdag 17 december 2016 17:20:20 UTC+1 schreef Yasaman Ghandi: