forked from isl-org/Open3D-PointNet2-Semantic3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
predict.py
205 lines (174 loc) · 6.99 KB
/
predict.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import argparse
import os
import json
import numpy as np
import tensorflow as tf
import open3d
import time
import model
from dataset.semantic_dataset import SemanticDataset
from util.metric import ConfusionMatrix
from tf_ops.tf_interpolate import interpolate_label_with_color
class Predictor:
def __init__(self, checkpoint_path, num_classes, hyper_params):
# Get ops from graph
with tf.device("/gpu:0"):
# Placeholder
pl_points, _, _ = model.get_placeholders(
hyper_params["num_point"], hyperparams=hyper_params
)
pl_is_training = tf.placeholder(tf.bool, shape=())
print("pl_points shape", tf.shape(pl_points))
# Prediction
pred, _ = model.get_model(
pl_points, pl_is_training, num_classes, hyperparams=hyper_params
)
# Saver
saver = tf.train.Saver()
# Graph for interpolating labels
# Assuming batch_size == 1 for simplicity
pl_sparse_points = tf.placeholder(tf.float32, (None, 3))
pl_sparse_labels = tf.placeholder(tf.int32, (None,))
pl_dense_points = tf.placeholder(tf.float32, (None, 3))
pl_knn = tf.placeholder(tf.int32, ())
dense_labels, dense_colors = interpolate_label_with_color(
pl_sparse_points, pl_sparse_labels, pl_dense_points, pl_knn
)
self.ops = {
"pl_points": pl_points,
"pl_is_training": pl_is_training,
"pred": pred,
"pl_sparse_points": pl_sparse_points,
"pl_sparse_labels": pl_sparse_labels,
"pl_dense_points": pl_dense_points,
"pl_knn": pl_knn,
"dense_labels": dense_labels,
"dense_colors": dense_colors,
}
# Restore checkpoint to session
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
config.allow_soft_placement = True
config.log_device_placement = False
self.sess = tf.Session(config=config)
saver.restore(self.sess, checkpoint_path)
print("Model restored")
def predict(self, batch_data, run_metadata=None, run_options=None):
"""
Args:
batch_data: batch_size * num_point * 6(3)
Returns:
pred_labels: batch_size * num_point * 1
"""
is_training = False
feed_dict = {
self.ops["pl_points"]: batch_data,
self.ops["pl_is_training"]: is_training,
}
if run_metadata is None:
run_metadata = tf.RunMetadata()
if run_options is None:
run_options = tf.RunOptions()
pred_val = self.sess.run(
[self.ops["pred"]],
options=run_options,
run_metadata=run_metadata,
feed_dict=feed_dict,
)
pred_val = pred_val[0] # batch_size * num_point * 1
pred_labels = np.argmax(pred_val, 2) # batch_size * num_point * 1
return pred_labels
def interpolate_labels(self, sparse_points, sparse_labels, dense_points):
s = time.time()
dense_labels, dense_colors = self.sess.run(
self.ops["sparse_indices"],
feed_dict={
self.ops["pl_sparse_points"]: sparse_points,
self.ops["pl_sparse_labels"]: sparse_labels,
self.ops["pl_dense_points"]: dense_points,
self.ops["pl_knn"]: 3,
},
)
print("sess.run interpolate_labels time", time.time() - s)
return dense_labels, dense_colors
if __name__ == "__main__":
np.random.seed(0)
# Parser
parser = argparse.ArgumentParser()
parser.add_argument(
"--num_samples",
type=int,
default=8,
help="# samples, each contains num_point points_centered",
)
parser.add_argument("--ckpt", default="", help="Checkpoint file")
parser.add_argument("--set", default="validation", help="train, validation, test")
flags = parser.parse_args()
hyper_params = json.loads(open("semantic.json").read())
# Create output dir
output_dir = os.path.join("result", "sparse")
os.makedirs(output_dir, exist_ok=True)
# Dataset
dataset = SemanticDataset(
num_points_per_sample=hyper_params["num_point"],
split=flags.set,
box_size_x=hyper_params["box_size_x"],
box_size_y=hyper_params["box_size_y"],
use_color=hyper_params["use_color"],
path=hyper_params["data_path"],
)
# Model
batch_size = 64
predictor = Predictor(
checkpoint_path=flags.ckpt,
num_classes=dataset.num_classes,
hyper_params=hyper_params,
)
# Process each file
cm = ConfusionMatrix(9)
for semantic_file_data in dataset.list_file_data:
print("Processing {}".format(semantic_file_data))
# Predict for num_samples times
points_collector = []
pd_labels_collector = []
# If flags.num_samples < batch_size, will predict one batch
for batch_index in range(int(np.ceil(flags.num_samples / batch_size))):
current_batch_size = min(
batch_size, flags.num_samples - batch_index * batch_size
)
# Get data
points_centered, points, gt_labels, colors = semantic_file_data.sample_batch(
batch_size=current_batch_size,
num_points_per_sample=hyper_params["num_point"],
)
# (bs, 8192, 3) concat (bs, 8192, 3) -> (bs, 8192, 6)
if hyper_params["use_color"]:
points_centered_with_colors = np.concatenate(
(points_centered, colors), axis=-1
)
else:
points_centered_with_colors = points_centered
# Predict
s = time.time()
pd_labels = predictor.predict(points_centered_with_colors)
print(
"Batch size: {}, time: {}".format(current_batch_size, time.time() - s)
)
# Save to collector for file output
points_collector.extend(points)
pd_labels_collector.extend(pd_labels)
# Increment confusion matrix
cm.increment_from_list(gt_labels.flatten(), pd_labels.flatten())
# Save sparse point cloud and predicted labels
file_prefix = os.path.basename(semantic_file_data.file_path_without_ext)
sparse_points = np.array(points_collector).reshape((-1, 3))
pcd = open3d.PointCloud()
pcd.points = open3d.Vector3dVector(sparse_points)
pcd_path = os.path.join(output_dir, file_prefix + ".pcd")
open3d.write_point_cloud(pcd_path, pcd)
print("Exported sparse pcd to {}".format(pcd_path))
sparse_labels = np.array(pd_labels_collector).astype(int).flatten()
pd_labels_path = os.path.join(output_dir, file_prefix + ".labels")
np.savetxt(pd_labels_path, sparse_labels, fmt="%d")
print("Exported sparse labels to {}".format(pd_labels_path))
cm.print_metrics()