File size: 18,764 Bytes
26225c5 | 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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 | import os
import sys
import glob
import torch
import shutil
import logging
import pandas as pd
import os.path as osp
from typing import List
from torch_geometric.data import extract_zip
from src.datasets import BaseDataset
from src.data import Data, Batch, InstanceData, CSRBatch
from src.datasets.s3dis_config import *
from src.utils import available_cpu_count, starmap_with_kwargs, \
rodrigues_rotation_matrix, to_float_rgb
from src.transforms import RoomPosition
DIR = osp.dirname(osp.realpath(__file__))
log = logging.getLogger(__name__)
__all__ = ['S3DIS', 'MiniS3DIS']
########################################################################
# Utils #
########################################################################
def read_s3dis_area(
area_dir: str,
xyz: bool = True,
rgb: bool = True,
semantic: bool = True,
instance: bool = True,
xyz_room: bool = False,
align: bool = False,
is_val: bool = True,
verbose: bool = False,
processes: int = -1
) -> Data:
"""Read all S3DIS object-wise annotations in a given Area directory.
All room-wise data are accumulated into a single cloud.
:param area_dir: str
Absolute path to the Area directory, eg: '/some/path/Area_1'
:param xyz: bool
Whether XYZ coordinates should be saved in the output Data.pos
:param rgb: bool
Whether RGB colors should be saved in the output Data.rgb
:param semantic: bool
Whether semantic labels should be saved in the output Data.y
:param instance: bool
Whether instance labels should be saved in the output Data.obj
:param xyz_room: bool
Whether the canonical room coordinates should be saved in the
output Data.pos_room, as defined in the S3DIS paper section 3.2:
https://openaccess.thecvf.com/content_cvpr_2016/papers/Armeni_3D_Semantic_Parsing_CVPR_2016_paper.pdf
:param align: bool
Whether the room should be rotated to its canonical orientation,
as defined in the S3DIS paper section 3.2:
https://openaccess.thecvf.com/content_cvpr_2016/papers/Armeni_3D_Semantic_Parsing_CVPR_2016_paper.pdf
:param is_val: bool
Whether the output `Batch.is_val` should carry a boolean label
indicating whether they belong to the Area validation split
:param verbose: bool
Verbosity
:param processes: int
Number of processes to use when reading rooms. `processes < 1`
will use all CPUs available
:return:
Batch of accumulated points clouds
"""
# List the object-wise annotation files in the room
room_directories = sorted(
[x for x in glob.glob(osp.join(area_dir, '*')) if osp.isdir(x)])
# Read all rooms in the Area and concatenate point clouds in a Batch
processes = available_cpu_count() if processes < 1 else processes
args_iter = [[r] for r in room_directories]
kwargs_iter = {
'xyz': xyz, 'rgb': rgb, 'semantic': semantic, 'instance': instance,
'xyz_room': xyz_room, 'align': align, 'is_val': is_val,
'verbose': verbose}
batch = Batch.from_data_list(starmap_with_kwargs(
read_s3dis_room, args_iter, kwargs_iter, processes=processes))
# Convert from Batch to Data. Little hacky. We do this because we do
# not want to store the Batch object but just a big Data object here
# Why not store the Batch ? Because some pretransforms (e.g.
# GridSampling3D) will want to treat the batch in a special way, but
# we want the preprocessing to be agnostic to the room subdivision
data_dict = batch.to_dict()
data_dict = {
k: v for k, v in data_dict.items()
if k not in ['batch', 'ptr', '_slice_dict', '_inc_dict', '_num_graphs']}
for k, v in data_dict.items():
if isinstance(v, CSRBatch):
data_dict[k] = v.get_base_class()(
v.pointers,
*v.values,
dense=False,
is_index_value=v.is_index_value)
data = Data(**data_dict)
return data
def read_s3dis_room(
room_dir: str,
xyz: bool = True,
rgb: bool = True,
semantic: bool = True,
instance: bool = True,
xyz_room: bool = False,
align: bool = False,
is_val: bool = True,
verbose: bool = False
) -> Data:
"""Read all S3DIS object-wise annotations in a given room directory.
:param room_dir: str
Absolute path to the room directory, eg:
'/some/path/Area_1/office_1'
:param xyz: bool
Whether XYZ coordinates should be saved in the output `Data.pos`
:param rgb: bool
Whether RGB colors should be saved in the output `Data.rgb`
:param semantic: bool
Whether semantic labels should be saved in the output `Data.y`
:param instance: bool
Whether instance labels should be saved in the output `Data.obj`
:param xyz_room: bool
Whether the canonical room coordinates should be saved in the
output Data.pos_room, as defined in the S3DIS paper section 3.2:
https://openaccess.thecvf.com/content_cvpr_2016/papers/Armeni_3D_Semantic_Parsing_CVPR_2016_paper.pdf
:param align: bool
Whether the room should be rotated to its canonical orientation,
as defined in the S3DIS paper section 3.2:
https://openaccess.thecvf.com/content_cvpr_2016/papers/Armeni_3D_Semantic_Parsing_CVPR_2016_paper.pdf
:param is_val: bool
Whether the output `Data.is_val` should carry a boolean label
indicating whether they belong to their Area validation split
:param verbose: bool
Verbosity
:return: Data
"""
if verbose:
log.debug(f"Reading room: {room_dir}")
# Initialize accumulators for xyz, RGB, semantic label and instance
# label
xyz_list = [] if xyz else None
rgb_list = [] if rgb else None
y_list = [] if semantic else None
obj_list = [] if instance else None
# List the object-wise annotation files in the room
objects = sorted(glob.glob(osp.join(room_dir, 'Annotations', '*.txt')))
# 'Area_5/office_36' contains two 'wall_3' annotation files, so we
# manually remove the unwanted one
objects = [
p for p in objects
if not p.endswith("Area_5/office_36/Annotations/wall_3 (1).txt")]
for i_object, path in enumerate(objects):
object_name = osp.splitext(osp.basename(path))[0]
if verbose:
log.debug(f"Reading object {i_object}: {object_name}")
# Remove the trailing number in the object name to isolate the
# object class (e.g. 'chair_24' -> 'chair')
object_class = object_name.split('_')[0]
# Convert object class string to int label. Note that by default
# if an unknown class is read, it will be treated as 'clutter'.
# This is necessary because an unknown 'staris' class can be
# found in some rooms
label = OBJECT_LABEL.get(object_class, OBJECT_LABEL['clutter'])
points = pd.read_csv(path, sep=' ', header=None).values
if xyz:
xyz_list.append(
np.ascontiguousarray(points[:, 0:3], dtype='float32'))
if rgb:
try:
rgb_list.append(
np.ascontiguousarray(points[:, 3:6], dtype='uint8'))
except ValueError:
rgb_list.append(np.zeros((points.shape[0], 3), dtype='uint8'))
log.warning(f"WARN - corrupted rgb data for file {path}")
if semantic:
y_list.append(np.full(points.shape[0], label, dtype='int64'))
if instance:
obj_list.append(np.full(points.shape[0], i_object, dtype='int64'))
# Concatenate and convert to torch
xyz_data = torch.from_numpy(np.concatenate(xyz_list, 0)) if xyz else None
rgb_data = to_float_rgb(torch.from_numpy(np.concatenate(rgb_list, 0))) \
if rgb else None
y_data = torch.from_numpy(np.concatenate(y_list, 0)) if semantic else None
# Store into a Data object
pos_offset = torch.zeros_like(xyz_data[0]) if xyz else None
data = Data(pos=xyz_data, pos_offset=pos_offset, rgb=rgb_data, y=y_data)
# Store instance labels in InstanceData format
if instance:
idx = torch.arange(data.num_points)
obj = torch.from_numpy(np.concatenate(obj_list, 0))
count = torch.ones_like(obj)
y = torch.from_numpy(np.concatenate(y_list, 0))
data.obj = InstanceData(idx, obj, count, y, dense=True)
# Add is_val attribute if need be
if is_val:
data.is_val = torch.ones(data.num_nodes, dtype=torch.bool) * (
osp.basename(room_dir) in VALIDATION_ROOMS)
# Exit here if canonical orientations are not needed
if not xyz_room and not align:
return data
# Recover the canonical rotation angle for the room at hand. NB:
# this assumes the raw files are stored in the S3DIS structure:
# raw/
# βββ Area_{{i_area: 1 > 6}}/
# βββ Area_{{i_area: 1 > 6}}_alignmentAngle.txt
# βββ {{room_dir}}
# βββ ...
area_dir = osp.dirname(room_dir)
area = osp.basename(osp.dirname(room_dir))
room_name = osp.basename(room_dir)
alignment_file = osp.join(area_dir, f'{area}_alignmentAngle.txt')
alignments = pd.read_csv(
alignment_file, sep=' ', header=None, skiprows=2).values
angle = float(alignments[np.where(alignments[:, 0] == room_name), 1])
# Matrix to rotate the room to its canonical orientation
R = rodrigues_rotation_matrix(torch.FloatTensor([0, 0, 1]), angle)
# Rotate the room
pos_bkp = data.pos
data.pos = data.pos @ R
# Save the required attributes
if xyz_room:
data = RoomPosition()(data)
if not align:
data.pos = pos_bkp
return data
########################################################################
# S3DIS #
########################################################################
class S3DIS(BaseDataset):
"""S3DIS dataset, for Area-wise prediction.
Note: we are using the S3DIS version with non-aligned rooms, which
contains `Area_{{i_area:1>6}}_alignmentAngle.txt` files. Make sure
you are not using the aligned version.
Dataset website: http://buildingparser.stanford.edu/dataset.html
Parameters
----------
root : `str`
Root directory where the dataset should be saved.
fold : `int`
Integer in [1, ..., 6] indicating the Test Area
with_stuff: `bool`
By default, S3DIS does not have any stuff class. If `with_stuff`
is True, the 'ceiling', 'wall', and 'floor' classes will be
treated as stuff
stage : {'train', 'val', 'test', 'trainval'}
transform : `callable`
transform function operating on data.
pre_transform : `callable`
pre_transform function operating on data.
pre_filter : `callable`
pre_filter function operating on data.
on_device_transform: `callable`
on_device_transform function operating on data, in the
'on_after_batch_transfer' hook. This is where GPU-based
augmentations should be, as well as any Transform you do not
want to run in CPU-based DataLoaders
"""
_form_url = FORM_URL
_zip_name = ZIP_NAME
_aligned_zip_name = ALIGNED_ZIP_NAME
_unzip_name = UNZIP_NAME
def __init__(
self,
*args,
fold: int = 5,
with_stuff: bool = False,
**kwargs):
self.fold = fold
self.with_stuff = with_stuff
super().__init__(*args, val_mixed_in_train=True, **kwargs)
@property
def pre_transform_hash(self) -> str:
"""Produce a unique but stable hash based on the dataset's
`pre_transform` attributes (as exposed by `_repr`).
For S3DIS, we want the hash to detect if the stuff classes are
the default ones.
"""
suffix = '_with_stuff' if self.with_stuff else ''
return super().pre_transform_hash + suffix
@property
def class_names(self) -> List[str]:
"""List of string names for dataset classes. This list must be
one-item larger than `self.num_classes`, with the last label
corresponding to 'void', 'unlabelled', 'ignored' classes,
indicated as `y=self.num_classes` in the dataset labels.
"""
return CLASS_NAMES
@property
def num_classes(self) -> int:
"""Number of classes in the dataset. Must be one-item smaller
than `self.class_names`, to account for the last class name
being used for 'void', 'unlabelled', 'ignored' classes,
indicated as `y=self.num_classes` in the dataset labels.
"""
return S3DIS_NUM_CLASSES
@property
def stuff_classes(self) -> List[int]:
"""List of 'stuff' labels for INSTANCE and PANOPTIC
SEGMENTATION (setting this is NOT REQUIRED FOR SEMANTIC
SEGMENTATION alone). By definition, 'stuff' labels are labels in
`[0, self.num_classes-1]` which are not 'thing' labels.
In instance segmentation, 'stuff' classes are not taken into
account in performance metrics computation.
In panoptic segmentation, 'stuff' classes are taken into account
in performance metrics computation. Besides, each cloud/scene
can only have at most one instance of each 'stuff' class.
IMPORTANT:
By convention, we assume `y β [0, self.num_classes-1]` ARE ALL
VALID LABELS (i.e. not 'ignored', 'void', 'unknown', etc), while
`y < 0` AND `y >= self.num_classes` ARE VOID LABELS.
"""
return STUFF_CLASSES_MODIFIED if self.with_stuff else STUFF_CLASSES
@property
def class_colors(self) -> List[List[int]]:
"""Colors for visualization, if not None, must have the same
length as `self.num_classes`. If None, the visualizer will use
the label values in the data to generate random colors.
"""
return CLASS_COLORS
@property
def all_base_cloud_ids(self) -> List[str]:
"""Dictionary holding lists of clouds ids, for each
stage.
The following structure is expected:
`{'train': [...], 'val': [...], 'test': [...]}`
"""
return {
'train': [f'Area_{i}' for i in range(1, 7) if i != self.fold],
'val': [f'Area_{i}' for i in range(1, 7) if i != self.fold],
'test': [f'Area_{self.fold}']}
def download_dataset(self) -> None:
"""Download the S3DIS dataset.
"""
# Manually download the dataset
if not osp.exists(osp.join(self.root, self._zip_name)):
log.error(
f"\nS3DIS does not support automatic download.\n"
f"Please, register yourself by filling up the form at "
f"{self._form_url}\n"
f"From there, manually download the non-aligned rooms"
f"'{self._zip_name}' into your '{self.root}/' directory and "
f"re-run.\n"
f"The dataset will automatically be unzipped into the "
f"following structure:\n"
f"{self.raw_file_structure}\n"
f"β Make sure you DO NOT download the "
f"'{self._aligned_zip_name}' version, which does not contain "
f"the required `Area_{{i_area:1>6}}_alignmentAngle.txt` files."
f"\n")
sys.exit(1)
# Unzip the file and rename it into the `root/raw/` directory. This
# directory contains the raw Area folders from the zip
extract_zip(osp.join(self.root, self._zip_name), self.root)
shutil.rmtree(self.raw_dir)
os.rename(osp.join(self.root, self._unzip_name), self.raw_dir)
def read_single_raw_cloud(self, raw_cloud_path: str) -> 'Data':
"""Read a single raw cloud and return a `Data` object, ready to
be passed to `self.pre_transform`.
This `Data` object should contain the following attributes:
- `pos`: point coordinates
- `y`: OPTIONAL point semantic label
- `obj`: OPTIONAL `InstanceData` object with instance labels
- `rgb`: OPTIONAL point color
- `intensity`: OPTIONAL point LiDAR intensity
IMPORTANT:
By convention, we assume `y β [0, self.num_classes-1]` ARE ALL
VALID LABELS (i.e. not 'ignored', 'void', 'unknown', etc),
while `y < 0` AND `y >= self.num_classes` ARE VOID LABELS.
This applies to both `Data.y` and `Data.obj.y`.
"""
return read_s3dis_area(
raw_cloud_path, xyz=True, rgb=True, semantic=True, instance=True,
xyz_room=True, align=False, is_val=True, verbose=False)
@property
def raw_file_structure(self) -> str:
return f"""
{self.root}/
βββ {self._zip_name}
βββ raw/
βββ Area_{{i_area:1>6}}/
βββ Area_{{i_area:1>6}}_alignmentAngle.txt
βββ ...
"""
@property
def raw_file_names(self) -> str:
"""The file paths to find in order to skip the download."""
area_folders = super().raw_file_names
alignment_files = [
osp.join(a, f"{a}_alignmentAngle.txt") for a in area_folders]
return area_folders + alignment_files
def id_to_relative_raw_path(self, id: str) -> str:
"""Given a cloud id as stored in `self.cloud_ids`, return the
path (relative to `self.raw_dir`) of the corresponding raw
cloud.
"""
return self.id_to_base_id(id)
########################################################################
# MiniS3DIS #
########################################################################
class MiniS3DIS(S3DIS):
"""A mini version of S3DIS with only 1 area per stage for
experimentation.
"""
_NUM_MINI = 1
@property
def all_cloud_ids(self) -> List[str]:
return {k: v[:self._NUM_MINI] for k, v in super().all_cloud_ids.items()}
@property
def data_subdir_name(self) -> str:
return self.__class__.__bases__[0].__name__.lower()
# We have to include this method, otherwise the parent class skips
# processing
def process(self) -> None:
super().process()
# We have to include this method, otherwise the parent class skips
# processing
def download(self) -> None:
super().download()
|