You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to create my own node for toolpath_finder (similar to halfedge_finder) which uses surface_raster_planner_server to request planners for a mesh. I am getting different results with this as compared to running using
Kindly find my toolapth_finder.cpp code. Any help will be appreciated. Note : For now I have kept same config both in tool.yaml and RasterPathGenerator::generateDefaultToolConfig() functio. Also, using the same surafce_raster_planner_server.cpp with a change as mentioned in this issue to avoid segfault.
tool.yaml config file
pt_spacing: 0.05
line_spacing: 0.15
tool_offset: 0.0 # currently unused
intersecting_plane_height: 0.2 # 0.5 works best, not sure if this should be included in the tool
min_hole_size: 0.01
min_segment_size: 0.01
raster_angle: 0.0
raster_wrt_global_axes: false
generate_extra_rasters: true
#cut_norm_x: -8.0
#cut_norm_y: 0.0
#cut_norm_z: 0.0
#centroid_x: 5.0
#centroid_y: 43
#centroid_z: 6.0
debug_on: false
tool_path_planner::ProcessTool RasterPathGenerator::generateDefaultToolConfig()
{
tool_path_planner::ProcessTool tool;
tool.pt_spacing = 0.05;
tool.line_spacing = 0.15;
tool.tool_offset = 0.0; // currently unused
tool.intersecting_plane_height = 0.2; // 0.5 works best, not sure if this should be included in the tool
tool.min_hole_size = 0.01;
tool.min_segment_size = 0.01;
tool.raster_angle = 0.0;
tool.raster_wrt_global_axes = false;
tool.generate_extra_rasters = true;
return tool;
}
The text was updated successfully, but these errors were encountered:
shubhamwagh
changed the title
Simple node for surface raster planner to visulaize it in rviz (similar to edgepaths)
Simple node for surface raster planner for RViz visualization (similar to edgepaths)
Sep 10, 2020
I tried to create my own node for toolpath_finder (similar to halfedge_finder) which uses surface_raster_planner_server to request planners for a mesh. I am getting different results with this as compared to running using
roslaunch noether_examples surf_raster_planner_demo.launch
.Kindly find my toolapth_finder.cpp code. Any help will be appreciated.
Note : For now I have kept same config both in
tool.yaml
andRasterPathGenerator::generateDefaultToolConfig()
functio. Also, using the samesurafce_raster_planner_server.cpp
with a change as mentioned in this issue to avoid segfault.tool.yaml config file
toolpath_finder.cpp
The text was updated successfully, but these errors were encountered: