05-04-2026, 12:27 PM
At the moment, I am trying to integrate OMPL into RoboDK to use planners such as PRM*, RRT, and FMT*. Scene extraction from RoboDK to Python is already working (robot model, obstacles, joint limits, start/goal configurations).
My current challenge is collision checking:
OMPL runs, but some generated paths are not feasible. I suspect the issue is with the synchronization between OMPL(Python script) and RoboDK’s collision checker (currently using
).
A few questions:
My current challenge is collision checking:
OMPL runs, but some generated paths are not feasible. I suspect the issue is with the synchronization between OMPL(Python script) and RoboDK’s collision checker (currently using
Code:
return self.RDK.Collisions() == 0A few questions:
- Has anyone successfully integrated OMPL directly with RoboDK?
- How is collision checking handled in RoboDK’s internal PRM implementation?
- Is there a way to query the minimum distance between the robot and obstacles, rather than only checking for collisions?

