What are the possible outputs of a tesseract trajectory? #117
-
Hi, I'm investigating if tesseract and trajopt can be used in our workflow. Would this be possible and viable with tesseract? I noticed that the trajectory published to For context, we plan to use for 3d printing complex shapes |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
We currently do this on several of our projects leveraging robodk_post_processors for writing the native program. You are correct that the display joint trajectory can be huge but the underlining output of the process planners can provide finer resolution. I assume for 3D printing you need to execute a series of rasters which is similar to grinding, sanding, and painting. In several of our applications we leverage one of the raster process planners which returns a composite instruction which is a vector of composites instructions starting with the transition from home, first raster, transition, ..... repeats for all rasters then a transition to home. We would then write a separate program for each of the sub composite instructions (from home, raster, transition, ...) and FTP to the robot. If a single raster, transition, etc is too large I would then use the trajectory interpolator found within tesseract_visualization to resample the trajectory at a courser resolution. Hope this is helpful. |
Beta Was this translation helpful? Give feedback.
We currently do this on several of our projects leveraging robodk_post_processors for writing the native program. You are correct that the display joint trajectory can be huge but the underlining output of the process planners can provide finer resolution. I assume for 3D printing you need to execute a series of rasters which is similar to grinding, sanding, and painting. In several of our applications we leverage one of the raster process planners which returns a composite instruction which is a vector of composites instructions starting with the transition from home, first raster, transition, ..... repeats for all rasters then a transi…