Closed hzxie closed 3 weeks ago
So what does that matter?
Nothing affects. But makes me confused.
Please disregard this part. Initially, cur_polyline had many features, and we removed some unnecessary ones by indexing and concatenation. However, due to later code modifications, the indices used for concatenation changed, so this approach no longer serves a purpose.
I see. Thanks for your reply.
It appears that the code
cur_polyline = np.concatenate((cur_polyline[:, 0:3], cur_polyline[:, 3:]), axis=-1)
may not be necessary, as it seems to be reassemblingcur_polyline
without making any changes.https://github.com/rainmaker22/SMART/blob/55947594ed2e499010cfc03a5d3d45e128ab3ec4/data_preprocess.py#L535
https://github.com/rainmaker22/SMART/blob/55947594ed2e499010cfc03a5d3d45e128ab3ec4/data_preprocess.py#L547
https://github.com/rainmaker22/SMART/blob/55947594ed2e499010cfc03a5d3d45e128ab3ec4/data_preprocess.py#L558
https://github.com/rainmaker22/SMART/blob/55947594ed2e499010cfc03a5d3d45e128ab3ec4/data_preprocess.py#L579
https://github.com/rainmaker22/SMART/blob/55947594ed2e499010cfc03a5d3d45e128ab3ec4/data_preprocess.py#L588