File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ include("services/ICP_Simple.jl")
40
40
41
41
function __init__ ()
42
42
@require RobotOS= " 22415677-39a4-5241-a37a-00beabbbdae8" include (" services/ROSConversions.jl" )
43
+ @require Gadfly= " c91e804a-d5a3-530f-b6f0-dfbca275c004" include (" services/PlottingUtilsPCL.jl" )
43
44
end
44
45
45
46
Original file line number Diff line number Diff line change
1
+
2
+ @info " Caesar._PCL is loading tools related to Gadfly.jl."
3
+
4
+ # import ..Gadfly as GF
5
+
6
+ # # =====================================================================================
7
+ # # _PCL plotting utils
8
+ # # =====================================================================================
9
+
10
+ # FIXME move pointcloud plotting to Arena.jl instead
11
+ function plotPointCloud (pc:: PointCloud )
12
+ x = (s-> s. data[1 ]). (pc. points)
13
+ y = (s-> s. data[2 ]). (pc. points)
14
+
15
+ Main. Gadfly. plot (x= x,y= y, Main. Gadfly. Geom. point)
16
+ end
You can’t perform that action at this time.
0 commit comments