Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

how to do path planning in 3d numpy array? #36

#1

I have a 3d segmentation map(3d numpy array) which has obstacles and target ,how can i do planning with rrt in this image ,can you please give a refrence example for this?also how to convert this numpy array to a state space containing obstacles ?

  • replies 1
  • views 968
  • likes 0

You would need to subclass the CSpace class and implement the feasible(q), bound, and eps members. See the docs here for more information.

The feasible(q) callback is the essential function to determine whether a point q=[x,y,z] is in collision or not. In other words, it implicitly represents obstacles by returning False when the point is in collision.