-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathhelper_dp.py
121 lines (104 loc) · 4.99 KB
/
helper_dp.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
import pandas as pd
import numpy as np
import colorsys, random, os, sys
from os.path import join
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.append(BASE_DIR)
sys.path.append(os.path.join(BASE_DIR, 'utils'))
import cpp_wrappers.cpp_subsampling.grid_subsampling as cpp_subsampling
import nearest_neighbors.lib.python.nearest_neighbors as nearest_neighbors
class DataProcessing:
@staticmethod
def load_pc_semantic3d(filename):
pc_pd = pd.read_csv(filename, header=None, delim_whitespace=True, dtype=np.float16)
pc = pc_pd.values
return pc
@staticmethod
def load_label_semantic3d(filename):
label_pd = pd.read_csv(filename, header=None, delim_whitespace=True, dtype=np.uint8)
cloud_labels = label_pd.values
return cloud_labels
@staticmethod
def knn_search(support_pts, query_pts, k):
"""
:param support_pts: points you have, B*N1*3
:param query_pts: points you want to know the neighbour index, B*N2*3
:param k: Number of neighbours in knn search
:return: neighbor_idx: neighboring points indexes, B*N2*k
"""
neighbor_idx = nearest_neighbors.knn_batch(support_pts, query_pts, k, omp=True)
return neighbor_idx.astype(np.int32)
@staticmethod
def data_aug(xyz, color, labels, idx, num_out):
num_in = len(xyz)
dup = np.random.choice(num_in, num_out - num_in)
xyz_dup = xyz[dup, ...]
xyz_aug = np.concatenate([xyz, xyz_dup], 0)
color_dup = color[dup, ...]
color_aug = np.concatenate([color, color_dup], 0)
idx_dup = list(range(num_in)) + list(dup)
idx_aug = idx[idx_dup]
label_aug = labels[idx_dup]
return xyz_aug, color_aug, idx_aug, label_aug
@staticmethod
def shuffle_idx(x):
# random shuffle the index
idx = np.arange(len(x))
np.random.shuffle(idx)
return x[idx]
@staticmethod
def grid_sub_sampling(points, features=None, labels=None, grid_size=0.1, verbose=0):
"""
CPP wrapper for a grid sub_sampling (method = barycenter for points and features
:param points: (N, 3) matrix of input points
:param features: optional (N, d) matrix of features (floating number)
:param labels: optional (N,) matrix of integer labels
:param grid_size: parameter defining the size of grid voxels
:param verbose: 1 to display
:return: sub_sampled points, with features and/or labels depending of the input
"""
if (features is None) and (labels is None):
return cpp_subsampling.compute(points, sampleDl=grid_size, verbose=verbose)
elif labels is None:
return cpp_subsampling.compute(points, features=features, sampleDl=grid_size, verbose=verbose)
elif features is None:
return cpp_subsampling.compute(points, classes=labels, sampleDl=grid_size, verbose=verbose)
else:
return cpp_subsampling.compute(points, features=features, classes=labels, sampleDl=grid_size,
verbose=verbose)
@staticmethod
def IoU_from_confusions(confusions):
"""
Computes IoU from confusion matrices.
:param confusions: ([..., n_c, n_c] np.int32). Can be any dimension, the confusion matrices should be described by
the last axes. n_c = number of classes
:return: ([..., n_c] np.float32) IoU score
"""
# Compute TP, FP, FN. This assume that the second to last axis counts the truths (like the first axis of a
# confusion matrix), and that the last axis counts the predictions (like the second axis of a confusion matrix)
TP = np.diagonal(confusions, axis1=-2, axis2=-1)
TP_plus_FN = np.sum(confusions, axis=-1)
TP_plus_FP = np.sum(confusions, axis=-2)
# Compute IoU
IoU = TP / (TP_plus_FP + TP_plus_FN - TP + 1e-6)
# Compute mIoU with only the actual classes
mask = TP_plus_FN < 1e-3
counts = np.sum(1 - mask, axis=-1, keepdims=True)
mIoU = np.sum(IoU, axis=-1, keepdims=True) / (counts + 1e-6)
# If class is absent, place mIoU in place of 0 IoU to get the actual mean later
IoU += mask * mIoU
return IoU
@staticmethod
def get_class_weights(dataset_name):
# pre-calculate the number of points in each category
num_per_class = []
if dataset_name is 'S3DIS':
num_per_class = np.array([3370714, 2856755, 4919229, 318158, 375640, 478001, 974733,
650464, 791496, 88727, 1284130, 229758, 2272837], dtype=np.int32)
elif dataset_name is 'Semantic3D':
num_per_class = np.array([5181602, 5012952, 6830086, 1311528, 10476365, 946982, 334860, 269353],
dtype=np.int32)
weight = num_per_class / float(sum(num_per_class))
ce_label_weight = 1 / (weight + 0.02)
return np.expand_dims(ce_label_weight, axis=0)