Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
bench
plot_bench_ransac_plane_estimation.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
3
import
matplotlib.pyplot
as
plt
4
import
sys
5
import
csv
6
7
xs = []
8
ys = []
9
for
row
in
csv.reader(open(sys.argv[1],
'r')):
10
if
row:
11
xs.append(row[3])
12
ys.append(row[1])
13
plt.plot(xs, ys)
14
plt.xlabel(
"number of points"
)
15
plt.ylabel(
"Time to estimate plane [sec]"
)
16
plt.interactive(
True
)
17
plt.show()
18
19
while
True
:
20
plt.pause(1)
jsk_pcl_ros
Author(s): Yohei Kakiuchi
autogenerated on Mon May 3 2021 03:03:47