diff --git a/README.md b/README.md index 01f86e2f5ae4cb5c73da163280fc7bc2699009a1..4c7358cce4d20e7bd59a7ed5121cc8e896ccac3a 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,82 @@ license: mit --- +# Dataset content + +In the following folders you can find: +- `blender` - our animations with scripts used to generate them +- `configs` - configuration files used during the experimetns shown in our paper +- `data` - contains NeRF Synthetic + Our Assets wit appriopriate `sparse_pc.ply` used for initialization of the system +- `permuto_SDF_models` - meshes generated with [PermutoSDF](https://radualexandru.github.io/permuto_sdf/) that we have used for driving the Gaussians + +Dataset lacks the data for Mip-NeRF 360 dataset which can be downloaded from [here](https://jonbarron.info/mipnerf360/) and also fox which can be found [here](https://github.com/NVlabs/instant-ngp). +Additionally Mip-NeRF 360 shoud be processed with: +``` bash +# Do this for every dataset in the folder +cd +ns-process-data images --data . --output-dir . --skip-colmap --skip-image-processin --colmap-model-path sparse/0 +``` + +# Bugs in nerfstudio 1.1.4 + +There were a few bugs in nerfstudio we needed to fix in order to train on Mip-NeRF 360 dataset: + +File: nerfstudio/exporter/exporter_utils.py + +``` python +# Lines 166-172 + +# Change from: +if crop_obb is not None: + mask = crop_obb.within(point) +point = point[mask] +rgb = rgb[mask] +view_direction = view_direction[mask] +if normal is not None: + normal = normal[mask] + +# To: +if crop_obb is not None: + mask = crop_obb.within(point) + point = point[mask] + rgb = rgb[mask] + view_direction = view_direction[mask] + if normal is not None: + normal = normal[mask] + +``` + +File: nerfstudio/model_components/ray_generators.py + +``` python +# Lines 49-50 + +# Change from: +y = ray_indices[:, 1] # row indices +x = ray_indices[:, 2] # col indices + +# To: +y = torch.clamp(ray_indices[:, 1], 0, self.image_coords.shape[0] - 1) # row indices +x = torch.clamp(ray_indices[:, 2], 0, self.image_coords.shape[1] - 1) # col indices + +``` + +File: nerfstudio/utils/eval_utils.py + +``` python +# Line 62 + +# Change from: +loaded_state = torch.load(load_path, map_location="cpu") + +# To: +loaded_state = torch.load(load_path, map_location="cpu", weights_only=False) + +``` + ## 📄 Citation -If you use this dataset, please cite: +If you use our data, please cite: ```bibtex @misc{zielinski2025genie, diff --git a/blender/fox_nodding/Fox_nodding.blend b/blender/fox_nodding/Fox_nodding.blend new file mode 100644 index 0000000000000000000000000000000000000000..2c937c1364eed44c183b34c08ac5fd45d9a3a6a7 --- /dev/null +++ b/blender/fox_nodding/Fox_nodding.blend @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7ac962fc4c340dc44a450a2e858b30afae989b879f45502710ca196f13cd6b +size 10249373 diff --git a/blender/fox_nodding/script.py b/blender/fox_nodding/script.py new file mode 100644 index 0000000000000000000000000000000000000000..309429b20069f1a982ff5ffd58e80de4dea233f3 --- /dev/null +++ b/blender/fox_nodding/script.py @@ -0,0 +1,50 @@ +import bpy +import os + +# Set output directory +output_dir = "blender/fox_nodding/plys" # Change this! + +# Ensure the output directory exists +if not os.path.exists(output_dir): + os.makedirs(output_dir) + +# Set the frame range +start_frame = bpy.context.scene.frame_start +end_frame = bpy.context.scene.frame_end + +# Name of the object to export +object_names = ["Fox"] + +# Deselect everything +bpy.ops.object.select_all(action='DESELECT') + +# Ensure it is selected and active +for name in object_names: + obj = bpy.data.objects[name] + obj.select_set(True) + bpy.context.view_layer.objects.active = obj + +# Loop through each frame +for frame in range(start_frame, end_frame + 1): + bpy.context.scene.frame_set(frame) + bpy.context.view_layer.update() # Ensure simulation is evaluated + + # Export to .obj + filename = f"{(frame - 1):05d}.ply" + filepath = os.path.join(output_dir, filename) + + bpy.ops.wm.ply_export( + filepath=filepath, + apply_modifiers=True, + export_selected_objects=True, + export_normals=True, + export_uv=True, + export_colors='NONE', # options: 'NONE', 'SRGB', 'LINEAR' + export_attributes=False, + export_triangulated_mesh=False, + ascii_format=True, # Set to False for binary PLY + forward_axis='Y', + up_axis='Z' + ) + + print(f"Exported frame {frame} to {filepath}") \ No newline at end of file diff --git a/blender/rug_cup/Rug_cup.blend b/blender/rug_cup/Rug_cup.blend new file mode 100644 index 0000000000000000000000000000000000000000..42281eafb4b225f040c637bcc1dc48a5b01c5324 --- /dev/null +++ b/blender/rug_cup/Rug_cup.blend @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a0948b4f2097e093a305038a242bda7957dbc4817252fe59d5fd37026b971e8 +size 9836555 diff --git a/blender/rug_cup/script.py b/blender/rug_cup/script.py new file mode 100644 index 0000000000000000000000000000000000000000..0cbaf45597cad2c06a2670b174f299118759b122 --- /dev/null +++ b/blender/rug_cup/script.py @@ -0,0 +1,50 @@ +import bpy +import os + +# Set output directory +output_dir = "blender/rug_cup/plys" # Change this! + +# Ensure the output directory exists +if not os.path.exists(output_dir): + os.makedirs(output_dir) + +# Set the frame range +start_frame = bpy.context.scene.frame_start +end_frame = bpy.context.scene.frame_end + +# Name of the object to export +object_names = ["Fish_Cup", "Rug"] + +# Deselect everything +bpy.ops.object.select_all(action='DESELECT') + +# Ensure it is selected and active +for name in object_names: + obj = bpy.data.objects[name] + obj.select_set(True) + bpy.context.view_layer.objects.active = obj + +# Loop through each frame +for frame in range(start_frame, end_frame + 1): + bpy.context.scene.frame_set(frame) + bpy.context.view_layer.update() # Ensure simulation is evaluated + + # Export to .obj + filename = f"{(frame - 1):05d}.ply" + filepath = os.path.join(output_dir, filename) + + bpy.ops.wm.ply_export( + filepath=filepath, + apply_modifiers=True, + export_selected_objects=True, + export_normals=True, + export_uv=True, + export_colors='NONE', # options: 'NONE', 'SRGB', 'LINEAR' + export_attributes=False, + export_triangulated_mesh=False, + ascii_format=True, # Set to False for binary PLY + forward_axis='Y', + up_axis='Z' + ) + + print(f"Exported frame {frame} to {filepath}") \ No newline at end of file diff --git a/configs/bicycle.yml b/configs/bicycle.yml new file mode 100644 index 0000000000000000000000000000000000000000..30702dabbeace02bbdf6b12f75e20e3b17732db3 --- /dev/null +++ b/configs/bicycle.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- 360_v2 +- bicycle +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: bicycle +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 0 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 1 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 4 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: test +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/bonsai.yml b/configs/bonsai.yml new file mode 100644 index 0000000000000000000000000000000000000000..b48be2e3a77715555702e32933e735d6c4e08908 --- /dev/null +++ b/configs/bonsai.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- 360_v2 +- bonsai +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: bonsai +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 4 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: open_scenes_baseline +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/chair.yml b/configs/chair.yml new file mode 100644 index 0000000000000000000000000000000000000000..96d70b159e89de12853d9407138afdaa17bd434d --- /dev/null +++ b/configs/chair.yml @@ -0,0 +1,186 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- chair +denisification_interval: 200 +densification_start_step: 1000 +densification_stop_step: 8000 +experiment_name: chair +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 32 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/counter.yml b/configs/counter.yml new file mode 100644 index 0000000000000000000000000000000000000000..2217d58b911e920a3ea4e2c6fc6ae914978cf75a --- /dev/null +++ b/configs/counter.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- 360_v2 +- counter +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: counter +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 4 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: open_scenes_baseline +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/drums.yml b/configs/drums.yml new file mode 100644 index 0000000000000000000000000000000000000000..1f205caaeed1cb286659c00a48d149063eaa3df5 --- /dev/null +++ b/configs/drums.yml @@ -0,0 +1,186 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- drums +denisification_interval: 200 +densification_start_step: 1000 +densification_stop_step: 8000 +experiment_name: drums +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 32 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/ficus.yml b/configs/ficus.yml new file mode 100644 index 0000000000000000000000000000000000000000..50d9f5a60b1b1a1482d777fa5cd3b52a084d84e3 --- /dev/null +++ b/configs/ficus.yml @@ -0,0 +1,186 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- ficus +denisification_interval: 200 +densification_start_step: 1000 +densification_stop_step: 8000 +experiment_name: ficus +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 32 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/flowers.yml b/configs/flowers.yml new file mode 100644 index 0000000000000000000000000000000000000000..342b4150ab41439b43a8dda2cd0b436c6d0edea0 --- /dev/null +++ b/configs/flowers.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- 360_v2 +- flowers +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: flowers +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 4 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: open_scenes_baseline +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/fox_nodding.yml b/configs/fox_nodding.yml new file mode 100644 index 0000000000000000000000000000000000000000..07b140eb9d553542dea37a0cfb5e4b2361b1e8b2 --- /dev/null +++ b/configs/fox_nodding.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- fox +denisification_interval: 200 +densification_start_step: 100 +densification_stop_step: 8000 +experiment_name: fox +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 0 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 1 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 1 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +start_paused: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: fox_nodding +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/garden.yml b/configs/garden.yml new file mode 100644 index 0000000000000000000000000000000000000000..01fa40a54a7595a3472241590248e6fd255b52f0 --- /dev/null +++ b/configs/garden.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- 360_v2 +- garden +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: garden +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 4 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 0.25 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: open_scenes_baseline +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/hotdog.yml b/configs/hotdog.yml new file mode 100644 index 0000000000000000000000000000000000000000..a5d00070c570d4b65604232f7eb4e48e7aae89ed --- /dev/null +++ b/configs/hotdog.yml @@ -0,0 +1,186 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- hotdog +denisification_interval: 200 +densification_start_step: 1000 +densification_stop_step: 8000 +experiment_name: hotdog +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 32 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/kitchen.yml b/configs/kitchen.yml new file mode 100644 index 0000000000000000000000000000000000000000..6d32774a721a845112f5a81a5fd677cc85f17cd5 --- /dev/null +++ b/configs/kitchen.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- 360_v2 +- kitchen +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: kitchen +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 4 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 0.25 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: open_scenes_baseline +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/lego.yml b/configs/lego.yml new file mode 100644 index 0000000000000000000000000000000000000000..98bb983d347464ae63d3dddb99a3b101fd682958 --- /dev/null +++ b/configs/lego.yml @@ -0,0 +1,186 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- lego +denisification_interval: 200 +densification_start_step: 1000 +densification_stop_step: 8000 +experiment_name: lego +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 32 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/materials.yml b/configs/materials.yml new file mode 100644 index 0000000000000000000000000000000000000000..a12d4c5fc59302127d21733b42f4f6d923afd60d --- /dev/null +++ b/configs/materials.yml @@ -0,0 +1,186 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- materials +denisification_interval: 200 +densification_start_step: 1000 +densification_stop_step: 8000 +experiment_name: materials +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 32 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/mic.yml b/configs/mic.yml new file mode 100644 index 0000000000000000000000000000000000000000..bad4701c11699398698063aaca09a69e3b3e42bc --- /dev/null +++ b/configs/mic.yml @@ -0,0 +1,186 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- mic +denisification_interval: 200 +densification_start_step: 1000 +densification_stop_step: 8000 +experiment_name: mic +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 32 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/pillow_duck.yml b/configs/pillow_duck.yml new file mode 100644 index 0000000000000000000000000000000000000000..14cf6a051b955ae865884a72a430ce3fc7342234 --- /dev/null +++ b/configs/pillow_duck.yml @@ -0,0 +1,189 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- pillow_duck +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: pillow_duck +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: pillow_duck +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/pirate_flag.yml b/configs/pirate_flag.yml new file mode 100644 index 0000000000000000000000000000000000000000..9dd62e17687836b6649d81f0e0f7e7ced0842520 --- /dev/null +++ b/configs/pirate_flag.yml @@ -0,0 +1,189 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- pirate_flag +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 2000 +experiment_name: pirate_flag +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: pirate_flag +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/room.yml b/configs/room.yml new file mode 100644 index 0000000000000000000000000000000000000000..ad832360c12781eaf7239052217d113215f8ba4c --- /dev/null +++ b/configs/room.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- 360_v2 +- room +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: room +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 4 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: open_scenes_baseline +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/rug_cup.yml b/configs/rug_cup.yml new file mode 100644 index 0000000000000000000000000000000000000000..05166badcf0b2b1b020ae0e8ebdcf7c96642a582 --- /dev/null +++ b/configs/rug_cup.yml @@ -0,0 +1,187 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- rug +denisification_interval: 200 +densification_start_step: 1000 +densification_stop_step: 8000 +experiment_name: rug +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 0 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 1 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: false + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: false + render_step_size: 0.005 + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +start_paused: false +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: falling_rug +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/ship.yml b/configs/ship.yml new file mode 100644 index 0000000000000000000000000000000000000000..24073fc765b3a5355a0ba3298896b99c10ef65ef --- /dev/null +++ b/configs/ship.yml @@ -0,0 +1,186 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- nerf_synthetic +- ship +denisification_interval: 200 +densification_start_step: 1000 +densification_stop_step: 8000 +experiment_name: ship +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig + _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender '' + alpha_color: white + data: !!python/object/apply:pathlib.PosixPath + - data + - blender + - lego + ply_path: null + scale_factor: 1.0 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: white + collider_params: null + cone_angle: 0.0 + densify: true + disable_scene_contraction: true + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 6.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 32 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 2.0 + prompt: null + prune: true + render_step_size: 0.005 + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: true + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/stump.yml b/configs/stump.yml new file mode 100644 index 0000000000000000000000000000000000000000..080d019e48266f001313115a1b5b00f879e6678d --- /dev/null +++ b/configs/stump.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- 360_v2 +- stump +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: stump +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 4 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 4096 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 8192 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: open_scenes_baseline +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/configs/treehill.yml b/configs/treehill.yml new file mode 100644 index 0000000000000000000000000000000000000000..03995f23266e4be0ba2e4c124426596dcac1f767 --- /dev/null +++ b/configs/treehill.yml @@ -0,0 +1,195 @@ +!!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig +_target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer '' +data: &id004 !!python/object/apply:pathlib.PosixPath +- data +- 360_v2 +- treehill +denisification_interval: 100 +densification_start_step: 100 +densification_stop_step: 10000 +experiment_name: treehill +freeze_means_step: 10000 +gradient_accumulation_steps: {} +load_checkpoint: null +load_config: null +load_dir: null +load_scheduler: true +load_step: null +log_gradients: false +logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig + local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig + _target: !!python/name:nerfstudio.utils.writer.LocalWriter '' + enable: true + max_log_size: 10 + stats_to_track: !!python/tuple + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Iter (time) + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Train Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test PSNR + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Vis Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - Test Rays / Sec + - !!python/object/apply:nerfstudio.utils.writer.EventName + - ETA (time) + max_buffer_size: 20 + profiler: basic + relative_log_dir: !!python/object/apply:pathlib.PosixPath [] + steps_per_log: 10 +machine: !!python/object:nerfstudio.configs.base_config.MachineConfig + device_type: cuda + dist_url: auto + machine_rank: 0 + num_devices: 1 + num_machines: 1 + seed: 42 +max_num_iterations: 20000 +method_name: gnerf +mixed_precision: false +optimizers: + fields: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: &id001 !!python/name:torch.optim.adam.Adam '' + eps: 1.0e-15 + lr: 0.01 + max_norm: null + weight_decay: 1.0e-06 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler '' + gamma: 0.33 + max_steps: 20000 + milestones: &id003 !!python/tuple + - 0.5 + - 0.75 + - 0.9 + log_covs: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 0.001 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 + means: + optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig + _target: *id001 + eps: 1.0e-15 + lr: 1.0e-05 + max_norm: null + weight_decay: 0 + scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig + _target: *id002 + gamma: 0.33 + max_steps: 20000 + milestones: *id003 +output_dir: !!python/object/apply:pathlib.PosixPath +- outputs +pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig + _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline '' + datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig + _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager '' + camera_optimizer: null + camera_res_scale_factor: 1.0 + collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate '' + data: *id004 + dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig + _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio '' + auto_scale_poses: true + center_method: poses + data: !!python/object/apply:pathlib.PosixPath [] + depth_unit_scale_factor: 0.001 + downscale_factor: 4 + eval_interval: 8 + eval_mode: fraction + load_3D_points: true + mask_color: null + orientation_method: up + scale_factor: 1.0 + scene_scale: 1.0 + train_split_fraction: 0.9 + eval_image_indices: !!python/tuple + - 0 + eval_num_images_to_sample_from: -1 + eval_num_rays_per_batch: 1024 + eval_num_times_to_repeat_images: -1 + images_on_gpu: false + masks_on_gpu: false + patch_size: 1 + pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig + _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler '' + fisheye_crop_radius: null + ignore_mask: false + is_equirectangular: false + keep_full_image: false + max_num_iterations: 100 + num_rays_per_batch: 4096 + rejection_sample_mask: false + train_num_images_to_sample_from: -1 + train_num_rays_per_batch: 4096 + train_num_times_to_repeat_images: -1 + max_num_samples_per_ray: 1024 + model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig + _target: !!python/name:gnerf.gnerf_model.GNeRFModel '' + alpha_thre: 0.0 + appearance_embedding_dim: 32 + background_color: random + collider_params: null + cone_angle: 0.00390625 + densify: true + disable_scene_contraction: false + enable_collider: false + eval_num_rays_per_chunk: 2048 + far_plane: 1000.0 + grid_resolution: 128 + knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig + _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN '' + chi_squared_radius: 2.0 + device: cuda + n_neighbours: 16 + loss_coefficients: + rgb_loss_coarse: 1.0 + rgb_loss_fine: 1.0 + max_gb: 20 + near_plane: 0.0 + prompt: null + prune: true + render_step_size: 0.005 + unfreeze_means: true + use_appearance_embedding: false + use_gradient_scaling: true + target_num_samples: 262144 +project_name: nerfstudio-project +prompt: null +pruning_interval: 1000 +pruning_start_step: 1000 +pruning_stop_step: 15000 +relative_model_dir: !!python/object/apply:pathlib.PosixPath +- nerfstudio_models +save_only_latest_checkpoint: true +steps_per_eval_all_images: 25000 +steps_per_eval_batch: 500 +steps_per_eval_image: 500 +steps_per_save: 100 +timestamp: open_scenes_baseline +unfreeze_means_step: 500 +use_grad_scaler: false +viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig + camera_frustum_scale: 0.1 + default_composite_depth: true + image_format: jpeg + jpeg_quality: 75 + make_share_url: false + max_num_display_images: 512 + num_rays_per_chunk: 4096 + quit_on_train_completion: false + relative_log_filename: viewer_log_filename.txt + websocket_host: 0.0.0.0 + websocket_port: null + websocket_port_default: 7007 +vis: viewer diff --git a/data/pillow_duck/train/transforms.json b/data/pillow_duck/train/transforms.json deleted file mode 100644 index d0f910ee0ff0ceaa62bd6ea2fc7a0ddbf11b41de..0000000000000000000000000000000000000000 --- a/data/pillow_duck/train/transforms.json +++ /dev/null @@ -1,3005 +0,0 @@ -{ - "camera_angle_x": 0.6911112070083618, - "frames": [ - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_0", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9999993443489075, - -0.0006704808329232037, - 0.0008634937112219632, - 0.006961708888411522 - ], - [ - 0.0010932363802567124, - 0.6132986545562744, - -0.7898503541946411, - -6.367977142333984 - ], - [ - 0.0, - 0.7898508310317993, - 0.6132990121841431, - 4.94457483291626 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_1", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4123695194721222, - 0.8673504590988159, - -0.2786655128002167, - -2.246673107147217 - ], - [ - -0.9110167622566223, - -0.3926040530204773, - 0.12613725662231445, - 1.016951084136963 - ], - [ - -7.450581485102248e-09, - 0.3058841824531555, - 0.9520688056945801, - 7.675824165344238 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_2", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.12267029285430908, - 0.6798219680786133, - -0.7230449318885803, - -5.829375267028809 - ], - [ - -0.9924474954605103, - 0.08402858674526215, - -0.08937110751867294, - -0.7205329537391663 - ], - [ - 0.0, - 0.7285473942756653, - 0.6849953532218933, - 5.522609710693359 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_3", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3566770553588867, - 0.5124841928482056, - -0.7811154127120972, - -6.2975544929504395 - ], - [ - -0.9342277646064758, - -0.19566038250923157, - 0.29822060465812683, - 2.404331684112549 - ], - [ - 0.0, - 0.8361082077026367, - 0.5485644340515137, - 4.42266845703125 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_4", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9235317707061768, - 0.20724011957645416, - -0.3227084279060364, - -2.6017584800720215 - ], - [ - -0.3835221230983734, - -0.499039888381958, - 0.7770907282829285, - 6.265105724334717 - ], - [ - 0.0, - 0.8414336442947388, - 0.5403603315353394, - 4.356524467468262 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_5", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6731973886489868, - -0.33525216579437256, - 0.6590988039970398, - 5.3138251304626465 - ], - [ - 0.7394628524780273, - 0.3052091896533966, - -0.6000349521636963, - -4.837636947631836 - ], - [ - 1.4901161193847656e-08, - 0.8913211226463318, - 0.4533725082874298, - 3.6552062034606934 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_6", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.938108503818512, - 0.3058825135231018, - -0.16244471073150635, - -1.3096712827682495 - ], - [ - -0.34634143114089966, - 0.8285205364227295, - -0.44000154733657837, - -3.5474061965942383 - ], - [ - 0.0, - 0.4690305292606354, - 0.8831818699836731, - 7.120440483093262 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_7", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.04013383015990257, - 0.37897324562072754, - -0.9245368242263794, - -7.453855037689209 - ], - [ - -0.9991943836212158, - 0.015221911482512951, - -0.03713512048125267, - -0.2993929386138916 - ], - [ - 0.0, - 0.9252822995185852, - 0.3792788088321686, - 3.0578441619873047 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_8", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4797772765159607, - 0.2693465054035187, - -0.8350247144699097, - -6.732184410095215 - ], - [ - -0.8773903250694275, - -0.1472848802804947, - 0.4566107988357544, - 3.681313991546631 - ], - [ - 7.450580152834618e-09, - 0.9517140984535217, - 0.30698591470718384, - 2.4749996662139893 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_9", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8524823188781738, - 0.27110540866851807, - -0.4469626843929291, - -3.6035287380218506 - ], - [ - -0.5227559804916382, - 0.44210413098335266, - -0.7288826704025269, - -5.876440525054932 - ], - [ - 0.0, - 0.8550119996070862, - 0.5186079144477844, - 4.181151390075684 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_10", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6219456791877747, - -0.5028537511825562, - 0.6002678275108337, - 4.839514255523682 - ], - [ - 0.7830603718757629, - 0.39939162135124207, - -0.4767627716064453, - -3.8437843322753906 - ], - [ - 1.4901161193847656e-08, - 0.7665665149688721, - 0.6421648263931274, - 5.177298545837402 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_11", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.25823864340782166, - -0.5472913384437561, - 0.7961061000823975, - 6.418412685394287 - ], - [ - 0.9660812020301819, - -0.14629387855529785, - 0.21280337870121002, - 1.715675711631775 - ], - [ - 0.0, - 0.8240571618080139, - 0.5665066242218018, - 4.567322731018066 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_12", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.16473673284053802, - -0.4199739694595337, - 0.8924592733383179, - 7.195236682891846 - ], - [ - 0.9863376021385193, - -0.07014347612857819, - 0.1490573287010193, - 1.2017385959625244 - ], - [ - 0.0, - 0.9048212766647339, - 0.4257913827896118, - 3.432839870452881 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_13", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.18567168712615967, - 0.3033578097820282, - -0.9346123337745667, - -7.5350847244262695 - ], - [ - -0.9826117753982544, - -0.05732167139649391, - 0.1766018271446228, - 1.423809289932251 - ], - [ - 3.7252896323280993e-09, - 0.9511510729789734, - 0.3087259829044342, - 2.489028215408325 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_14", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9950701594352722, - -0.077747642993927, - 0.061568763107061386, - 0.49638327956199646 - ], - [ - 0.09917362779378891, - -0.7800899744033813, - 0.6177573204040527, - 4.9805192947387695 - ], - [ - -3.725290076417309e-09, - 0.6208178997039795, - 0.7839547395706177, - 6.320445537567139 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_15", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.4796167314052582, - 0.8196831345558167, - -0.31318891048431396, - -2.525010108947754 - ], - [ - -0.8774780631065369, - 0.4480268359184265, - -0.1711844950914383, - -1.3801336288452148 - ], - [ - 0.0, - 0.35691940784454346, - 0.9341350793838501, - 7.531238555908203 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_16", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9997518658638, - 0.012552045285701752, - -0.01840478926897049, - -0.14838416874408722 - ], - [ - -0.022277571260929108, - 0.5632988810539246, - -0.8259527683258057, - -6.6590447425842285 - ], - [ - 9.313225746154785e-10, - 0.8261578679084778, - 0.5634386539459229, - 4.542588233947754 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_17", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9032652378082275, - 0.1614294946193695, - -0.3975580334663391, - -3.2052156925201416 - ], - [ - -0.4290826618671417, - -0.3398264944553375, - 0.8369025588035583, - 6.7473249435424805 - ], - [ - 0.0, - 0.9265302419662476, - 0.3762200176715851, - 3.0331830978393555 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_18", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9887791872024536, - 0.12194022536277771, - -0.08629287034273148, - -0.6957153677940369 - ], - [ - -0.149385005235672, - -0.8071221709251404, - 0.5711724162101746, - 4.6049394607543945 - ], - [ - 7.450580596923828e-09, - 0.5776543021202087, - 0.8162814974784851, - 6.581071853637695 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_19", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.4915218651294708, - -0.15203776955604553, - 0.8574908971786499, - 6.913313388824463 - ], - [ - 0.8708652257919312, - 0.0858110785484314, - -0.48397326469421387, - -3.9019174575805664 - ], - [ - -7.450581485102248e-09, - 0.9846423864364624, - 0.17458245158195496, - 1.4075288772583008 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_20", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.3638020157814026, - -0.8236084580421448, - 0.4351060390472412, - 3.50793719291687 - ], - [ - 0.9314762949943542, - 0.32167261838912964, - -0.16993717849254608, - -1.37007737159729 - ], - [ - 0.0, - 0.4671143591403961, - 0.8841968774795532, - 7.128623008728027 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_21", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.23239463567733765, - 0.6969436407089233, - -0.6784263849258423, - -5.469648361206055 - ], - [ - -0.9726216793060303, - -0.16652514040470123, - 0.16210070252418518, - 1.3068976402282715 - ], - [ - 7.450581485102248e-09, - 0.6975233554840088, - 0.7165619730949402, - 5.777107238769531 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_22", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7099580764770508, - -0.2387286126613617, - 0.6625465750694275, - 5.3416218757629395 - ], - [ - 0.7042438387870789, - -0.24066564440727234, - 0.6679224967956543, - 5.3849639892578125 - ], - [ - -1.4901161193847656e-08, - 0.9407915472984314, - 0.3389856517314911, - 2.732990026473999 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_23", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9201205372810364, - -0.2104855328798294, - 0.33026331663131714, - 2.662668228149414 - ], - [ - 0.39163506031036377, - -0.4945217967033386, - 0.775931715965271, - 6.255762100219727 - ], - [ - 0.0, - 0.8432936072349548, - 0.5374531149864197, - 4.333086013793945 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_24", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9963501691818237, - -0.04458686709403992, - 0.07278978824615479, - 0.586850106716156 - ], - [ - 0.0853600800037384, - 0.5204321146011353, - -0.8496257066726685, - -6.849902153015137 - ], - [ - 7.450581485102248e-09, - 0.8527381420135498, - 0.5223385095596313, - 4.211228370666504 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_25", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.522667407989502, - -0.1478007286787033, - 0.8396270871162415, - 6.769289970397949 - ], - [ - 0.8525365591049194, - -0.09061268717050552, - 0.514752984046936, - 4.150071144104004 - ], - [ - 0.0, - 0.984857439994812, - 0.17336583137512207, - 1.3977200984954834 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_26", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9814474582672119, - 0.039035577327013016, - -0.18771594762802124, - -1.5134145021438599 - ], - [ - -0.1917317658662796, - -0.19981755316257477, - 0.9608911275863647, - 7.746952533721924 - ], - [ - -3.725290742551124e-09, - 0.9790552258491516, - 0.20359474420547485, - 1.6414334774017334 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_27", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.254439115524292, - 0.9652633666992188, - -0.05939267575740814, - -0.47883903980255127 - ], - [ - -0.9670887589454651, - 0.2539588510990143, - -0.0156260933727026, - -0.12598159909248352 - ], - [ - -9.313224635931761e-10, - 0.061413850635290146, - 0.9981123805046082, - 8.047039031982422 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_28", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.0027995193377137184, - -0.21657949686050415, - 0.9762609601020813, - 7.870867729187012 - ], - [ - 0.9999961256980896, - -0.0006063208566047251, - 0.002733072265982628, - 0.02203473262488842 - ], - [ - -5.820766091346741e-11, - 0.9762647747993469, - 0.2165803462266922, - 1.746126651763916 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_29", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8916757702827454, - 0.06659115850925446, - -0.4477498531341553, - -3.609874725341797 - ], - [ - -0.45267462730407715, - -0.1311708688735962, - 0.881974995136261, - 7.1107096672058105 - ], - [ - 0.0, - 0.9891207814216614, - 0.14710600674152374, - 1.1860065460205078 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_30", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9246166944503784, - -0.2261887490749359, - 0.30646803975105286, - 2.4708244800567627 - ], - [ - 0.38089895248413086, - -0.5490639209747314, - 0.743938684463501, - 5.997825622558594 - ], - [ - -1.4901161193847656e-08, - 0.8045915365219116, - 0.5938286781311035, - 4.787600040435791 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_31", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8253647685050964, - 0.4791482985019684, - -0.2986469864845276, - -2.407769203186035 - ], - [ - -0.5646000504493713, - 0.7004464864730835, - -0.43657931685447693, - -3.51981520652771 - ], - [ - 0.0, - 0.5289533138275146, - 0.8486508727073669, - 6.842042446136475 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_32", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.034987300634384155, - 0.9486457109451294, - -0.3143996000289917, - -2.5347707271575928 - ], - [ - -0.999387800693512, - -0.033210884779691696, - 0.011006731539964676, - 0.08873910456895828 - ], - [ - 0.0, - 0.31459224224090576, - 0.9492269158363342, - 7.652912139892578 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_33", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7773950099945068, - 0.5264142751693726, - -0.34430354833602905, - -2.7758638858795166 - ], - [ - -0.6290127038955688, - 0.6505939364433289, - -0.4255237877368927, - -3.430682420730591 - ], - [ - 0.0, - 0.5473713278770447, - 0.8368898034095764, - 6.74722146987915 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_34", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9341647028923035, - -0.3266024589538574, - 0.14376050233840942, - 1.159034252166748 - ], - [ - 0.356842041015625, - -0.8550015091896057, - 0.37634575366973877, - 3.034196615219116 - ], - [ - 0.0, - 0.40286868810653687, - 0.9152577519416809, - 7.379044055938721 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_35", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.4429650902748108, - -0.6489098072052002, - 0.6186258792877197, - 4.987521648406982 - ], - [ - 0.8965389132499695, - 0.32061564922332764, - -0.3056528568267822, - -2.464252471923828 - ], - [ - 0.0, - 0.6900157928466797, - 0.7237942814826965, - 5.835416793823242 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_36", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6513153314590454, - 0.4365901052951813, - -0.6206265091896057, - -5.0036516189575195 - ], - [ - -0.7588071227073669, - 0.37474325299263, - -0.5327092409133911, - -4.294839859008789 - ], - [ - 1.4901161193847656e-08, - 0.817897617816925, - 0.5753636360168457, - 4.638730525970459 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_37", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.5529003143310547, - 0.6897398233413696, - -0.46750423312187195, - -3.769139528274536 - ], - [ - -0.8332475423812866, - 0.4576759338378906, - -0.31021180748939514, - -2.501007556915283 - ], - [ - -1.4901162970204496e-08, - 0.5610629320144653, - 0.8277731537818909, - 6.673720359802246 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_38", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3539479970932007, - 0.5462997555732727, - -0.7591292262077332, - -6.120296001434326 - ], - [ - -0.935265064239502, - -0.20674537122249603, - 0.28728997707366943, - 2.316206216812134 - ], - [ - 0.0, - 0.8116728663444519, - 0.5841122269630432, - 4.709263801574707 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_39", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7612214684486389, - 0.18490998446941376, - -0.6215707063674927, - -5.011263370513916 - ], - [ - -0.6484919786453247, - -0.21705350279808044, - 0.7296203970909119, - 5.882387638092041 - ], - [ - 0.0, - 0.9584863185882568, - 0.28513842821121216, - 2.2988595962524414 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_40", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.43348434567451477, - -0.6854498982429504, - 0.5850211977958679, - 4.716592311859131 - ], - [ - 0.9011611938476562, - 0.32972100377082825, - -0.28141194581985474, - -2.2688159942626953 - ], - [ - 0.0, - 0.6491860747337341, - 0.7606294751167297, - 6.132391929626465 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_41", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.261633962392807, - 0.37981900572776794, - -0.8872909545898438, - -7.153568267822266 - ], - [ - -0.9651671051979065, - -0.10295995324850082, - 0.2405235916376114, - 1.9391632080078125 - ], - [ - -7.450580152834618e-09, - 0.9193131923675537, - 0.3935266435146332, - 3.172713279724121 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_42", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.2634371221065521, - 0.7458933591842651, - -0.6117547750473022, - -4.932124614715576 - ], - [ - -0.9646764993667603, - 0.20369108021259308, - -0.16706006228923798, - -1.3468812704086304 - ], - [ - 0.0, - 0.6341552734375, - 0.7732056975364685, - 6.233783721923828 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_43", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8448881506919861, - 0.5182791948318481, - -0.1324794590473175, - -1.068083643913269 - ], - [ - -0.534943163394928, - -0.8185690641403198, - 0.20923779904842377, - 1.6869292259216309 - ], - [ - 7.450581485102248e-09, - 0.24765150249004364, - 0.9688491225242615, - 7.811111927032471 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_44", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.2470902055501938, - -0.4414742887020111, - 0.8625814914703369, - 6.954354286193848 - ], - [ - 0.9689924120903015, - 0.11257464438676834, - -0.21995574235916138, - -1.773339867591858 - ], - [ - 0.0, - 0.8901839256286621, - 0.45560136437416077, - 3.673175573348999 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_45", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7709884643554688, - -0.4517441689968109, - 0.44889169931411743, - 3.6190805435180664 - ], - [ - 0.6368488669395447, - -0.5468951463699341, - 0.543441891670227, - 4.381368637084961 - ], - [ - -1.4901159417490817e-08, - 0.7048636674880981, - 0.7093427777290344, - 5.718904495239258 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_46", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3852478861808777, - 0.7130184173583984, - -0.585823118686676, - -4.723057746887207 - ], - [ - -0.9228131175041199, - -0.29766467213630676, - 0.24456429481506348, - 1.971740484237671 - ], - [ - 0.0, - 0.6348231434822083, - 0.7726573944091797, - 6.229363441467285 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_47", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9928157925605774, - -0.017753982916474342, - 0.11832824349403381, - 0.9539929032325745 - ], - [ - 0.11965274065732956, - -0.14731325209140778, - 0.9818258285522461, - 7.915733337402344 - ], - [ - -1.862645149230957e-09, - 0.9889305233955383, - 0.14837922155857086, - 1.1962716579437256 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_48", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.2975289523601532, - 0.31356194615364075, - -0.9017512798309326, - -7.270151138305664 - ], - [ - -0.9547128677368164, - -0.09771919250488281, - 0.28102391958236694, - 2.2656872272491455 - ], - [ - 7.450581485102248e-09, - 0.9445261359214783, - 0.32843589782714844, - 2.647934913635254 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_49", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.5720902681350708, - -0.2798345983028412, - 0.770976722240448, - 6.215813636779785 - ], - [ - 0.8201906681060791, - -0.19518715143203735, - 0.5377631783485413, - 4.335586071014404 - ], - [ - 0.0, - 0.9399970769882202, - 0.3411823809146881, - 2.7507004737854004 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_50", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.11968624591827393, - 0.5241310000419617, - -0.843185544013977, - -6.797979354858398 - ], - [ - -0.9928117394447327, - -0.06318546831607819, - 0.10164839029312134, - 0.8195155262947083 - ], - [ - -3.725290076417309e-09, - 0.8492904901504517, - 0.5279258489608765, - 4.256274223327637 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_51", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8390130400657654, - -0.2586718499660492, - 0.47869181632995605, - 3.8593368530273438 - ], - [ - 0.5441111326217651, - 0.39886900782585144, - -0.7381372451782227, - -5.951052665710449 - ], - [ - 0.0, - 0.8797683119773865, - 0.4754025936126709, - 3.8328182697296143 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_52", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7985692620277405, - -0.273497074842453, - 0.5361776947975159, - 4.322803497314453 - ], - [ - 0.6019030809402466, - 0.36285969614982605, - -0.71136873960495, - -5.735238552093506 - ], - [ - 0.0, - 0.89080411195755, - 0.45438727736473083, - 3.6633875370025635 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_53", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.48267826437950134, - -0.874016523361206, - 0.055827796459198, - 0.45009809732437134 - ], - [ - 0.8757978081703186, - 0.48169657588005066, - -0.030768364667892456, - -0.24806249141693115 - ], - [ - 0.0, - 0.06374494731426239, - 0.9979662299156189, - 8.04586124420166 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_54", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7831069827079773, - 0.5846148729324341, - -0.21205872297286987, - -1.7096720933914185 - ], - [ - -0.6218869686126709, - 0.7361723184585571, - -0.26703348755836487, - -2.152892827987671 - ], - [ - 1.4901161193847656e-08, - 0.3409923315048218, - 0.9400660395622253, - 7.579054832458496 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_55", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7181521058082581, - -0.4774208068847656, - 0.5062873959541321, - 4.081819534301758 - ], - [ - 0.6958861947059631, - -0.4926965832710266, - 0.5224868059158325, - 4.212423324584961 - ], - [ - -1.4901161193847656e-08, - 0.7275433540344238, - 0.686061680316925, - 5.531206130981445 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_56", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9552522301673889, - 0.04295937716960907, - -0.29265597462654114, - -2.3594682216644287 - ], - [ - -0.29579219222068787, - 0.1387360543012619, - -0.9451239109039307, - -7.619832992553711 - ], - [ - 0.0, - 0.9893972277641296, - 0.14523497223854065, - 1.1709219217300415 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_57", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9934930801391602, - 0.0773656889796257, - -0.08358100801706314, - -0.6738516688346863 - ], - [ - -0.11389130353927612, - 0.674873948097229, - -0.729091227054596, - -5.878121376037598 - ], - [ - -3.7252894102834944e-09, - 0.7338663339614868, - 0.6792939305305481, - 5.476642608642578 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_58", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6869069933891296, - -0.6186311841011047, - 0.38138455152511597, - 3.0748205184936523 - ], - [ - 0.7267453074455261, - 0.5847194194793701, - -0.3604780435562134, - -2.906266927719116 - ], - [ - 1.4901160305669237e-08, - 0.5247843265533447, - 0.8512352108955383, - 6.86287784576416 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_59", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4135356545448303, - -0.33907565474510193, - 0.8449946641921997, - 6.812564849853516 - ], - [ - 0.910487949848175, - -0.15400518476963043, - 0.38378921151161194, - 3.094207525253296 - ], - [ - -2.9802322387695312e-08, - 0.9280679225921631, - 0.37241092324256897, - 3.0024728775024414 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_60", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.08232759684324265, - 0.7264437079429626, - -0.6822766661643982, - -5.500690937042236 - ], - [ - -0.9966053366661072, - 0.06001007556915283, - -0.056361522525548935, - -0.4544011652469635 - ], - [ - 0.0, - 0.6846007704734802, - 0.7289181351661682, - 5.8767266273498535 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_61", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.993681788444519, - -0.026852183043956757, - 0.1089753806591034, - 0.8785876035690308 - ], - [ - 0.11223491281270981, - -0.23773819208145142, - 0.9648232460021973, - 7.778653621673584 - ], - [ - 0.0, - 0.9709579944610596, - 0.23924985527992249, - 1.92889404296875 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_62", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.5082866549491882, - -0.6177660822868347, - 0.6000081300735474, - 4.837420463562012 - ], - [ - 0.8611880540847778, - -0.36461523175239563, - 0.354134202003479, - 2.855121374130249 - ], - [ - 0.0, - 0.6967214941978455, - 0.7173417210578918, - 5.783393859863281 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_63", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4857843518257141, - 0.5836158990859985, - -0.6506965160369873, - -5.2460832595825195 - ], - [ - -0.8740786910057068, - -0.3243546485900879, - 0.36163586378097534, - 2.9156014919281006 - ], - [ - 0.0, - 0.7444369792938232, - 0.6676926612854004, - 5.383110523223877 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_64", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.2213135063648224, - 0.4452459514141083, - -0.8676269054412842, - -6.995031833648682 - ], - [ - -0.975202739238739, - 0.10104457288980484, - -0.1969001293182373, - -1.5874595642089844 - ], - [ - 7.450580596923828e-09, - 0.8896887302398682, - 0.45656755566596985, - 3.6809654235839844 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_65", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9981321096420288, - -0.0220576673746109, - 0.0569702573120594, - 0.4593088924884796 - ], - [ - 0.06109132990241051, - -0.36038607358932495, - 0.9308005571365356, - 7.504354000091553 - ], - [ - -1.8626450382086546e-09, - 0.9325423836708069, - 0.3610604703426361, - 2.9109625816345215 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_66", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.5648376941680908, - 0.7623553276062012, - -0.31586819887161255, - -2.5466108322143555 - ], - [ - -0.8252020478248596, - -0.5218201279640198, - 0.21620674431324005, - 1.7431144714355469 - ], - [ - -1.4901161193847656e-08, - 0.38277667760849, - 0.9238408207893372, - 7.448242664337158 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_67", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.6771787405014038, - -0.40402793884277344, - 0.6149717569351196, - 4.9580607414245605 - ], - [ - 0.7358184456825256, - -0.37182968854904175, - 0.5659627318382263, - 4.562937259674072 - ], - [ - 0.0, - 0.835765540599823, - 0.5490864515304565, - 4.426876544952393 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_68", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9800286293029785, - 0.19868123531341553, - -0.008341379463672638, - -0.06725035607814789 - ], - [ - -0.19885626435279846, - -0.9791660308837891, - 0.04110904410481453, - 0.3314317464828491 - ], - [ - 0.0, - 0.04194669798016548, - 0.999119758605957, - 8.055161476135254 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_69", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8682813048362732, - -0.13802407681941986, - 0.4764837622642517, - 3.8415348529815674 - ], - [ - 0.4960719645023346, - -0.241585373878479, - 0.8339958190917969, - 6.723889350891113 - ], - [ - 7.450580596923828e-09, - 0.9605132937431335, - 0.27823394536972046, - 2.2431938648223877 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_70", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8215429782867432, - -0.5471042990684509, - 0.1604500263929367, - 1.2935895919799805 - ], - [ - 0.5701467394828796, - -0.7883403301239014, - 0.23119762539863586, - 1.8639750480651855 - ], - [ - 1.4901161193847656e-08, - 0.28141868114471436, - 0.9595850110054016, - 7.736422061920166 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_71", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9799436330795288, - 0.07964353263378143, - -0.18266746401786804, - -1.4727121591567993 - ], - [ - -0.1992749273777008, - 0.3916507661342621, - -0.8982756733894348, - -7.242130279541016 - ], - [ - 7.450580596923828e-09, - 0.9166606068611145, - 0.39966657757759094, - 3.222214937210083 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_72", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9924911856651306, - -0.051999110728502274, - 0.11071288585662842, - 0.8925958871841431 - ], - [ - 0.12231620401144028, - -0.42192819714546204, - 0.8983402252197266, - 7.242650985717773 - ], - [ - -3.725290298461914e-09, - 0.9051367044448853, - 0.42512035369873047, - 3.4274301528930664 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_73", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9470093250274658, - -0.22801785171031952, - 0.22623266279697418, - 1.823946237564087 - ], - [ - 0.32120609283447266, - -0.6722631454467773, - 0.666999876499176, - 5.377525329589844 - ], - [ - 0.0, - 0.7043224573135376, - 0.7098801136016846, - 5.723237037658691 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_74", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4601495862007141, - -0.7819911241531372, - 0.42041924595832825, - 3.389528274536133 - ], - [ - 0.8878413438796997, - -0.4052896499633789, - 0.21789449453353882, - 1.7567216157913208 - ], - [ - 1.4901159417490817e-08, - 0.473529577255249, - 0.880777895450592, - 7.101058483123779 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_75", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9137207865715027, - -0.12632858753204346, - 0.3862064480781555, - 3.113696336746216 - ], - [ - 0.40634265542030334, - -0.2840682566165924, - 0.8684415817260742, - 7.00160026550293 - ], - [ - -7.450580596923828e-09, - 0.9504453539848328, - 0.31089168787002563, - 2.5064892768859863 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_76", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7945880889892578, - -0.17464284598827362, - 0.5814892053604126, - 4.688116073608398 - ], - [ - 0.6071489453315735, - 0.22855859994888306, - -0.7610066533088684, - -6.13543176651001 - ], - [ - 0.0, - 0.957737386226654, - 0.2876441180706024, - 2.319061040878296 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_77", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7798113822937012, - -0.40506988763809204, - 0.477297306060791, - 3.8480939865112305 - ], - [ - 0.6260146498680115, - 0.5045858025550842, - -0.5945577621459961, - -4.793478012084961 - ], - [ - 0.0, - 0.7624379396438599, - 0.6470613479614258, - 5.216775417327881 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_78", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.42359936237335205, - -0.24581210315227509, - 0.871860146522522, - 7.029160499572754 - ], - [ - 0.9058496356010437, - -0.11494827270507812, - 0.4077049791812897, - 3.287022352218628 - ], - [ - 0.0, - 0.9624777436256409, - 0.2713608145713806, - 2.1877806186676025 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_79", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4706198275089264, - 0.449911892414093, - -0.7590100765228271, - -6.119335174560547 - ], - [ - -0.8823361992835999, - -0.23997366428375244, - 0.40484023094177246, - 3.2639262676239014 - ], - [ - 0.0, - 0.8602278232574463, - 0.5099098682403564, - 4.111024856567383 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_80", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4937623143196106, - 0.1935804933309555, - -0.8477765917778015, - -6.834994316101074 - ], - [ - -0.8695968985557556, - -0.10991616547107697, - 0.4813726544380188, - 3.880950927734375 - ], - [ - 0.0, - 0.9749076962471008, - 0.22260941565036774, - 1.7947347164154053 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_81", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9159678220748901, - 0.32045769691467285, - -0.2414744645357132, - -1.9468294382095337 - ], - [ - -0.4012519121170044, - 0.7315328121185303, - -0.551231861114502, - -4.444173336029053 - ], - [ - 0.0, - 0.6018025875091553, - 0.7986447811126709, - 6.43887996673584 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_82", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.2705749273300171, - -0.28417733311653137, - 0.9198001623153687, - 7.415666580200195 - ], - [ - 0.9626989960670471, - 0.07987050712108612, - -0.2585178315639496, - -2.084237575531006 - ], - [ - 7.450581485102248e-09, - 0.9554390907287598, - 0.2951880991458893, - 2.3798828125 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_83", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.4620943069458008, - -0.5435240864753723, - 0.700749933719635, - 5.649626731872559 - ], - [ - 0.8868309259414673, - 0.28320997953414917, - -0.36513447761535645, - -2.9438083171844482 - ], - [ - 1.4901162970204496e-08, - 0.7901732325553894, - 0.6128835678100586, - 4.941225528717041 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_84", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9411188364028931, - 0.23052014410495758, - -0.24729695916175842, - -1.9937719106674194 - ], - [ - -0.3380759060382843, - 0.6417104005813599, - -0.6884129047393799, - -5.550162315368652 - ], - [ - -1.4901161193847656e-08, - 0.731483519077301, - 0.6818591356277466, - 5.497323989868164 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_85", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.34486067295074463, - -0.6197819709777832, - 0.704940676689148, - 5.683413505554199 - ], - [ - 0.9386538863182068, - -0.2277074158191681, - 0.2589946389198303, - 2.0880815982818604 - ], - [ - 1.4901161193847656e-08, - 0.7510123252868652, - 0.6602881550788879, - 5.323413372039795 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_86", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9899953007698059, - -0.060115084052085876, - 0.12765373289585114, - 1.0291774272918701 - ], - [ - 0.14110033214092255, - -0.421782523393631, - 0.8956506252288818, - 7.220966815948486 - ], - [ - 3.725290742551124e-09, - 0.9047019481658936, - 0.42604491114616394, - 3.4348840713500977 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_87", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9499046206474304, - 0.16018462181091309, - -0.26836901903152466, - -2.1636605262756348 - ], - [ - -0.312539666891098, - 0.4868505299091339, - -0.8156563639640808, - -6.576032638549805 - ], - [ - 0.0, - 0.8586718440055847, - 0.5125256180763245, - 4.132114410400391 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_88", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3030839264392853, - -0.9319640398025513, - 0.1989552229642868, - 1.6040284633636475 - ], - [ - 0.9529638886451721, - -0.2964050769805908, - 0.06327641010284424, - 0.5101507902145386 - ], - [ - -3.725290298461914e-09, - 0.20877519249916077, - 0.9779635667800903, - 7.884594917297363 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_89", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9809036254882812, - -0.19309179484844208, - 0.023316096514463425, - 0.18798036873340607 - ], - [ - 0.19449442625045776, - 0.9738296866416931, - -0.1175912544131279, - -0.9480510354042053 - ], - [ - 0.0, - 0.11988047510385513, - 0.9927882552146912, - 8.004115104675293 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_90", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9852543473243713, - -0.13530249893665314, - 0.10472395271062851, - 0.8443114757537842 - ], - [ - 0.1710961014032364, - -0.7791374325752258, - 0.6030512452125549, - 4.861954689025879 - ], - [ - 7.450580152834618e-09, - 0.6120766997337341, - 0.7907983660697937, - 6.375619888305664 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_91", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.19139480590820312, - 0.6955018043518066, - -0.6925643086433411, - -5.583631992340088 - ], - [ - -0.9815131425857544, - 0.13562266528606415, - -0.13504984974861145, - -1.0888067483901978 - ], - [ - 7.450580596923828e-09, - 0.7056088447570801, - 0.7086015343666077, - 5.712928295135498 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_92", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.31073036789894104, - 0.25704026222229004, - -0.9150830507278442, - -7.3776350021362305 - ], - [ - -0.950498104095459, - -0.08402984589338303, - 0.2991527020931244, - 2.411846160888672 - ], - [ - 7.450580152834618e-09, - 0.9627405405044556, - 0.270426869392395, - 2.180251121520996 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_93", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.2654973864555359, - 0.23568095266819, - -0.9348612427711487, - -7.537092685699463 - ], - [ - -0.9641116261482239, - 0.06490190327167511, - -0.2574424147605896, - -2.0755674839019775 - ], - [ - 0.0, - 0.9696608185768127, - 0.2444540411233902, - 1.9708516597747803 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_94", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8563774824142456, - -0.45811551809310913, - 0.2382180541753769, - 1.920575499534607 - ], - [ - 0.5163503885269165, - -0.759793758392334, - 0.39508941769599915, - 3.1853129863739014 - ], - [ - -1.4901162970204496e-08, - 0.4613496959209442, - 0.8872182965278625, - 7.15298318862915 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_95", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.640407145023346, - 0.5735364556312561, - -0.5108174681663513, - -4.118342399597168 - ], - [ - -0.7680357098579407, - -0.478228896856308, - 0.42593225836753845, - 3.4339759349823 - ], - [ - 0.0, - 0.6650960445404053, - 0.7467576861381531, - 6.0205535888671875 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_96", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8192351460456848, - -0.19626504182815552, - 0.538826048374176, - 4.344154357910156 - ], - [ - 0.5734574198722839, - -0.2803822159767151, - 0.7697612643241882, - 6.2060136795043945 - ], - [ - 1.4901157641133977e-08, - 0.9396094679832458, - 0.3422486484050751, - 2.7592968940734863 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_97", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.46216022968292236, - 0.847276508808136, - -0.2617831528186798, - -2.110563278198242 - ], - [ - -0.8867964744567871, - -0.4415641129016876, - 0.13643012940883636, - 1.0999349355697632 - ], - [ - 0.0, - 0.295200914144516, - 0.9554351568222046, - 7.702964782714844 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_98", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9406198263168335, - 0.27063894271850586, - -0.2049121856689453, - -1.6520549058914185 - ], - [ - -0.339462012052536, - 0.7499170303344727, - -0.5677939057350159, - -4.577701091766357 - ], - [ - 0.0, - 0.6036379933357239, - 0.7972584366798401, - 6.427702903747559 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pillow_duck/train/r_99", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4214375615119934, - -0.7790943384170532, - 0.4641144871711731, - 3.7418107986450195 - ], - [ - 0.906857430934906, - -0.36206310987472534, - 0.215684711933136, - 1.7389057874679565 - ], - [ - 0.0, - 0.5117831230163574, - 0.8591145277023315, - 6.926403045654297 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - } - ] -} \ No newline at end of file diff --git a/data/pirate_flag/train/transforms.json b/data/pirate_flag/train/transforms.json deleted file mode 100644 index bb7e448e74585169f909f64b23c7c35124a43020..0000000000000000000000000000000000000000 --- a/data/pirate_flag/train/transforms.json +++ /dev/null @@ -1,3005 +0,0 @@ -{ - "camera_angle_x": 0.6911112070083618, - "frames": [ - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_0", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9719895720481873, - 0.07649558037519455, - -0.2222270369529724, - -0.8958257436752319 - ], - [ - -0.2350243180990219, - 0.316362589597702, - -0.9190638661384583, - -3.704864501953125 - ], - [ - -7.450580596923828e-09, - 0.9455491304397583, - 0.3254794478416443, - 1.3120495080947876 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_1", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7278409600257874, - 0.3725981116294861, - -0.5756893157958984, - -2.3206777572631836 - ], - [ - -0.685745894908905, - -0.39547035098075867, - 0.6110284328460693, - 2.463134288787842 - ], - [ - -1.4901159417490817e-08, - 0.839508056640625, - 0.543347179889679, - 2.190302610397339 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_2", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7864987850189209, - 0.27947068214416504, - -0.5507410764694214, - -2.2201085090637207 - ], - [ - -0.6175918579101562, - -0.3559039235115051, - 0.7013648152351379, - 2.8272922039031982 - ], - [ - 0.0, - 0.8917558193206787, - 0.4525167644023895, - 1.8241536617279053 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_3", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9867998361587524, - -0.15784451365470886, - 0.036209773272275925, - 0.14596626162528992 - ], - [ - 0.16194455325603485, - -0.9618165493011475, - 0.22064219415187836, - 0.8894370794296265 - ], - [ - 0.0, - 0.223593607544899, - 0.9746824502944946, - 3.929070472717285 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_4", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.13350410759449005, - 0.5426273941993713, - -0.8292961716651917, - -3.3429999351501465 - ], - [ - -0.9910483360290527, - 0.07309732586145401, - -0.11171448230743408, - -0.4503355026245117 - ], - [ - -7.450580596923828e-09, - 0.8367868661880493, - 0.5475286841392517, - 2.2071590423583984 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_5", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4321281313896179, - -0.16163372993469238, - 0.8872089385986328, - 3.576453924179077 - ], - [ - 0.9018123149871826, - -0.07745123654603958, - 0.4251305162906647, - 1.7137560844421387 - ], - [ - -7.450581485102248e-09, - 0.9838067293167114, - 0.1792321503162384, - 0.7225079536437988 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_6", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8844383955001831, - 0.429683655500412, - -0.182046040892601, - -0.7338511347770691 - ], - [ - -0.4666571319103241, - -0.814363956451416, - 0.34502527117729187, - 1.3908414840698242 - ], - [ - -1.4901162970204496e-08, - 0.3901066482067108, - 0.9207695722579956, - 3.7117412090301514 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_7", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3031907379627228, - -0.5842869877815247, - 0.7527841925621033, - 3.0345702171325684 - ], - [ - 0.9529299736022949, - -0.1859007477760315, - 0.23951098322868347, - 0.9654996395111084 - ], - [ - -1.4901162970204496e-08, - 0.789967954158783, - 0.6131479740142822, - 2.4716784954071045 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_8", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9219268560409546, - -0.3669237792491913, - 0.12416873127222061, - 0.5005401372909546 - ], - [ - 0.38736411929130554, - -0.8732788562774658, - 0.29552164673805237, - 1.1912858486175537 - ], - [ - 0.0, - 0.3205479383468628, - 0.9472323060035706, - 3.818415403366089 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_9", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6301818490028381, - -0.3220551311969757, - 0.7065063118934631, - 2.848018169403076 - ], - [ - 0.7764475345611572, - 0.26138702034950256, - -0.573415994644165, - -2.311514139175415 - ], - [ - -1.4901161193847656e-08, - 0.9099215269088745, - 0.41478028893470764, - 1.6720330715179443 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_10", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9814674854278564, - -0.15969081223011017, - 0.10592634975910187, - 0.42700278759002686 - ], - [ - 0.19162869453430176, - -0.8178907632827759, - 0.5425245761871338, - 2.1869864463806152 - ], - [ - -7.450580596923828e-09, - 0.5527687072753906, - 0.8333346843719482, - 3.3592796325683594 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_11", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.44965508580207825, - -0.24619227647781372, - 0.858603298664093, - 3.4611406326293945 - ], - [ - 0.8932021856307983, - -0.12393790483474731, - 0.4322373569011688, - 1.7424044609069824 - ], - [ - -7.450580152834618e-09, - 0.9612641334533691, - 0.27562880516052246, - 1.1110953092575073 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_12", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6817365884780884, - -0.28239959478378296, - 0.6748967170715332, - 2.7205958366394043 - ], - [ - 0.7315976619720459, - 0.2631530165672302, - -0.6288999915122986, - -2.535177230834961 - ], - [ - -1.4901161193847656e-08, - 0.9224970936775208, - 0.38600388169288635, - 1.556031584739685 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_13", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9980076551437378, - -0.053839508444070816, - 0.03289622813463211, - 0.13260893523693085 - ], - [ - 0.06309401988983154, - 0.8516218066215515, - -0.5203454494476318, - -2.0975797176361084 - ], - [ - -1.862645371275562e-09, - 0.5213841199874878, - 0.8533219695091248, - 3.4398508071899414 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_14", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.12775452435016632, - 0.603720486164093, - -0.7868927717208862, - -3.1720662117004395 - ], - [ - -0.9918057322502136, - -0.07776525616645813, - 0.10135968029499054, - 0.40859395265579224 - ], - [ - 0.0, - 0.7933939099311829, - 0.608708381652832, - 2.453782081604004 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_15", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.46584567427635193, - -0.8791487812995911, - 0.10042507946491241, - 0.40482646226882935 - ], - [ - 0.8848659992218018, - -0.46283578872680664, - 0.052869684994220734, - 0.21312452852725983 - ], - [ - 0.0, - 0.11349169909954071, - 0.9935388565063477, - 4.0050835609436035 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_16", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6117308139801025, - 0.47477099299430847, - -0.6327541470527649, - -2.550713539123535 - ], - [ - -0.7910659313201904, - 0.36714011430740356, - -0.4893083870410919, - -1.97246515750885 - ], - [ - 0.0, - 0.7998752593994141, - 0.6001662015914917, - 2.4193472862243652 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_17", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9804857969284058, - -0.19053016602993011, - 0.04843547195196152, - 0.19524964690208435 - ], - [ - 0.1965903341770172, - 0.9502609968185425, - -0.24156983196735382, - -0.9737992286682129 - ], - [ - 0.0, - 0.2463778704404831, - 0.9691738486289978, - 3.906864881515503 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_18", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.11604146659374237, - 0.28375449776649475, - -0.9518495798110962, - -3.837028741836548 - ], - [ - -0.9932443499565125, - 0.03315124660730362, - -0.11120528727769852, - -0.4482828676700592 - ], - [ - 0.0, - 0.95832359790802, - 0.2856844663619995, - 1.1516309976577759 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_19", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4936571419239044, - 0.4160023629665375, - -0.7637044787406921, - -3.0785913467407227 - ], - [ - -0.8696565628051758, - -0.236142098903656, - 0.4335138499736786, - 1.747550368309021 - ], - [ - 0.0, - 0.878167986869812, - 0.478352427482605, - 1.928300380706787 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_20", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.1758819967508316, - -0.8105233907699585, - 0.5586745738983154, - 2.252089262008667 - ], - [ - 0.9844112992286682, - 0.14481393992900848, - -0.09981682151556015, - -0.4023744761943817 - ], - [ - 0.0, - 0.5675214529037476, - 0.8233585357666016, - 3.3190643787384033 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_21", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.2203473150730133, - 0.7455814480781555, - -0.6289319396018982, - -2.5353057384490967 - ], - [ - -0.9754214882850647, - 0.1684265434741974, - -0.14207546412944794, - -0.5727245211601257 - ], - [ - 0.0, - 0.6447796821594238, - 0.76436847448349, - 3.081267833709717 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_22", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3247849941253662, - 0.22442881762981415, - -0.9187743067741394, - -3.703697919845581 - ], - [ - -0.945787787437439, - -0.07706920802593231, - 0.31550851464271545, - 1.2718555927276611 - ], - [ - -7.450580152834618e-09, - 0.9714381694793701, - 0.23729296028614044, - 0.9565585851669312 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_23", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9445567727088928, - -0.2064802497625351, - 0.2553004026412964, - 1.029148817062378 - ], - [ - 0.32834798097610474, - 0.593980610370636, - -0.7344212532043457, - -2.9605467319488525 - ], - [ - 0.0, - 0.7775298953056335, - 0.6288458704948425, - 2.534958839416504 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_24", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.3568131923675537, - -0.47686412930488586, - 0.8032962083816528, - 3.2381908893585205 - ], - [ - 0.9341756701469421, - 0.18214070796966553, - -0.30682310461997986, - -1.2368435859680176 - ], - [ - 0.0, - 0.8598984479904175, - 0.5104650259017944, - 2.0577504634857178 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_25", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9154595136642456, - -0.3241480886936188, - 0.238457590341568, - 0.96125328540802 - ], - [ - 0.40241026878356934, - 0.7374176383018494, - -0.5424768924713135, - -2.1867942810058594 - ], - [ - 1.4901161193847656e-08, - 0.5925732851028442, - 0.8055164813995361, - 3.247140884399414 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_26", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.783277153968811, - -0.2097613662481308, - 0.5852152705192566, - 2.3590784072875977 - ], - [ - 0.6216725707054138, - -0.26428911089897156, - 0.7373427152633667, - 2.9723238945007324 - ], - [ - 1.4901161193847656e-08, - 0.9413561224937439, - 0.3374145030975342, - 1.360161542892456 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_27", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9473456144332886, - 0.24743522703647614, - -0.20325399935245514, - -0.8193432092666626 - ], - [ - -0.32021304965019226, - -0.7320334315299988, - 0.6013239622116089, - 2.4240145683288574 - ], - [ - 0.0, - 0.6347461342811584, - 0.7727205157279968, - 3.114936590194702 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_28", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6059809923171997, - 0.7298203706741333, - -0.3164636790752411, - -1.2757060527801514 - ], - [ - -0.7954791188240051, - 0.555963397026062, - -0.24107606709003448, - -0.9718087911605835 - ], - [ - 0.0, - 0.39782780408859253, - 0.917460024356842, - 3.698399782180786 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_29", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9673736691474915, - 0.18667511641979218, - -0.1712908297777176, - -0.690495491027832 - ], - [ - -0.2533538043498993, - 0.712776243686676, - -0.6540349125862122, - -2.6364994049072266 - ], - [ - -7.450580596923828e-09, - 0.6760934591293335, - 0.7368158102035522, - 2.9701998233795166 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_30", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.5314823389053345, - 0.8469671607017517, - -0.013153810985386372, - -0.05302470922470093 - ], - [ - -0.8470693826675415, - 0.5314182043075562, - -0.008253183215856552, - -0.033269643783569336 - ], - [ - -4.656612873077393e-10, - 0.015530066564679146, - 0.9998793601989746, - 4.030642509460449 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_31", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.2689352035522461, - -0.7056869864463806, - 0.6554994583129883, - 2.6424031257629395 - ], - [ - 0.9631582498550415, - -0.1970435231924057, - 0.18303003907203674, - 0.7378177642822266 - ], - [ - 1.4901161193847656e-08, - 0.6805729866027832, - 0.7326802015304565, - 2.953528642654419 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_32", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.1525958627462387, - 0.9537429213523865, - -0.25901514291763306, - -1.0441235303878784 - ], - [ - -0.9882887601852417, - 0.1472618281841278, - -0.03999300301074982, - -0.16121695935726166 - ], - [ - 0.0, - 0.26208439469337463, - 0.9650447964668274, - 3.8902204036712646 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_33", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8881415724754333, - 0.3149119019508362, - -0.3347161114215851, - -1.3492838144302368 - ], - [ - -0.4595698118209839, - -0.6085829734802246, - 0.6468555927276611, - 2.607558250427246 - ], - [ - 0.0, - 0.7283247709274292, - 0.6852320432662964, - 2.762258529663086 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_34", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.2216711938381195, - 0.15314094722270966, - -0.9630210995674133, - -3.8820624351501465 - ], - [ - -0.9751215577125549, - 0.03481302782893181, - -0.21892042458057404, - -0.8824965357780457 - ], - [ - 0.0, - 0.9875908493995667, - 0.1570480763912201, - 0.6330810785293579 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_35", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7046900391578674, - 0.6468268036842346, - -0.2915937304496765, - -1.1754519939422607 - ], - [ - -0.7095152735710144, - -0.642427921295166, - 0.28961068391799927, - 1.167458176612854 - ], - [ - 0.0, - 0.4109761118888855, - 0.9116461277008057, - 3.6749632358551025 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_36", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.6587604284286499, - 0.5157323479652405, - -0.5477724075317383, - -2.208141326904297 - ], - [ - -0.7523526549339294, - -0.4515756070613861, - 0.47962990403175354, - 1.9334501028060913 - ], - [ - -1.4901161193847656e-08, - 0.7280793190002441, - 0.685492753982544, - 2.763309955596924 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_37", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9485506415367126, - 0.16070576012134552, - -0.272810161113739, - -1.0997331142425537 - ], - [ - -0.31662556529045105, - 0.48144426941871643, - -0.8172879219055176, - -3.294593334197998 - ], - [ - 1.4901161193847656e-08, - 0.8616176247596741, - 0.50755774974823, - 2.0460309982299805 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_38", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.3625607192516327, - -0.9221646785736084, - 0.13476629555225372, - 0.5432603359222412 - ], - [ - 0.9319601655006409, - 0.35874998569488525, - -0.052428167313337326, - -0.21134470403194427 - ], - [ - -3.725290298461914e-09, - 0.14460529386997223, - 0.9894894361495972, - 3.9887595176696777 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_39", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7424758076667786, - 0.35094666481018066, - -0.5705838799476624, - -2.3000974655151367 - ], - [ - -0.6698728203773499, - 0.3889833986759186, - -0.6324256062507629, - -2.549389362335205 - ], - [ - 0.0, - 0.8517795205116272, - 0.5239003300666809, - 2.111910104751587 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_40", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9376919269561768, - 0.337600439786911, - -0.08221634477376938, - -0.33142468333244324 - ], - [ - -0.347467303276062, - 0.9110648036003113, - -0.2218729704618454, - -0.89439857006073 - ], - [ - 7.450578820566989e-09, - 0.23661594092845917, - 0.9716032147407532, - 3.9166579246520996 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_41", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.4099404215812683, - 0.30508577823638916, - -0.8595763444900513, - -3.4650630950927734 - ], - [ - -0.912112295627594, - 0.13711798191070557, - -0.3863286077976227, - -1.557340383529663 - ], - [ - 7.450580596923828e-09, - 0.9424018263816833, - 0.33448272943496704, - 1.348343014717102 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_42", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.478212833404541, - -0.3224875032901764, - 0.8168930411338806, - 3.293001413345337 - ], - [ - 0.8782440423965454, - -0.17559771239757538, - 0.4448065757751465, - 1.7930728197097778 - ], - [ - -1.4901161193847656e-08, - 0.9301437735557556, - 0.3671956956386566, - 1.4802132844924927 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_43", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7750111222267151, - -0.2507742941379547, - 0.5800602436065674, - 2.3382976055145264 - ], - [ - 0.6319475173950195, - 0.3075459599494934, - -0.7113774418830872, - -2.8676540851593018 - ], - [ - 0.0, - 0.9178930521011353, - 0.3968277871608734, - 1.5996639728546143 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_44", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.20046335458755493, - -0.26931294798851013, - 0.9419580101966858, - 3.797154188156128 - ], - [ - 0.9797011613845825, - -0.055105969309806824, - 0.19274048507213593, - 0.7769618034362793 - ], - [ - 0.0, - 0.9614748358726501, - 0.2748929262161255, - 1.1081287860870361 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_45", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9920453429222107, - 0.1257016658782959, - -0.0067239319905638695, - -0.02710503712296486 - ], - [ - -0.1258814036846161, - -0.9906289577484131, - 0.05298992618918419, - 0.2136092185974121 - ], - [ - 4.656613428188905e-10, - 0.05341503396630287, - 0.9985723495483398, - 4.025373935699463 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_46", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8664535284042358, - 0.14163364470005035, - -0.4787465035915375, - -1.9298889636993408 - ], - [ - -0.49925780296325684, - 0.24580281972885132, - -0.8308565020561218, - -3.349289894104004 - ], - [ - 0.0, - 0.9589164853096008, - 0.28368836641311646, - 1.1435844898223877 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_47", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.019537171348929405, - -0.7782447338104248, - 0.6276570558547974, - 2.5301661491394043 - ], - [ - 0.9998090863227844, - -0.015207604505121708, - 0.012264983728528023, - 0.04944172501564026 - ], - [ - 1.8626450382086546e-09, - 0.6277768611907959, - 0.7783934473991394, - 3.1378040313720703 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_48", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.2471800148487091, - 0.8873060941696167, - -0.3893454670906067, - -1.5695018768310547 - ], - [ - -0.9689695835113525, - 0.22634799778461456, - -0.09932037442922592, - -0.40037328004837036 - ], - [ - -7.4505797087454084e-09, - 0.4018140733242035, - 0.9157212972640991, - 3.6913907527923584 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_49", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9395476579666138, - -0.10406691581010818, - 0.32622119784355164, - 1.315039873123169 - ], - [ - 0.34241822361946106, - -0.2855450510978699, - 0.8951053619384766, - 3.608285427093506 - ], - [ - -7.450581485102248e-09, - 0.952698290348053, - 0.3039175570011139, - 1.2251310348510742 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_50", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7867971658706665, - 0.1994628608226776, - -0.5840931534767151, - -2.3545548915863037 - ], - [ - -0.6172116994857788, - -0.2542673945426941, - 0.7445789575576782, - 3.0014936923980713 - ], - [ - 0.0, - 0.9463418126106262, - 0.323167622089386, - 1.3027303218841553 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_51", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.996528148651123, - 0.06562576442956924, - -0.05123298615217209, - -0.2065267711877823 - ], - [ - -0.08325598388910294, - 0.785504162311554, - -0.6132305264472961, - -2.4720113277435303 - ], - [ - 0.0, - 0.6153669357299805, - 0.7882407903671265, - 3.1775002479553223 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_52", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.5703749060630798, - 0.5046137571334839, - -0.6481028199195862, - -2.612586259841919 - ], - [ - -0.8213843703269958, - 0.3504072427749634, - -0.4500470757484436, - -1.8141978979110718 - ], - [ - -2.9802320611338473e-08, - 0.7890371084213257, - 0.6143453121185303, - 2.4765055179595947 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_53", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9966066479682922, - 0.060292452573776245, - -0.0560358427464962, - -0.2258877158164978 - ], - [ - -0.08231158554553986, - -0.7300049066543579, - 0.6784669756889343, - 2.734988212585449 - ], - [ - -3.725290298461914e-09, - 0.6807771325111389, - 0.7324904799461365, - 2.952763795852661 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_54", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.005480249412357807, - -0.4604107737541199, - 0.8876890540122986, - 3.5783889293670654 - ], - [ - 0.9999849200248718, - 0.00252320384606719, - -0.004864830989390612, - -0.019610760733485222 - ], - [ - 2.3283062977608182e-10, - 0.8877022862434387, - 0.460417777299881, - 1.8560034036636353 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_55", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9938632249832153, - 0.06336943060159683, - -0.09066598862409592, - -0.3654863238334656 - ], - [ - -0.11061649024486542, - 0.5693594813346863, - -0.814612627029419, - -3.283808708190918 - ], - [ - 3.725290298461914e-09, - 0.8196427226066589, - 0.5728750228881836, - 2.309333324432373 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_56", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8343064188957214, - -0.15910761058330536, - 0.5278424024581909, - 2.127800941467285 - ], - [ - 0.551301121711731, - 0.24078403413295746, - -0.7988053560256958, - -3.220087766647339 - ], - [ - -1.4901161193847656e-08, - 0.9574486613273621, - 0.28860384225845337, - 1.1633994579315186 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_57", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9458622336387634, - 0.06143045797944069, - -0.31870192289352417, - -1.2847285270690918 - ], - [ - -0.32456836104393005, - 0.17902159690856934, - -0.9287661910057068, - -3.74397611618042 - ], - [ - -3.725290298461914e-09, - 0.981925368309021, - 0.18926818668842316, - 0.7629644274711609 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_58", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3637198209762573, - 0.401373028755188, - -0.840599536895752, - -3.3885650634765625 - ], - [ - -0.9315083622932434, - -0.15672142803668976, - 0.32822325825691223, - 1.3231102228164673 - ], - [ - 0.0, - 0.9024068117141724, - 0.43088504672050476, - 1.7369531393051147 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_59", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7641852498054504, - -0.5925607085227966, - 0.25474026799201965, - 1.0268908739089966 - ], - [ - 0.644996702671051, - -0.7020596861839294, - 0.301813542842865, - 1.2166492938995361 - ], - [ - 2.9802320611338473e-08, - 0.39494800567626953, - 0.9187033772468567, - 3.703411817550659 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_60", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.4936883747577667, - -0.4711107909679413, - 0.7309763431549072, - 2.946659803390503 - ], - [ - 0.8696389198303223, - 0.26744651794433594, - -0.4149705171585083, - -1.6727997064590454 - ], - [ - 0.0, - 0.840551495552063, - 0.5417315363883972, - 2.1837897300720215 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_61", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8239285945892334, - 0.3033706843852997, - -0.4786522388458252, - -1.9295090436935425 - ], - [ - -0.5666937828063965, - 0.441077321767807, - -0.6959230303764343, - -2.8053557872772217 - ], - [ - -1.4901162970204496e-08, - 0.8446400165557861, - 0.5353344678878784, - 2.1580026149749756 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_62", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.13379386067390442, - -0.8194224238395691, - 0.5573564171791077, - 2.2467756271362305 - ], - [ - 0.9910091757774353, - 0.11062832176685333, - -0.0752473995089531, - -0.30333197116851807 - ], - [ - 0.0, - 0.5624129176139832, - 0.8268564343452454, - 3.333164930343628 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_63", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8470222353935242, - -0.5191196799278259, - 0.11431454122066498, - 0.4608166515827179 - ], - [ - 0.5315572023391724, - -0.8272034525871277, - 0.18215718865394592, - 0.7342991232872009 - ], - [ - 0.0, - 0.21505610644817352, - 0.976601779460907, - 3.936807632446289 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_64", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8514102697372437, - -0.48340147733688354, - 0.203527569770813, - 0.8204459547996521 - ], - [ - 0.5245001316070557, - 0.7846956253051758, - -0.3303821086883545, - -1.3318129777908325 - ], - [ - 1.4901160305669237e-08, - 0.3880409598350525, - 0.9216420650482178, - 3.7152581214904785 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_65", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7626248598098755, - -0.21123461425304413, - 0.6113781332969666, - 2.4645438194274902 - ], - [ - 0.6468409299850464, - 0.2490454465150833, - -0.7208142876625061, - -2.9056949615478516 - ], - [ - 0.0, - 0.945175290107727, - 0.3265634775161743, - 1.3164193630218506 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_66", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9940101504325867, - -0.09694286435842514, - 0.05045628547668457, - 0.2033957839012146 - ], - [ - 0.10928749293088913, - 0.8817312121391296, - -0.45891860127449036, - -1.8499599695205688 - ], - [ - 0.0, - 0.46168383955955505, - 0.8870444893836975, - 3.5757904052734375 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_67", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4831806421279907, - 0.28181999921798706, - -0.8289233446121216, - -3.3414969444274902 - ], - [ - -0.8755207061767578, - -0.15553027391433716, - 0.4574646055698395, - 1.8440988063812256 - ], - [ - 0.0, - 0.9467774629592896, - 0.3218885064125061, - 1.2975740432739258 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_68", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.5874632596969604, - -0.275043249130249, - 0.7610769271850586, - 3.0679993629455566 - ], - [ - 0.8092509508132935, - 0.1996634155511856, - -0.552492082118988, - -2.2271671295166016 - ], - [ - 1.4901161193847656e-08, - 0.9404709935188293, - 0.33987388014793396, - 1.3700755834579468 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_69", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.28432145714759827, - -0.27294471859931946, - 0.9190551042556763, - 3.7048299312591553 - ], - [ - 0.958729088306427, - -0.0809447169303894, - 0.27255573868751526, - 1.0987074375152588 - ], - [ - 0.0, - 0.9586182236671448, - 0.2846943438053131, - 1.1476397514343262 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_70", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9982531666755676, - 0.04316011816263199, - -0.04034840688109398, - -0.16264963150024414 - ], - [ - -0.05908291041851044, - -0.7292248606681824, - 0.6817187070846558, - 2.748095989227295 - ], - [ - -1.862645371275562e-09, - 0.6829115748405457, - 0.7305009961128235, - 2.9447436332702637 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_71", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8489508628845215, - 0.4330032169818878, - -0.30296969413757324, - -1.221310019493103 - ], - [ - -0.5284717679023743, - -0.6955876350402832, - 0.4866984188556671, - 1.9619442224502563 - ], - [ - 0.0, - 0.573293924331665, - 0.8193495869636536, - 3.3029041290283203 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_72", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.36281347274780273, - 0.8845916986465454, - -0.29302528500556946, - -1.181222677230835 - ], - [ - -0.9318617582321167, - -0.3444092571735382, - 0.11408723890781403, - 0.4599003791809082 - ], - [ - 7.450580152834618e-09, - 0.31445157527923584, - 0.9492735862731934, - 3.8266441822052 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_73", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.40546363592147827, - 0.27698150277137756, - -0.8711374402046204, - -3.511667251586914 - ], - [ - -0.9141111373901367, - -0.12285806983709335, - 0.3864022195339203, - 1.5576372146606445 - ], - [ - 7.450580152834618e-09, - 0.9529885053634644, - 0.3030063509941101, - 1.2214577198028564 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_74", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.917123556137085, - 0.2904980778694153, - -0.27293816208839417, - -1.1002490520477295 - ], - [ - -0.3986031115055084, - -0.6683908104896545, - 0.6279881596565247, - 2.531501531600952 - ], - [ - 0.0, - 0.6847367286682129, - 0.7287903428077698, - 2.9378480911254883 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_75", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8810421824455261, - -0.12337788194417953, - 0.4566646218299866, - 1.8408740758895874 - ], - [ - 0.4730377495288849, - 0.2297937422990799, - -0.8505468964576721, - -3.428664445877075 - ], - [ - 0.0, - 0.9653872847557068, - 0.26082032918930054, - 1.0514005422592163 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_76", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.5526307225227356, - 0.7273481488227844, - -0.40689539909362793, - -1.6402479410171509 - ], - [ - -0.8334263563156128, - -0.48229214549064636, - 0.269805371761322, - 1.0876203775405884 - ], - [ - 0.0, - 0.48822006583213806, - 0.87272047996521, - 3.5180490016937256 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_77", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.6015447378158569, - -0.3978673219680786, - 0.6927087903022766, - 2.792398452758789 - ], - [ - 0.7988391518592834, - -0.29960349202156067, - 0.5216261148452759, - 2.1027421951293945 - ], - [ - 0.0, - 0.8671442866325378, - 0.49805691838264465, - 2.0077316761016846 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_78", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8200681209564209, - 0.44735074043273926, - -0.3568832278251648, - -1.4386422634124756 - ], - [ - -0.5722659826278687, - -0.6410622000694275, - 0.511420488357544, - 2.0616018772125244 - ], - [ - -1.4901161193847656e-08, - 0.6236317157745361, - 0.7817182540893555, - 3.1512069702148438 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_79", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.2783367335796356, - 0.6024183034896851, - -0.7480780482292175, - -3.015599250793457 - ], - [ - -0.9604834914207458, - -0.17457370460033417, - 0.21678417921066284, - 0.8738850355148315 - ], - [ - 0.0, - 0.7788556814193726, - 0.627203106880188, - 2.528336763381958 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_80", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.1656382977962494, - -0.8863168954849243, - 0.43244221806526184, - 1.7432303428649902 - ], - [ - 0.9861866235733032, - 0.14886432886123657, - -0.07263228297233582, - -0.29279008507728577 - ], - [ - -7.450580596923828e-09, - 0.438499391078949, - 0.8987314701080322, - 3.6229023933410645 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_81", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.23432859778404236, - -0.8320841193199158, - 0.5027187466621399, - 2.026524066925049 - ], - [ - 0.97215735912323, - 0.2005653828382492, - -0.12117522954940796, - -0.48847293853759766 - ], - [ - 0.0, - 0.5171166658401489, - 0.8559149503707886, - 3.450303316116333 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_82", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3411760628223419, - 0.3660532832145691, - -0.8657965660095215, - -3.490137815475464 - ], - [ - -0.9399994611740112, - -0.13286031782627106, - 0.314243882894516, - 1.2667577266693115 - ], - [ - 0.0, - 0.9210607409477234, - 0.3894186317920685, - 1.5697968006134033 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_83", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8961153626441956, - -0.2825562059879303, - 0.34225592017173767, - 1.3796778917312622 - ], - [ - 0.4438210427761078, - -0.5705068707466125, - 0.6910460591316223, - 2.785696029663086 - ], - [ - 1.4901160305669237e-08, - 0.7711575031280518, - 0.6366443037986755, - 2.5663955211639404 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_84", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9076535701751709, - -0.41475310921669006, - 0.06438172608613968, - 0.25953108072280884 - ], - [ - 0.4197203814983368, - 0.8969117999076843, - -0.1392267495393753, - -0.5612410306930542 - ], - [ - -3.725290742551124e-09, - 0.15339165925979614, - 0.9881653785705566, - 3.98342227935791 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_85", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.857429027557373, - 0.25322073698043823, - -0.4479895532131195, - -1.8059039115905762 - ], - [ - -0.5146021842956543, - -0.42191582918167114, - 0.7464392185211182, - 3.008992910385132 - ], - [ - -1.4901161193847656e-08, - 0.8705551028251648, - 0.4920707941055298, - 1.9836010932922363 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_86", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.5219665765762329, - 0.3673712909221649, - -0.7697980403900146, - -3.1031556129455566 - ], - [ - -0.8529659509658813, - 0.22481030225753784, - -0.47107258439064026, - -1.8989545106887817 - ], - [ - -1.4901161193847656e-08, - 0.902495801448822, - 0.43069860339164734, - 1.7362018823623657 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_87", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.262929230928421, - -0.6298996806144714, - 0.7308177351951599, - 2.9460208415985107 - ], - [ - 0.9648151397705078, - 0.17165882885456085, - -0.19916079938411713, - -0.802842915058136 - ], - [ - 0.0, - 0.7574692964553833, - 0.6528707146644592, - 2.6318063735961914 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_88", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7190568447113037, - 0.25370657444000244, - -0.6469854712486267, - -2.6080820560455322 - ], - [ - -0.6949512958526611, - 0.2625068128108978, - -0.669427216053009, - -2.698547601699829 - ], - [ - 1.4901161193847656e-08, - 0.9309796094894409, - 0.36507102847099304, - 1.4716484546661377 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_89", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.6872168183326721, - -0.15070705115795135, - 0.7106478810310364, - 2.864713430404663 - ], - [ - 0.7264524698257446, - -0.14256736636161804, - 0.6722658276557922, - 2.7099905014038086 - ], - [ - -7.450580596923828e-09, - 0.9782443046569824, - 0.20745617151260376, - 0.8362826108932495 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_90", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.11009364575147629, - 0.6933611035346985, - -0.7121304273605347, - -2.8706893920898438 - ], - [ - -0.9939212203025818, - 0.07680150866508484, - -0.07888053357601166, - -0.3179776072502136 - ], - [ - -3.725290076417309e-09, - 0.7164856791496277, - 0.6976016759872437, - 2.812122106552124 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_91", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9678624868392944, - -0.20755137503147125, - 0.142002671957016, - 0.5724310874938965 - ], - [ - 0.2514802813529968, - 0.7987949252128601, - -0.5465201735496521, - -2.2030932903289795 - ], - [ - 0.0, - 0.5646671056747437, - 0.8253186941146851, - 3.3269660472869873 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_92", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9153974056243896, - 0.34088584780693054, - -0.21411310136318207, - -0.8631175756454468 - ], - [ - -0.4025513529777527, - 0.7751706838607788, - -0.48689088225364685, - -1.9627200365066528 - ], - [ - 0.0, - 0.5318901538848877, - 0.8468132019042969, - 3.4136135578155518 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_93", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.09554896503686905, - 0.24177570641040802, - -0.9656162858009338, - -3.892524003982544 - ], - [ - -0.9954248070716858, - 0.023207595571875572, - -0.09268768876791, - -0.37363606691360474 - ], - [ - 0.0, - 0.9700545072555542, - 0.2428869754076004, - 0.9791087508201599 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_94", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.5899582505226135, - 0.11707798391580582, - -0.7989004850387573, - -3.220470905303955 - ], - [ - -0.8074337244033813, - -0.08554401248693466, - 0.5837233662605286, - 2.3530640602111816 - ], - [ - 7.450580596923828e-09, - 0.989431619644165, - 0.14500010013580322, - 0.5845140814781189 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_95", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3251526653766632, - 0.47552454471588135, - -0.8174057006835938, - -3.2950680255889893 - ], - [ - -0.9456614851951599, - -0.1635025441646576, - 0.28105366230010986, - 1.1329636573791504 - ], - [ - 1.4901160305669237e-08, - 0.864374577999115, - 0.5028484463691711, - 2.0270471572875977 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_96", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.007356112357228994, - -0.3722950220108032, - 0.9280852675437927, - 3.7412314414978027 - ], - [ - 0.9999728798866272, - -0.0027387181762605906, - 0.006827284581959248, - 0.027521664276719093 - ], - [ - 0.0, - 0.9281103610992432, - 0.37230512499809265, - 1.500809907913208 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_97", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.17390967905521393, - -0.9478758573532104, - 0.26699569821357727, - 1.0762940645217896 - ], - [ - 0.9847615361213684, - 0.16739563643932343, - -0.047151658684015274, - -0.19007441401481628 - ], - [ - 3.725290076417309e-09, - 0.27112722396850586, - 0.9625434875488281, - 3.8801369667053223 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_98", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.884382963180542, - -0.4409871995449066, - 0.15296123921871185, - 0.6166064739227295 - ], - [ - 0.46676215529441833, - 0.8355467319488525, - -0.28981852531433105, - -1.1682958602905273 - ], - [ - 0.0, - 0.3277069926261902, - 0.9447793960571289, - 3.8085274696350098 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_99", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.31852027773857117, - 0.9175867438316345, - -0.2378644347190857, - -0.9588622450828552 - ], - [ - -0.9479159712791443, - -0.3083290159702301, - 0.07992759346961975, - 0.32219845056533813 - ], - [ - -7.450580152834618e-09, - 0.25093400478363037, - 0.968004047870636, - 3.9021494388580322 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - } - ] -} \ No newline at end of file diff --git a/data/pirate_flag/val/transforms.json b/data/pirate_flag/val/transforms.json deleted file mode 100644 index a8c3c02dde0fc810f785f30dd36f144a8391b3ea..0000000000000000000000000000000000000000 --- a/data/pirate_flag/val/transforms.json +++ /dev/null @@ -1,3005 +0,0 @@ -{ - "camera_angle_x": 0.6911112070083618, - "frames": [ - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_0", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.743133008480072, - -0.3919031620025635, - 0.5423698425292969, - 2.1863629817962646 - ], - [ - 0.6691436767578125, - 0.43523716926574707, - -0.6023414134979248, - -2.4281160831451416 - ], - [ - -1.4901161193847656e-08, - 0.8105431795120239, - 0.5856786966323853, - 2.3609466552734375 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_1", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9831430912017822, - 0.14502117037773132, - -0.11134820431470871, - -0.44885900616645813 - ], - [ - -0.18283753097057343, - 0.7797991633415222, - -0.5987349152565002, - -2.4135777950286865 - ], - [ - 0.0, - 0.6090008616447449, - 0.7931694984436035, - 3.197368860244751 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_2", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9325867891311646, - -0.24648238718509674, - 0.26368218660354614, - 1.0629369020462036 - ], - [ - 0.36094579100608826, - 0.6368441581726074, - -0.6812838315963745, - -2.746342897415161 - ], - [ - 0.0, - 0.7305311560630798, - 0.6828792691230774, - 2.752774477005005 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_3", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.410455584526062, - -0.47721943259239197, - 0.7770377993583679, - 3.1323394775390625 - ], - [ - 0.911880612373352, - -0.2148059606552124, - 0.34976017475128174, - 1.409928321838379 - ], - [ - 0.0, - 0.8521267175674438, - 0.5233354568481445, - 2.109632730484009 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_4", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.23326647281646729, - -0.6932194828987122, - 0.681933581829071, - 2.748962163925171 - ], - [ - 0.9724128842353821, - 0.16629238426685333, - -0.16358508169651031, - -0.6594325304031372 - ], - [ - 7.450580596923828e-09, - 0.7012798190116882, - 0.7128860354423523, - 2.8737354278564453 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_5", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8631420135498047, - -0.36063098907470703, - 0.35345613956451416, - 1.4248273372650146 - ], - [ - 0.5049614310264587, - -0.6164346933364868, - 0.604170560836792, - 2.4354896545410156 - ], - [ - 0.0, - 0.6999667286872864, - 0.7141753435134888, - 2.8789331912994385 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_6", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9995267391204834, - 0.017501838505268097, - -0.025300614535808563, - -0.10199003666639328 - ], - [ - -0.030764194205403328, - -0.5686336159706116, - 0.8220154047012329, - 3.313649892807007 - ], - [ - 9.313225746154785e-10, - 0.8224045634269714, - 0.5689029693603516, - 2.293321132659912 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_7", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.6548864841461182, - 0.10623428225517273, - -0.7482232451438904, - -3.0161845684051514 - ], - [ - -0.7557273507118225, - -0.09205884486436844, - 0.648383617401123, - 2.613718271255493 - ], - [ - 0.0, - 0.9900704622268677, - 0.1405722200870514, - 0.5666648149490356 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_8", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8670099973678589, - 0.20318569242954254, - -0.45498278737068176, - -1.834094524383545 - ], - [ - -0.4982909560203552, - 0.353536456823349, - -0.7916551828384399, - -3.1912646293640137 - ], - [ - 0.0, - 0.9130868315696716, - 0.40776512026786804, - 1.643754005432129 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_9", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.5969783067703247, - 0.7395582795143127, - -0.31091880798339844, - -1.2533538341522217 - ], - [ - -0.8022574186325073, - -0.5503224730491638, - 0.23136189579963684, - 0.9326496124267578 - ], - [ - 0.0, - 0.38755491375923157, - 0.9218466281890869, - 3.7160825729370117 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_10", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.07267163693904877, - 0.42395302653312683, - -0.9027637839317322, - -3.63915753364563 - ], - [ - -0.9973559975624084, - -0.030891036614775658, - 0.06577923893928528, - 0.2651646137237549 - ], - [ - 0.0, - 0.9051571488380432, - 0.4250769019126892, - 1.713539958000183 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_11", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.10947272181510925, - -0.4084450900554657, - 0.9061943292617798, - 3.652986526489258 - ], - [ - 0.993989884853363, - 0.04498395696282387, - -0.0998033955693245, - -0.40232038497924805 - ], - [ - 0.0, - 0.9116737246513367, - 0.41091471910476685, - 1.6564503908157349 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_12", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.4976893365383148, - -0.363941490650177, - 0.7873066663742065, - 3.1737349033355713 - ], - [ - 0.8673553466796875, - -0.20882996916770935, - 0.4517573118209839, - 1.821092128753662 - ], - [ - 0.0, - 0.907709538936615, - 0.4195989668369293, - 1.6914576292037964 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_13", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7507878541946411, - 0.6090552806854248, - -0.25567418336868286, - -1.0306557416915894 - ], - [ - -0.6605435609817505, - 0.6922651529312134, - -0.29060468077659607, - -1.1714650392532349 - ], - [ - 1.4901162970204496e-08, - 0.3870663344860077, - 0.9220517873764038, - 3.716909885406494 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_14", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.32448244094848633, - 0.8105221390724182, - -0.4876115620136261, - -1.9656250476837158 - ], - [ - -0.9458916187286377, - -0.27804476022720337, - 0.16727222502231598, - 0.6742959022521973 - ], - [ - 0.0, - 0.5155045390129089, - 0.8568867444992065, - 3.45422101020813 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_15", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.37811413407325745, - 0.8639068603515625, - -0.3327079117298126, - -1.341188669204712 - ], - [ - -0.925758957862854, - -0.3528514504432678, - 0.1358901709318161, - 0.5477908849716187 - ], - [ - -1.4901161193847656e-08, - 0.3593893051147461, - 0.9331876635551453, - 3.7618000507354736 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_16", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.6967560648918152, - 0.2141799032688141, - -0.6845859289169312, - -2.7596542835235596 - ], - [ - -0.7173082232475281, - -0.20804329216480255, - 0.6649713516235352, - 2.6805853843688965 - ], - [ - -1.4901162970204496e-08, - 0.9543818831443787, - 0.2985883951187134, - 1.2036484479904175 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_17", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6824572682380676, - 0.52837735414505, - -0.5050438642501831, - -2.0358972549438477 - ], - [ - -0.7309253811836243, - 0.4933403730392456, - -0.471554160118103, - -1.9008957147598267 - ], - [ - 0.0, - 0.6909649968147278, - 0.7228881120681763, - 2.914055347442627 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_18", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.787293016910553, - 0.2594555616378784, - -0.5593322515487671, - -2.2547407150268555 - ], - [ - -0.6165791749954224, - -0.33129164576530457, - 0.714195966720581, - 2.879016160964966 - ], - [ - 1.4901162970204496e-08, - 0.9071540236473083, - 0.42079851031303406, - 1.6962931156158447 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_19", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.32589682936668396, - -0.8065812587738037, - 0.4931711256504059, - 1.9880363941192627 - ], - [ - 0.9454054236412048, - 0.27804186940193176, - -0.1700042337179184, - -0.6853089928627014 - ], - [ - 0.0, - 0.5216503739356995, - 0.8531593084335327, - 3.439195156097412 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_20", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.03516093268990517, - -0.7914001941680908, - 0.6102864146232605, - 2.460143566131592 - ], - [ - 0.9993816614151001, - -0.02784358523786068, - 0.02147151716053486, - 0.08655446022748947 - ], - [ - -1.8626450382086546e-09, - 0.6106640696525574, - 0.7918897271156311, - 3.1922097206115723 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_21", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6505129337310791, - -0.09625901281833649, - 0.7533705830574036, - 3.0369338989257812 - ], - [ - 0.7594952583312988, - 0.08244650065898895, - -0.6452670693397522, - -2.6011548042297363 - ], - [ - 3.725290298461914e-09, - 0.9919359087944031, - 0.12674076855182648, - 0.5109083652496338 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_22", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6796112656593323, - 0.17150208353996277, - -0.7132429480552673, - -2.8751742839813232 - ], - [ - -0.7335724830627441, - 0.15888647735118866, - -0.66077721118927, - -2.6636781692504883 - ], - [ - -7.450581485102248e-09, - 0.9722869992256165, - 0.23379026353359222, - 0.9424387216567993 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_23", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8364447951316833, - 0.23469708859920502, - -0.495254784822464, - -1.9964361190795898 - ], - [ - -0.5480511784553528, - -0.3581985831260681, - 0.7558660507202148, - 3.0469939708709717 - ], - [ - 0.0, - 0.9036652445793152, - 0.4282393157482147, - 1.726288080215454 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_24", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8867356181144714, - -0.31552931666374207, - 0.3378477096557617, - 1.361907720565796 - ], - [ - 0.46227675676345825, - -0.60524582862854, - 0.6480568051338196, - 2.612400531768799 - ], - [ - 0.0, - 0.7308343052864075, - 0.6825549602508545, - 2.751466989517212 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_25", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.46036428213119507, - -0.48971930146217346, - 0.7404321432113647, - 2.9847774505615234 - ], - [ - 0.8877301216125488, - -0.2539615035057068, - 0.38397765159606934, - 1.5478633642196655 - ], - [ - -1.4901161193847656e-08, - 0.834073543548584, - 0.5516533255577087, - 2.223785638809204 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_26", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.29256564378738403, - 0.2798742949962616, - -0.9143717288970947, - -3.685950517654419 - ], - [ - -0.956245481967926, - 0.08562822639942169, - -0.27975425124168396, - -1.127725601196289 - ], - [ - 0.0, - 0.9562103152275085, - 0.29268038272857666, - 1.1798324584960938 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_27", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9861187934875488, - 0.14233525097370148, - -0.08550082892179489, - -0.34466487169265747 - ], - [ - -0.1660413146018982, - -0.8453285694122314, - 0.507789134979248, - 2.0469634532928467 - ], - [ - 0.0, - 0.5149371027946472, - 0.8572279810905457, - 3.455596446990967 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_28", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.24558457732200623, - -0.19901441037654877, - 0.9487261772155762, - 3.8244378566741943 - ], - [ - 0.9693751335144043, - -0.050418950617313385, - 0.2403533160686493, - 0.9688952565193176 - ], - [ - 3.7252898543727042e-09, - 0.9786987900733948, - 0.2053017020225525, - 0.8275976777076721 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_29", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.866669237613678, - 0.2974776029586792, - -0.40048912167549133, - -1.6144232749938965 - ], - [ - -0.4988832473754883, - 0.516783595085144, - -0.6957371830940247, - -2.8046061992645264 - ], - [ - -1.4901161193847656e-08, - 0.8027712106704712, - 0.5962870717048645, - 2.403710126876831 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_30", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3453785181045532, - 0.28756073117256165, - -0.8933209776878357, - -3.6010923385620117 - ], - [ - -0.9384635090827942, - -0.10582970082759857, - 0.328764945268631, - 1.325294017791748 - ], - [ - 0.0, - 0.9518975019454956, - 0.30641651153564453, - 1.2352045774459839 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_31", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.747264564037323, - 0.634804368019104, - -0.19651710987091064, - -0.7921857833862305 - ], - [ - -0.6645265817642212, - -0.7138417363166809, - 0.2209848165512085, - 0.8908182382583618 - ], - [ - 1.4901160305669237e-08, - 0.29572510719299316, - 0.9552730917930603, - 3.8508288860321045 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_32", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9448134899139404, - -0.12120604515075684, - 0.30436253547668457, - 1.2269247770309448 - ], - [ - 0.32760873436927795, - -0.34955450892448425, - 0.8777722120285034, - 3.5384132862091064 - ], - [ - 7.450580596923828e-09, - 0.9290428757667542, - 0.36997196078300476, - 1.4914047718048096 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_33", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.0805315151810646, - 0.7130820751190186, - -0.6964400410652161, - -2.8074395656585693 - ], - [ - -0.9967520833015442, - -0.057612694799900055, - 0.056268125772476196, - 0.2268240749835968 - ], - [ - 3.725290076417309e-09, - 0.6987094283103943, - 0.7154056429862976, - 2.883892297744751 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_34", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7844621539115906, - 0.10395827144384384, - -0.6114014983177185, - -2.4646382331848145 - ], - [ - -0.6201766133308411, - -0.13149695098400116, - 0.7733624577522278, - 3.117523670196533 - ], - [ - -7.450580152834618e-09, - 0.9858505129814148, - 0.16762688755989075, - 0.6757255792617798 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_35", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.07573161274194717, - 0.12946154177188873, - -0.9886881709098816, - -3.985529661178589 - ], - [ - -0.9971282482147217, - -0.00983256846666336, - 0.07509058713912964, - 0.30269986391067505 - ], - [ - 0.0, - 0.9915356636047363, - 0.1298343986272812, - 0.5233792662620544 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_36", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.028468087315559387, - -0.18163292109966278, - 0.9829541444778442, - 3.9624152183532715 - ], - [ - 0.9995946288108826, - 0.005172838922590017, - -0.027994172647595406, - -0.11284812539815903 - ], - [ - 0.0, - 0.9833527207374573, - 0.18170656263828278, - 0.7324826717376709 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_37", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.26934370398521423, - 0.8217999339103699, - -0.5020945072174072, - -2.02400803565979 - ], - [ - -0.9630441665649414, - -0.22984060645103455, - 0.14042554795742035, - 0.5660735368728638 - ], - [ - -7.450580596923828e-09, - 0.5213619470596313, - 0.8533354997634888, - 3.439905881881714 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_38", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.5485877394676208, - 0.820152223110199, - -0.16248619556427002, - -0.6550028920173645 - ], - [ - -0.8360931277275085, - -0.5381284356117249, - 0.10661245137453079, - 0.42976856231689453 - ], - [ - -7.450581485102248e-09, - 0.19433997571468353, - 0.9809341430664062, - 3.9542722702026367 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_39", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.898309051990509, - 0.19496318697929382, - -0.39373889565467834, - -1.5872122049331665 - ], - [ - -0.43936431407928467, - 0.3986150026321411, - -0.8050249218940735, - -3.245159149169922 - ], - [ - 1.4901162970204496e-08, - 0.896155834197998, - 0.4437393248081207, - 1.7887704372406006 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_40", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.21186307072639465, - -0.795566201210022, - 0.5676164031028748, - 2.288135051727295 - ], - [ - 0.9772992730140686, - -0.1724662184715271, - 0.12305030226707458, - 0.49603167176246643 - ], - [ - 0.0, - 0.5808008313179016, - 0.8140455484390259, - 3.281522750854492 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_41", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.18388350307941437, - 0.22015610337257385, - -0.9579759836196899, - -3.861724853515625 - ], - [ - -0.9829481244087219, - -0.04118536785244942, - 0.17921188473701477, - 0.7224262952804565 - ], - [ - 0.0, - 0.9745946526527405, - 0.22397536039352417, - 0.9028736352920532 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_42", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.3472438454627991, - -0.9350246787071228, - 0.07176655530929565, - 0.28930023312568665 - ], - [ - 0.9377749562263489, - 0.34622547030448914, - -0.026574067771434784, - -0.1071234941482544 - ], - [ - 0.0, - 0.07652872800827026, - 0.997067391872406, - 4.0193071365356445 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_43", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.34846919775009155, - 0.8844107985496521, - -0.31046202778816223, - -1.2515124082565308 - ], - [ - -0.9373201727867126, - 0.3287990093231201, - -0.11542102694511414, - -0.4652770459651947 - ], - [ - 7.4505792646561986e-09, - 0.3312229812145233, - 0.943552553653717, - 3.803581953048706 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_44", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.3987884819507599, - -0.26074573397636414, - 0.8791924118995667, - 3.544137954711914 - ], - [ - 0.9170429110527039, - -0.11338881403207779, - 0.38232868909835815, - 1.541216254234314 - ], - [ - 7.450580596923828e-09, - 0.9587253928184509, - 0.2843332290649414, - 1.146183967590332 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_45", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.727084755897522, - 0.16340602934360504, - -0.6668179035186768, - -2.6880292892456055 - ], - [ - -0.6865476965904236, - -0.1730542927980423, - 0.7061899900436401, - 2.846743106842041 - ], - [ - 0.0, - 0.9712623953819275, - 0.23801115155220032, - 0.9594537019729614 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_46", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9469666481018066, - 0.25044819712638855, - -0.20132017135620117, - -0.8115476369857788 - ], - [ - -0.32133182883262634, - -0.7380722761154175, - 0.5932916402816772, - 2.3916354179382324 - ], - [ - -1.4901162970204496e-08, - 0.6265179514884949, - 0.7794067859649658, - 3.1418895721435547 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_47", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7967803478240967, - -0.32198566198349, - 0.5113377571105957, - 2.0612685680389404 - ], - [ - 0.6042691469192505, - 0.4245655834674835, - -0.6742424964904785, - -2.717958688735962 - ], - [ - 1.4901161193847656e-08, - 0.8462087512016296, - 0.5328513979911804, - 2.1479928493499756 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_48", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9780052304267883, - -0.15371547639369965, - 0.14098654687404633, - 0.5683349967002869 - ], - [ - 0.20858009159564972, - -0.7207520604133606, - 0.66106778383255, - 2.6648497581481934 - ], - [ - -7.450580152834618e-09, - 0.6759349703788757, - 0.7369612455368042, - 2.9707860946655273 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_49", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.005637063179165125, - 0.1978074610233307, - -0.9802247285842896, - -3.9514119625091553 - ], - [ - -0.999984085559845, - 0.0011150708887726068, - -0.005525676533579826, - -0.022274713963270187 - ], - [ - 0.0, - 0.9802402257919312, - 0.19781063497066498, - 0.7974001169204712 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_50", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.6818947792053223, - -0.437421977519989, - 0.5862435698509216, - 2.3632233142852783 - ], - [ - 0.7314503192901611, - -0.4077867865562439, - 0.546525776386261, - 2.203115940093994 - ], - [ - 0.0, - 0.8014810085296631, - 0.5980201363563538, - 2.410696268081665 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_51", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9968913197517395, - 0.05960064381361008, - -0.05153104290366173, - -0.2077282816171646 - ], - [ - -0.0787888616323471, - -0.7541086673736572, - 0.6520064473152161, - 2.628322124481201 - ], - [ - 0.0, - 0.6540396809577942, - 0.7564602494239807, - 3.049388885498047 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_52", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.2333109974861145, - -0.1637187898159027, - 0.958520770072937, - 3.8639209270477295 - ], - [ - 0.9724021553993225, - -0.03928147628903389, - 0.22998039424419403, - 0.9270806312561035 - ], - [ - 0.0, - 0.9857245683670044, - 0.16836532950401306, - 0.6787023544311523 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_53", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.24058827757835388, - -0.2898363173007965, - 0.9263433814048767, - 3.7342097759246826 - ], - [ - 0.9706272482872009, - 0.07184139639139175, - -0.22961169481277466, - -0.9255943894386292 - ], - [ - 7.450580152834618e-09, - 0.9543761610984802, - 0.2986071705818176, - 1.2037241458892822 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_54", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6732898950576782, - 0.49745598435401917, - -0.5470085144042969, - -2.205061912536621 - ], - [ - -0.7393786907196045, - 0.4529912769794464, - -0.49811458587646484, - -2.0079641342163086 - ], - [ - 0.0, - 0.7398219108581543, - 0.672802746295929, - 2.7121546268463135 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_55", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.36451220512390137, - -0.8697866201400757, - 0.3325689733028412, - 1.3406283855438232 - ], - [ - 0.9311987161636353, - -0.3404728174209595, - 0.130182147026062, - 0.5247810482978821 - ], - [ - 7.450581485102248e-09, - 0.35714080929756165, - 0.9340505599975586, - 3.7652783393859863 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_56", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8334965109825134, - 0.22713108360767365, - -0.5036814212799072, - -2.030404806137085 - ], - [ - -0.5525246262550354, - 0.34263262152671814, - -0.7598153352737427, - -3.062913656234741 - ], - [ - 0.0, - 0.9115997552871704, - 0.41107863187789917, - 1.6571109294891357 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_57", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.5828753113746643, - 0.4870072305202484, - -0.6504462361335754, - -2.622032642364502 - ], - [ - -0.812561571598053, - 0.34934520721435547, - -0.46658504009246826, - -1.8808645009994507 - ], - [ - 0.0, - 0.8004884719848633, - 0.5993480682373047, - 2.4160492420196533 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_58", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9974586963653564, - -0.011457342654466629, - 0.07031979411840439, - 0.28346818685531616 - ], - [ - 0.07124706357717514, - -0.16040275990962982, - 0.9844768643379211, - 3.968553304672241 - ], - [ - 9.313225191043273e-10, - 0.9869850873947144, - 0.1608114242553711, - 0.6482516527175903 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_59", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.5727010369300842, - -0.5759655833244324, - 0.5833325982093811, - 2.3514890670776367 - ], - [ - 0.8197643756866455, - 0.40237921476364136, - -0.4075259268283844, - -1.6427897214889526 - ], - [ - -1.4901162970204496e-08, - 0.7115857601165771, - 0.7025991082191467, - 2.8322677612304688 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_60", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.4899190664291382, - 0.19531674683094025, - -0.8496062159538269, - -3.4248719215393066 - ], - [ - -0.8717679381370544, - 0.10976475477218628, - -0.4774645268917084, - -1.9247210025787354 - ], - [ - 0.0, - 0.9745784401893616, - 0.2240467369556427, - 0.9031612277030945 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_61", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9288329482078552, - -0.13192251324653625, - 0.34621620178222656, - 1.3956421613693237 - ], - [ - 0.37049856781959534, - 0.3307272493839264, - -0.8679574728012085, - -3.4988484382629395 - ], - [ - 7.4505792646561986e-09, - 0.9344602227210999, - 0.3560675084590912, - 1.4353539943695068 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_62", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9040287733078003, - -0.35809755325317383, - 0.23344829678535461, - 0.9410602450370789 - ], - [ - 0.4274715781211853, - 0.7573146224021912, - -0.4937029182910919, - -1.990180253982544 - ], - [ - 0.0, - 0.5461141467094421, - 0.8377106189727783, - 3.376919746398926 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_63", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.2807929515838623, - 0.9045552611351013, - -0.3208351731300354, - -1.2933279275894165 - ], - [ - -0.9597683548927307, - 0.26463964581489563, - -0.09386458247900009, - -0.3783802390098572 - ], - [ - 7.450580152834618e-09, - 0.3342840075492859, - 0.9424723982810974, - 3.799227714538574 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_64", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.3827987611293793, - 0.6837500929832458, - -0.6212494969367981, - -2.5043365955352783 - ], - [ - -0.9238316416740417, - 0.2833186089992523, - -0.2574208676815033, - -1.0376965999603271 - ], - [ - 0.0, - 0.6724702715873718, - 0.7401241064071655, - 2.9835352897644043 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_65", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.6021803021430969, - -0.427194744348526, - 0.6744505763053894, - 2.718797206878662 - ], - [ - 0.7983601093292236, - -0.3222208321094513, - 0.5087188482284546, - 2.050711154937744 - ], - [ - 0.0, - 0.8447949290275574, - 0.5350902676582336, - 2.157017946243286 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_66", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6714208126068115, - 0.6646060347557068, - -0.32786086201667786, - -1.3216493129730225 - ], - [ - -0.7410761713981628, - 0.6021382212638855, - -0.2970444858074188, - -1.1974246501922607 - ], - [ - -1.4901158529312397e-08, - 0.44241175055503845, - 0.8968120217323303, - 3.6151647567749023 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_67", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9925311207771301, - 0.1184416338801384, - -0.02921437844634056, - -0.11776691675186157 - ], - [ - -0.12199139595031738, - 0.9636499881744385, - -0.23769037425518036, - -0.9581605195999146 - ], - [ - 0.0, - 0.23947884142398834, - 0.9709015488624573, - 3.9138290882110596 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_68", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6828600168228149, - -0.12688151001930237, - 0.7194465398788452, - 2.900181770324707 - ], - [ - 0.7305492758750916, - 0.11859885603189468, - -0.6724820137023926, - -2.7108616828918457 - ], - [ - 7.450581485102248e-09, - 0.9848020672798157, - 0.1736796349287033, - 0.700124979019165 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_69", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7868287563323975, - -0.5256665349006653, - 0.32338088750839233, - 1.3035900592803955 - ], - [ - 0.6171712875366211, - 0.6701697707176208, - -0.4122767448425293, - -1.6619406938552856 - ], - [ - 0.0, - 0.5239726305007935, - 0.8517351150512695, - 3.4334540367126465 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_70", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.862337052822113, - 0.3818552494049072, - -0.3325077295303345, - -1.3403816223144531 - ], - [ - -0.506334662437439, - 0.6503363847732544, - -0.5662928223609924, - -2.28279972076416 - ], - [ - -1.4901161193847656e-08, - 0.6566954255104065, - 0.7541556358337402, - 3.0400991439819336 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_71", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.8067134618759155, - 0.4010716676712036, - -0.43399882316589355, - -1.7495052814483643 - ], - [ - -0.590942919254303, - -0.5475146174430847, - 0.5924643874168396, - 2.388300657272339 - ], - [ - -1.4901162970204496e-08, - 0.7344174385070801, - 0.6786978244781494, - 2.7359187602996826 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_72", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9706421494483948, - 0.07031134516000748, - -0.23002207279205322, - -0.9272487163543701 - ], - [ - -0.24052825570106506, - 0.2837385833263397, - -0.9282448291778564, - -3.741874933242798 - ], - [ - -7.450580152834618e-09, - 0.9563204646110535, - 0.2923204302787781, - 1.1783814430236816 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_73", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.569320559501648, - 0.7338107228279114, - -0.37066951394081116, - -1.4942165613174438 - ], - [ - -0.8221156001091003, - 0.5081688761711121, - -0.2566911280155182, - -1.034754991531372 - ], - [ - 1.4901160305669237e-08, - 0.4508727490901947, - 0.8925882577896118, - 3.5981383323669434 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_74", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.686446487903595, - 0.6530754566192627, - -0.31981825828552246, - -1.2892287969589233 - ], - [ - -0.7271804213523865, - -0.6164926290512085, - 0.30190324783325195, - 1.2170110940933228 - ], - [ - 0.0, - 0.43980592489242554, - 0.8980926871299744, - 3.6203277111053467 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_75", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.010444940067827702, - -0.4179804027080536, - 0.9083958864212036, - 3.6618611812591553 - ], - [ - 0.9999455213546753, - -0.00436601834371686, - 0.009488658048212528, - 0.03825000673532486 - ], - [ - 0.0, - 0.9084454774856567, - 0.4180032014846802, - 1.6850249767303467 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_76", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9315232634544373, - 0.3618282377719879, - -0.03666999191045761, - -0.14782147109508514 - ], - [ - -0.3636816740036011, - -0.9267758727073669, - 0.09392540156841278, - 0.37862539291381836 - ], - [ - 0.0, - 0.10082964599132538, - 0.9949036240577698, - 4.010584831237793 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_77", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9364526271820068, - -0.23687395453453064, - 0.25874191522598267, - 1.0430221557617188 - ], - [ - 0.35079434514045715, - -0.6323397159576416, - 0.6907167434692383, - 2.7843685150146484 - ], - [ - 0.0, - 0.73758864402771, - 0.6752501726150513, - 2.7220208644866943 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_78", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.6752972602844238, - 0.32772281765937805, - -0.6607353687286377, - -2.6635096073150635 - ], - [ - -0.7375455498695374, - -0.30006325244903564, - 0.6049697995185852, - 2.438711404800415 - ], - [ - 0.0, - 0.895857036113739, - 0.4443424344062805, - 1.7912017107009888 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_79", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.30685722827911377, - -0.4808056652545929, - 0.8213796019554138, - 3.3110873699188232 - ], - [ - 0.9517555832862854, - -0.1550174057483673, - 0.26482245326042175, - 1.0675336122512817 - ], - [ - -1.4901161193847656e-08, - 0.8630154132843018, - 0.5051775574684143, - 2.036436080932617 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_80", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.04724934697151184, - -0.9930503964424133, - 0.10778788477182388, - 0.4345068633556366 - ], - [ - 0.9988831281661987, - 0.046973444521427155, - -0.005098602268844843, - -0.020553123205900192 - ], - [ - 4.6566125955216364e-10, - 0.10790856927633286, - 0.9941607713699341, - 4.007590293884277 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_81", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.948299765586853, - 0.1252574473619461, - -0.29161277413368225, - -1.1755287647247314 - ], - [ - -0.31737586855888367, - 0.3742615878582001, - -0.8713212013244629, - -3.5124082565307617 - ], - [ - -7.450580152834618e-09, - 0.9188246726989746, - 0.3946658670902252, - 1.5909491777420044 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_82", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.8424915075302124, - -0.3960639536380768, - 0.36515963077545166, - 1.4720056056976318 - ], - [ - 0.538709819316864, - 0.6194067001342773, - -0.5710752606391907, - -2.3020780086517334 - ], - [ - 0.0, - 0.6778409481048584, - 0.7352085113525391, - 2.9637203216552734 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_83", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.43406227231025696, - -0.8863376975059509, - 0.16123118996620178, - 0.6499437689781189 - ], - [ - 0.9008828997612, - 0.42705410718917847, - -0.0776842013001442, - -0.31315505504608154 - ], - [ - -7.450580596923828e-09, - 0.17897024750709534, - 0.9838544130325317, - 3.9660441875457764 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_84", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.7886539697647095, - -0.3273393213748932, - 0.520455539226532, - 2.0980234146118164 - ], - [ - 0.6148374676704407, - 0.4198792278766632, - -0.6675899624824524, - -2.691141128540039 - ], - [ - -1.4901162970204496e-08, - 0.8464929461479187, - 0.5323998928070068, - 2.146172523498535 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_85", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.12709151208400726, - -0.7283197641372681, - 0.6733481884002686, - 2.714353561401367 - ], - [ - 0.9918910264968872, - 0.09331999719142914, - -0.08627645671367645, - -0.34779155254364014 - ], - [ - -7.450581485102248e-09, - 0.6788530349731445, - 0.7342740297317505, - 2.959953546524048 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_86", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7159987688064575, - -0.12272993475198746, - 0.6872286200523376, - 2.7703070640563965 - ], - [ - 0.6981016397476196, - -0.12587635219097137, - 0.7048470377922058, - 2.841329336166382 - ], - [ - 0.0, - 0.9844249486923218, - 0.17580527067184448, - 0.7086937427520752 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_87", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9943104386329651, - -0.07875031977891922, - 0.07173002511262894, - 0.28915297985076904 - ], - [ - 0.10652139782905579, - 0.7350848317146301, - -0.6695547699928284, - -2.699061632156372 - ], - [ - -3.725290076417309e-09, - 0.6733860969543457, - 0.7392910122871399, - 2.980177402496338 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_88", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6623901724815369, - -0.7120469212532043, - 0.23286986351013184, - 0.9387284517288208 - ], - [ - 0.7491589784622192, - 0.6295765042304993, - -0.2058984935283661, - -0.8300033807754517 - ], - [ - -1.4901160305669237e-08, - 0.31084176898002625, - 0.9504616856575012, - 3.8314335346221924 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_89", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9636616110801697, - -0.0677947849035263, - 0.25837984681129456, - 1.041562557220459 - ], - [ - 0.2671259641647339, - -0.24457088112831116, - 0.9321097731590271, - 3.7574551105499268 - ], - [ - 7.450580152834618e-09, - 0.9672585129737854, - 0.25379326939582825, - 1.0230735540390015 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_90", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9962176084518433, - 0.06931702792644501, - -0.05239950492978096, - -0.21122916042804718 - ], - [ - -0.0868939682841301, - -0.7947024703025818, - 0.6007472276687622, - 2.421689510345459 - ], - [ - 0.0, - 0.6030281186103821, - 0.7977198958396912, - 3.215711832046509 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_91", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.7306988835334778, - -0.29730674624443054, - 0.6145631074905396, - 2.4773833751678467 - ], - [ - 0.682699978351593, - -0.3182096481323242, - 0.6577715277671814, - 2.651561975479126 - ], - [ - 0.0, - 0.9001951813697815, - 0.43548667430877686, - 1.7555030584335327 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_92", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.6887710094451904, - -0.5498432517051697, - 0.4725111722946167, - 1.9047534465789795 - ], - [ - 0.7249788641929626, - 0.5223822593688965, - -0.4489124119281769, - -1.8096238374710083 - ], - [ - 1.4901158529312397e-08, - 0.65175861120224, - 0.7584266066551208, - 3.0573153495788574 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_93", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9767953753471375, - 0.13390617072582245, - -0.1671525239944458, - -0.6738134622573853 - ], - [ - -0.2141747623682022, - 0.6107112169265747, - -0.762339174747467, - -3.073087692260742 - ], - [ - 7.450580152834618e-09, - 0.7804492115974426, - 0.6252191066741943, - 2.520339012145996 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_94", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.48393481969833374, - -0.23135370016098022, - 0.843968391418457, - 3.4021453857421875 - ], - [ - 0.8751041293144226, - 0.12793919444084167, - -0.4667166769504547, - -1.8813951015472412 - ], - [ - -7.450580596923828e-09, - 0.9644206166267395, - 0.2643727958202362, - 1.065720796585083 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_95", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9950273036956787, - -0.035059891641139984, - 0.09322857856750488, - 0.3758164346218109 - ], - [ - 0.09960304200649261, - -0.3502458333969116, - 0.9313468933105469, - 3.7543795108795166 - ], - [ - 0.0, - 0.9360013604164124, - 0.35199621319770813, - 1.4189420938491821 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_96", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.11415915191173553, - 0.5318356156349182, - -0.839117705821991, - -3.382591724395752 - ], - [ - -0.9934625625610352, - -0.061113424599170685, - 0.09642332047224045, - 0.3886948525905609 - ], - [ - 0.0, - 0.8446395397186279, - 0.5353354215621948, - 2.158006191253662 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_97", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - -0.9315128922462463, - 0.10870246589183807, - -0.34708449244499207, - -1.3991425037384033 - ], - [ - -0.3637085258960724, - -0.27840352058410645, - 0.8889361619949341, - 3.58341646194458 - ], - [ - 7.450580596923828e-09, - 0.9542930126190186, - 0.2988724708557129, - 1.2047935724258423 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_98", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.9859703779220581, - -0.06911081075668335, - 0.15194162726402283, - 0.6124963164329529 - ], - [ - 0.16692082583904266, - 0.4082247316837311, - -0.897490918636322, - -3.617901563644409 - ], - [ - 0.0, - 0.9102615118026733, - 0.41403353214263916, - 1.669022560119629 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - }, - { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/val/r_99", - "rotation": 0.06283185307179587, - "transform_matrix": [ - [ - 0.12476101517677307, - 0.8093027472496033, - -0.5739892721176147, - -2.3138248920440674 - ], - [ - -0.9921869039535522, - 0.10176452249288559, - -0.07217539846897125, - -0.29094836115837097 - ], - [ - -3.725290742551124e-09, - 0.5785091519355774, - 0.8156757354736328, - 3.2880942821502686 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ] - } - ] -} \ No newline at end of file diff --git a/data/rug_cup/.DS_Store b/data/rug_cup/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..7dfe84aead78000603a5445466e27357dac7a1ee Binary files /dev/null and b/data/rug_cup/.DS_Store differ diff --git a/data/rug_cup/sparse_pc.ply b/data/rug_cup/sparse_pc.ply new file mode 100644 index 0000000000000000000000000000000000000000..2716153bdb3484e07aa94092a27c2407da0f5a2e --- /dev/null +++ b/data/rug_cup/sparse_pc.ply @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab1e5a8e023275569fe2b6ea48d0196c93eaa515372b5c0cf091a517ed8bcc0 +size 2323645 diff --git a/data/rug_cup/test/r_0.png b/data/rug_cup/test/r_0.png new file mode 100644 index 0000000000000000000000000000000000000000..305b5208f94aeab30bfe6723c931c48d11d6caf6 --- /dev/null +++ b/data/rug_cup/test/r_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a728b689bdc17629873b4f978ec72cd2c9c1b0c24e50b9c138b25908f5755392 +size 249587 diff --git a/data/rug_cup/test/r_0_depth_0001.png b/data/rug_cup/test/r_0_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b8104d6fce36a95f87cbe5c65273f62dae5eabf3 --- /dev/null +++ b/data/rug_cup/test/r_0_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e33c1d9c686183199b462d53dca0be3b27def69e4ac31389980b2d375b6b9db +size 22385 diff --git a/data/rug_cup/test/r_0_normal_0001.png b/data/rug_cup/test/r_0_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c2c2efa166581eded9a0fcf47ae75eb20ecfa92b --- /dev/null +++ b/data/rug_cup/test/r_0_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba7e3ba171105ec7b0bbc1f20fb4deaf2eae96ffa3aa27b33dfd72af74d6869c +size 252642 diff --git a/data/rug_cup/test/r_1.png b/data/rug_cup/test/r_1.png new file mode 100644 index 0000000000000000000000000000000000000000..cc843ef64d09d5f1bbdbdac42b77234c1c43b25a --- /dev/null +++ b/data/rug_cup/test/r_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db10d96f3c43a4f24e266a0b98422687eedf448a4dd0517d401a05a25d72705 +size 252656 diff --git a/data/rug_cup/test/r_10.png b/data/rug_cup/test/r_10.png new file mode 100644 index 0000000000000000000000000000000000000000..60a717ba73d29089266dbd1875dba5396d72f2da --- /dev/null +++ b/data/rug_cup/test/r_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9e1df52c4907a74002f77049204dde14320a88333f333fd08cfa39ddf7e27a +size 252555 diff --git a/data/rug_cup/test/r_100.png b/data/rug_cup/test/r_100.png new file mode 100644 index 0000000000000000000000000000000000000000..578894e3fd33c74e627ddb1c4001e2ee6c15fa1d --- /dev/null +++ b/data/rug_cup/test/r_100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f463491ec2bb833be5d9aaab8d5718b5260bdbc61bbfaa802711c9003d1b9b75 +size 89999 diff --git a/data/rug_cup/test/r_100_depth_0001.png b/data/rug_cup/test/r_100_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..99d4213b0f0416b8ec95f68d187d37230cfe1854 --- /dev/null +++ b/data/rug_cup/test/r_100_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3676965fdd34ed5a63f3d8ad93ecae9bc882ca257dcc88208bff8a554023d7d8 +size 17873 diff --git a/data/rug_cup/test/r_100_normal_0001.png b/data/rug_cup/test/r_100_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..216f8fe51e655c18839c60af1a017ec74290cd4e --- /dev/null +++ b/data/rug_cup/test/r_100_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e490c7e859aeeb1b380160ec108dd7137ffa6507ddeda72337ab807cbcc3059b +size 85360 diff --git a/data/rug_cup/test/r_101.png b/data/rug_cup/test/r_101.png new file mode 100644 index 0000000000000000000000000000000000000000..538efb0d218b931a1615e25ae107cf4f0508a552 --- /dev/null +++ b/data/rug_cup/test/r_101.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d291622fe275dc37d6141dfe2a7b26455d835d1776a3f9b15ae732da1955746c +size 90571 diff --git a/data/rug_cup/test/r_101_depth_0001.png b/data/rug_cup/test/r_101_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..44c9fff43549ef92ff1a7209fc2d6100e8660dde --- /dev/null +++ b/data/rug_cup/test/r_101_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f81b83184d56ed258da920c45fbc644f5f18a799a348f9dbba8f8ba3cf056854 +size 17727 diff --git a/data/rug_cup/test/r_101_normal_0001.png b/data/rug_cup/test/r_101_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..409d3e0e47e6eb639ff8f0d534c00dadc623fdf3 --- /dev/null +++ b/data/rug_cup/test/r_101_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d096ba1fade70ac20674b93f5ad99d9f4f78ce1d3630ef0bee3bcbfef428da0 +size 83399 diff --git a/data/rug_cup/test/r_102.png b/data/rug_cup/test/r_102.png new file mode 100644 index 0000000000000000000000000000000000000000..b34c52a7a3ddb6825b3a68bfbbabfbe2310f4c68 --- /dev/null +++ b/data/rug_cup/test/r_102.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2856793bb50e6fbfc498f57f5caa73a202693be1a7efb2a6721f62f4da4d7f38 +size 90843 diff --git a/data/rug_cup/test/r_102_depth_0001.png b/data/rug_cup/test/r_102_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..dc65ed2069b64047fcca22a285033fca293acac3 --- /dev/null +++ b/data/rug_cup/test/r_102_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef176fcd4d76a2c41f420d6d286c5b240e282c7c0c43c12dd3940ab3a2fbe2d +size 18570 diff --git a/data/rug_cup/test/r_102_normal_0001.png b/data/rug_cup/test/r_102_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..3d1a1d6d5a11ba742d708be7c1365f720f4d5ffb --- /dev/null +++ b/data/rug_cup/test/r_102_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc488e508a1aacb7bfd4fa197e6540d4cbb852e09c609598223e8f2eedf6499b +size 83670 diff --git a/data/rug_cup/test/r_103.png b/data/rug_cup/test/r_103.png new file mode 100644 index 0000000000000000000000000000000000000000..c3c736d16d1b2140841cfc217fb7c76aab91fb1e --- /dev/null +++ b/data/rug_cup/test/r_103.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce73e066048aadfcf8cf57972b6667f78d142a155e7734589b1420e83513b12 +size 90809 diff --git a/data/rug_cup/test/r_103_depth_0001.png b/data/rug_cup/test/r_103_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..21450c917a30e7ea64d7fd36d41373f7c5fb5d05 --- /dev/null +++ b/data/rug_cup/test/r_103_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b349c334fa0fc57e7fece44118df8e44025501b281b8ea55a8ea21627058190 +size 18561 diff --git a/data/rug_cup/test/r_103_normal_0001.png b/data/rug_cup/test/r_103_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8bd9f0621b045b558015bab7b3a3ae9167de4953 --- /dev/null +++ b/data/rug_cup/test/r_103_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aea43c272e79e15fb4e5adbb0524b7b748053dcc3b9d1bf62e4696f0013fdae +size 82715 diff --git a/data/rug_cup/test/r_104.png b/data/rug_cup/test/r_104.png new file mode 100644 index 0000000000000000000000000000000000000000..5d9e6c0600f910cea04caf64cd29542882a9d90a --- /dev/null +++ b/data/rug_cup/test/r_104.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6630bd9536ed0ac59ad96457c4f603328e27c5ac5da787042632d1c986eb0018 +size 89834 diff --git a/data/rug_cup/test/r_104_depth_0001.png b/data/rug_cup/test/r_104_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..76ebe13519a0271407273a20c5ceb4c96b57a321 --- /dev/null +++ b/data/rug_cup/test/r_104_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d37b318331ac10e6f5e50a667e4ae02e49b07789d3954def475bec039319e11 +size 18593 diff --git a/data/rug_cup/test/r_104_normal_0001.png b/data/rug_cup/test/r_104_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b7560380b7c3d210c2ac51ab9cd40848f99ac50e --- /dev/null +++ b/data/rug_cup/test/r_104_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d258d9c9d116d8ff51f0237cc294f8c962c9fd5821af968e793076005d5360 +size 81672 diff --git a/data/rug_cup/test/r_105.png b/data/rug_cup/test/r_105.png new file mode 100644 index 0000000000000000000000000000000000000000..93c56316528502ee9978e75234c37e54a68c2007 --- /dev/null +++ b/data/rug_cup/test/r_105.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e6897f067ce84fcda06dcae5bdc335048d5bf96306bf7d4c1fa16a8fe141da +size 89396 diff --git a/data/rug_cup/test/r_105_depth_0001.png b/data/rug_cup/test/r_105_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a568a2088d06dfbc7e59cac2a23accd699a336dd --- /dev/null +++ b/data/rug_cup/test/r_105_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:291d4f58ddd4f10aef98de8889db19c2747b15e8576027678f5c6a72ca11866b +size 18399 diff --git a/data/rug_cup/test/r_105_normal_0001.png b/data/rug_cup/test/r_105_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f973671955e14e8bad545d68be5fd55f069b6a35 --- /dev/null +++ b/data/rug_cup/test/r_105_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed029987b91311fc1c607970a25616811c026d6a5bf7e6c93368a33456ce6be +size 80174 diff --git a/data/rug_cup/test/r_106.png b/data/rug_cup/test/r_106.png new file mode 100644 index 0000000000000000000000000000000000000000..8e0211e2ae568ced22f84a401b2875da02eedd27 --- /dev/null +++ b/data/rug_cup/test/r_106.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:682ad8e46673eb21d98a4fd887c9fe07d38aff92561e0c52f9731119dc6e2f5b +size 88353 diff --git a/data/rug_cup/test/r_106_depth_0001.png b/data/rug_cup/test/r_106_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7ffdd5e471091f736abc3a15d76769918d9e6684 --- /dev/null +++ b/data/rug_cup/test/r_106_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380d64cddc59aa2d1858c84c040497b3d788ee15bbab587a2800f85d203e6702 +size 18503 diff --git a/data/rug_cup/test/r_106_normal_0001.png b/data/rug_cup/test/r_106_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5ba3e557e492d0c8a5ea147c165f570c5150b5ab --- /dev/null +++ b/data/rug_cup/test/r_106_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d8fb8d8594515543e2389ef95f4d1ab2a41525533b047dacd69feaa6786656e +size 80116 diff --git a/data/rug_cup/test/r_107.png b/data/rug_cup/test/r_107.png new file mode 100644 index 0000000000000000000000000000000000000000..3b7fb5d9b233ca8dc491f990c5c00206b3ff24f3 --- /dev/null +++ b/data/rug_cup/test/r_107.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8dc786279f7cca165e6bfa59f57b1601e842263dc0daada62151cf6114740f +size 87254 diff --git a/data/rug_cup/test/r_107_depth_0001.png b/data/rug_cup/test/r_107_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..990239788c38b2c0f53aeafca4fb83050f9fc248 --- /dev/null +++ b/data/rug_cup/test/r_107_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f412114a21be7e7f524d1e4b150b5862cf279ec3936d21b9f1c1a17fc573bdb +size 18448 diff --git a/data/rug_cup/test/r_107_normal_0001.png b/data/rug_cup/test/r_107_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..9a32527bdabea3747e03b5e5bee28ad639013bb2 --- /dev/null +++ b/data/rug_cup/test/r_107_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce80af5011a812798036ecb8cd1f46aba5a36269eb535147c27461e11c5074ce +size 78878 diff --git a/data/rug_cup/test/r_108.png b/data/rug_cup/test/r_108.png new file mode 100644 index 0000000000000000000000000000000000000000..fa3879ecd3fe5453a8517f127f7e72647fd0fe31 --- /dev/null +++ b/data/rug_cup/test/r_108.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fea237582d0865af9bb76e3d2e50bdd66c9a0e4e0fdeaaff7e1d7cf433392e1 +size 86279 diff --git a/data/rug_cup/test/r_108_depth_0001.png b/data/rug_cup/test/r_108_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f92a9b47612831c69229cc90514d4060bb2df41d --- /dev/null +++ b/data/rug_cup/test/r_108_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:071080f026edeca1120b6e13fa11e516ae817a1d8728a09c08885efd13620fdf +size 18319 diff --git a/data/rug_cup/test/r_108_normal_0001.png b/data/rug_cup/test/r_108_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..37243e03a962ebc88661762f5b488f9e40fa49ef --- /dev/null +++ b/data/rug_cup/test/r_108_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896de3250d55d06e345445f46c93c5e8f94d9792d022b80469456491df6b362b +size 77810 diff --git a/data/rug_cup/test/r_109.png b/data/rug_cup/test/r_109.png new file mode 100644 index 0000000000000000000000000000000000000000..c9c71194923175519868ad246344f210f7eaff8f --- /dev/null +++ b/data/rug_cup/test/r_109.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99898209dfc7cdadc63b485be8bd9e3cfedcb1fd192a9f9cf733f3b64393f12f +size 85168 diff --git a/data/rug_cup/test/r_109_depth_0001.png b/data/rug_cup/test/r_109_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..77f99f37255961583caaf568b821f9b3088ccf5d --- /dev/null +++ b/data/rug_cup/test/r_109_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303050be443c1d1b744d406613a2ff4ef7c1e95b9d027eacf574b696289b9a84 +size 18067 diff --git a/data/rug_cup/test/r_109_normal_0001.png b/data/rug_cup/test/r_109_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..14c3b4b4a56212ef8acdb6e1c08ff34e40a04931 --- /dev/null +++ b/data/rug_cup/test/r_109_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247b49a280734935ad9199157d1d99abdd91563afbb0c161f82ed7093e45b913 +size 76791 diff --git a/data/rug_cup/test/r_10_depth_0001.png b/data/rug_cup/test/r_10_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e9ad6c27446a875f123dac58fcf42fd6dbc2e8f5 --- /dev/null +++ b/data/rug_cup/test/r_10_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f013eb776943079c674167585c77827a2fdc2a5cdc4d30c757e93b5597773d33 +size 24410 diff --git a/data/rug_cup/test/r_10_normal_0001.png b/data/rug_cup/test/r_10_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..288535e22237adb0e3edab2e58579242259aebce --- /dev/null +++ b/data/rug_cup/test/r_10_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21d6cb14d2e6a6b00df02e24748edd47a5bfbcffa5d7f1eb26fc684a7e4c656 +size 215033 diff --git a/data/rug_cup/test/r_11.png b/data/rug_cup/test/r_11.png new file mode 100644 index 0000000000000000000000000000000000000000..9fbaf404d4b15c99ab81d4b37ee86e7ab6c9eefa --- /dev/null +++ b/data/rug_cup/test/r_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff972703633174b0113ad877f9ce22920c8d0c6a472405f2f078d062d114f886 +size 250448 diff --git a/data/rug_cup/test/r_110.png b/data/rug_cup/test/r_110.png new file mode 100644 index 0000000000000000000000000000000000000000..5ae3b4fe6938b1d19414eca3cb258e608e735b9c --- /dev/null +++ b/data/rug_cup/test/r_110.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d14fede76a24e9c7ac0e71107dc07a4379364766f9b213955a7439f5ca95df +size 82963 diff --git a/data/rug_cup/test/r_110_depth_0001.png b/data/rug_cup/test/r_110_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f8c594ed319f8e4844a07ee9126c31cbcfc6ce20 --- /dev/null +++ b/data/rug_cup/test/r_110_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fde49d44b326a84ad1c6e4f36dfda94a85f86e5cf2369fb19abc228860d44a +size 17827 diff --git a/data/rug_cup/test/r_110_normal_0001.png b/data/rug_cup/test/r_110_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b4ac8e9f232fa787e0db3a2edfdd657894253fb7 --- /dev/null +++ b/data/rug_cup/test/r_110_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf05abd755d8b76ccdcd4692316309fb4200af39cccd98e4ded8e1ef4d5e1a8 +size 75159 diff --git a/data/rug_cup/test/r_111.png b/data/rug_cup/test/r_111.png new file mode 100644 index 0000000000000000000000000000000000000000..64215330fb315c3bb7991a555c1b4d000caf70c4 --- /dev/null +++ b/data/rug_cup/test/r_111.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c55fbf798ce42b82e089fadd47e5f3ba0a3fb7b3c9e2a61eb15ed64d51ec1bd +size 80695 diff --git a/data/rug_cup/test/r_111_depth_0001.png b/data/rug_cup/test/r_111_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b26ffb3f4dad5ac1b75c930349d4b08f02bc32a8 --- /dev/null +++ b/data/rug_cup/test/r_111_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec1c51d38df92fdcaaed1a5a597e0bc9eca641e39a3aa0eb62bbbb3bca33663e +size 17692 diff --git a/data/rug_cup/test/r_111_normal_0001.png b/data/rug_cup/test/r_111_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..08112517d5f2e2c47f8429fb1415adf82c953e75 --- /dev/null +++ b/data/rug_cup/test/r_111_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d620b3743440bafc73c324ab3939e4e37692a90f4489c9c06c640439d1dc1cc2 +size 72558 diff --git a/data/rug_cup/test/r_112.png b/data/rug_cup/test/r_112.png new file mode 100644 index 0000000000000000000000000000000000000000..68cd82e300b63eace04a023cc5451bb8dcaee523 --- /dev/null +++ b/data/rug_cup/test/r_112.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:543e34f2192792d7e94ce1f853727723fe0f5a7c4b3f1e4f640224bd823d77de +size 79078 diff --git a/data/rug_cup/test/r_112_depth_0001.png b/data/rug_cup/test/r_112_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4512023f92470f70ff198e3dcca3f05950643f0f --- /dev/null +++ b/data/rug_cup/test/r_112_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b1b92b099fdc08e3164168274b860a0a68e76393f69e49706ab1705019f263 +size 17609 diff --git a/data/rug_cup/test/r_112_normal_0001.png b/data/rug_cup/test/r_112_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..3fd2d53e5e1a9b4db2a46730cc9d3a1881069622 --- /dev/null +++ b/data/rug_cup/test/r_112_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd6d813412e22d810063cd9b89eeff2c9212fd7c679cb507b5b9b777dc6667d +size 69437 diff --git a/data/rug_cup/test/r_113.png b/data/rug_cup/test/r_113.png new file mode 100644 index 0000000000000000000000000000000000000000..21be70e96c8984eadb46872d2cdc2ffd5745adfd --- /dev/null +++ b/data/rug_cup/test/r_113.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c46fb88b5837ec13b628190d673aaa6981d23d6cb0455dcf475530e906d3c0 +size 77425 diff --git a/data/rug_cup/test/r_113_depth_0001.png b/data/rug_cup/test/r_113_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7c216057b3cbb58d3d7e0d6addbe23bf95a05eea --- /dev/null +++ b/data/rug_cup/test/r_113_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b50434f8c4b7dc58faa64a573804139bc570cfd2c16e90edae4451446dd1d00a +size 17671 diff --git a/data/rug_cup/test/r_113_normal_0001.png b/data/rug_cup/test/r_113_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a651d922d95ffc6bba30dd779173b69c2b6eec54 --- /dev/null +++ b/data/rug_cup/test/r_113_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d3e6dcd57d9c9643dc73af199dabdb685303d90a88b480d0ebed0d69e118b1 +size 66903 diff --git a/data/rug_cup/test/r_114.png b/data/rug_cup/test/r_114.png new file mode 100644 index 0000000000000000000000000000000000000000..1e1a2ae10ce0edcb732232391369ada515766c3f --- /dev/null +++ b/data/rug_cup/test/r_114.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009c4a9d5cd7bdaecf27da8754f2dd62ee885d45606e87470a98f7affd584e0d +size 75572 diff --git a/data/rug_cup/test/r_114_depth_0001.png b/data/rug_cup/test/r_114_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..273d4bba39c758fe3008e001eeffea12670a1b43 --- /dev/null +++ b/data/rug_cup/test/r_114_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db76e9fd0e3a51d7ccbfd5f14760cfdc2ca5f74a34bffeb521c69d3bf8d62708 +size 17329 diff --git a/data/rug_cup/test/r_114_normal_0001.png b/data/rug_cup/test/r_114_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..3cafd942c3727ee38951eb0223ba94386afbc3e1 --- /dev/null +++ b/data/rug_cup/test/r_114_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a052c9a69acf787e01069cc833454002b2faf771841d6a7a06cc369f909a550 +size 63918 diff --git a/data/rug_cup/test/r_115.png b/data/rug_cup/test/r_115.png new file mode 100644 index 0000000000000000000000000000000000000000..003e61ee08ac8eb001258a5d5986f0b069c2055c --- /dev/null +++ b/data/rug_cup/test/r_115.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e575a8f175f717ee414344d1c8317c2a7c2996c8db426fea334d496ba49be586 +size 73065 diff --git a/data/rug_cup/test/r_115_depth_0001.png b/data/rug_cup/test/r_115_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..82ebab5554eaa4cebb69f28da800ad823d673e67 --- /dev/null +++ b/data/rug_cup/test/r_115_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7299aa158b3edc7a2d12064b3a265cc6a4ac30be4ee0301ec35b65e228fc9149 +size 17208 diff --git a/data/rug_cup/test/r_115_normal_0001.png b/data/rug_cup/test/r_115_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ec0fda457076afb0f75b74bab524d0505f2f4351 --- /dev/null +++ b/data/rug_cup/test/r_115_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee9b7b21f6d87b7e76ccda9dbec726ffe6027946f9236b412859cb90c849bb7 +size 60582 diff --git a/data/rug_cup/test/r_116.png b/data/rug_cup/test/r_116.png new file mode 100644 index 0000000000000000000000000000000000000000..1f596de8528731300f00d82225c6a2cf89d88b26 --- /dev/null +++ b/data/rug_cup/test/r_116.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6892cecc7a3a62fc43aab269c91b1664e6377dbd5ac9cb8d5b76dff22e2a6a78 +size 70782 diff --git a/data/rug_cup/test/r_116_depth_0001.png b/data/rug_cup/test/r_116_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..669e84059040e87cad9de834538efc2052019fcc --- /dev/null +++ b/data/rug_cup/test/r_116_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f970ca957be4823e4421edeb3751b711a125364d843e486e2fa0e1df9cff7c6f +size 17113 diff --git a/data/rug_cup/test/r_116_normal_0001.png b/data/rug_cup/test/r_116_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..125d5e18ca7dce2f220d021be283bf184d573bc8 --- /dev/null +++ b/data/rug_cup/test/r_116_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b26801e7c9fb7160173a7d56673d17b4a9e8393ae141688035f19eb621049409 +size 57565 diff --git a/data/rug_cup/test/r_117.png b/data/rug_cup/test/r_117.png new file mode 100644 index 0000000000000000000000000000000000000000..2b85280a09a62c700a41cc8e680ba48d1ea1e999 --- /dev/null +++ b/data/rug_cup/test/r_117.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa88286d8d284cc0d329e9a9a40320873a90e46ea5f93fbd709becc7c9cd92b +size 68571 diff --git a/data/rug_cup/test/r_117_depth_0001.png b/data/rug_cup/test/r_117_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..64c8bd30512a839e181e6aecbc78fc343cbcca36 --- /dev/null +++ b/data/rug_cup/test/r_117_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5075cce2acf86e2164dc546e04eddcda5fabc1fb1a7ff170b2f931e064973fb +size 16841 diff --git a/data/rug_cup/test/r_117_normal_0001.png b/data/rug_cup/test/r_117_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8b1dc927059c9c512a188c2f46b236f72b6e8f5f --- /dev/null +++ b/data/rug_cup/test/r_117_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01d333831450c772d1307630088afffd1e7a63cdc53a19036710c2027d60f01 +size 55274 diff --git a/data/rug_cup/test/r_118.png b/data/rug_cup/test/r_118.png new file mode 100644 index 0000000000000000000000000000000000000000..b9ff3144c5d6573fe7efe2e72cfb8f088c4b04ac --- /dev/null +++ b/data/rug_cup/test/r_118.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8df23f91c74f838d8fdea429885ab67219aaaa327b98cf2f591e0090663831b +size 66608 diff --git a/data/rug_cup/test/r_118_depth_0001.png b/data/rug_cup/test/r_118_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..beed82678bb81b2727d8576116a813fd19b61f0b --- /dev/null +++ b/data/rug_cup/test/r_118_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92555e633f0e23f6565981188f353dcfeac99d680539f54dbe6dce0cabdea362 +size 16793 diff --git a/data/rug_cup/test/r_118_normal_0001.png b/data/rug_cup/test/r_118_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8e08c41026c1d3360105776224b6c32f5a5c1522 --- /dev/null +++ b/data/rug_cup/test/r_118_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c690e0fc77afc65704484512c0a744ad5b87e4e638db52b0d9a1309425d871 +size 53571 diff --git a/data/rug_cup/test/r_119.png b/data/rug_cup/test/r_119.png new file mode 100644 index 0000000000000000000000000000000000000000..0ff6361a66ae4a16805f06240584edb2d6b16806 --- /dev/null +++ b/data/rug_cup/test/r_119.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff6c8f7cde53049925d6fedae666be03cd7e22f8d02f016e25cbdfd7250838c0 +size 64345 diff --git a/data/rug_cup/test/r_119_depth_0001.png b/data/rug_cup/test/r_119_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..48cee71b8b06f9bceb49ac33c1f0255df1125819 --- /dev/null +++ b/data/rug_cup/test/r_119_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813a0882046aa67b573747523c27cd187b15d4e127c13ed42c21bdf030856a5e +size 16880 diff --git a/data/rug_cup/test/r_119_normal_0001.png b/data/rug_cup/test/r_119_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7c33ce0ca8f159c700fd2aa0a177d7b94195c12c --- /dev/null +++ b/data/rug_cup/test/r_119_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6429d4fd038d8b2eb74c981ae2ac5846045720077b89001ece15e85ba5f1548 +size 52254 diff --git a/data/rug_cup/test/r_11_depth_0001.png b/data/rug_cup/test/r_11_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4725081165dfddb6fedef234827356b11b2b0e73 --- /dev/null +++ b/data/rug_cup/test/r_11_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a7e7a97a5108fa004044b20ac0ff41daa953ccd6932b2b46699a1beebd1ac9 +size 24583 diff --git a/data/rug_cup/test/r_11_normal_0001.png b/data/rug_cup/test/r_11_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..51e8de1e72f42bd720333f3dc585ebc9e9b2f6cc --- /dev/null +++ b/data/rug_cup/test/r_11_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc16fb6f270c8916b22f8ed34978521ec3a8a983f8d069eb756c052cdd136d15 +size 211745 diff --git a/data/rug_cup/test/r_12.png b/data/rug_cup/test/r_12.png new file mode 100644 index 0000000000000000000000000000000000000000..dbdc452f579571fa779b0156f29db63e8c36e34e --- /dev/null +++ b/data/rug_cup/test/r_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a43a0d007a3f7543644f1924b90db513cef6792930fc6cefa3d27a31cce3ee +size 248238 diff --git a/data/rug_cup/test/r_120.png b/data/rug_cup/test/r_120.png new file mode 100644 index 0000000000000000000000000000000000000000..85e63939467cb49b67f8f00976d55b9e55e53ec2 --- /dev/null +++ b/data/rug_cup/test/r_120.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08595b0ac6148bc5fc37c21e23d74d3b4c7416f2d2a41e929cda9533a4f46e6a +size 62065 diff --git a/data/rug_cup/test/r_120_depth_0001.png b/data/rug_cup/test/r_120_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..0c2937b9fadfceab9ee5ed94736027115f65b6a4 --- /dev/null +++ b/data/rug_cup/test/r_120_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404ffa6edcb9e2a321c47e96bb11e9be4d72e205bb648e7cb991a0386732e5c4 +size 16699 diff --git a/data/rug_cup/test/r_120_normal_0001.png b/data/rug_cup/test/r_120_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ecd2fb6e934d7a9f19f61adab01e64583c29a016 --- /dev/null +++ b/data/rug_cup/test/r_120_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08606f71b6f2fd19fe652c08c9a0dad9af717df026944e92fb5c9e8fb122f060 +size 49408 diff --git a/data/rug_cup/test/r_121.png b/data/rug_cup/test/r_121.png new file mode 100644 index 0000000000000000000000000000000000000000..ae6460e1f3be0a4d749b90018e36a0892747df8c --- /dev/null +++ b/data/rug_cup/test/r_121.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c295bcf03f676eb99952c57eedef628c962a736fab64416e94c84a1280a92bd4 +size 59611 diff --git a/data/rug_cup/test/r_121_depth_0001.png b/data/rug_cup/test/r_121_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ba7009b76c8f5a279d6eaaa9e1d84ff5f1c86654 --- /dev/null +++ b/data/rug_cup/test/r_121_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b86d7bcd049542cc695414ebbd2fa2874c66a021c374434d9fd20bd996fed2 +size 16575 diff --git a/data/rug_cup/test/r_121_normal_0001.png b/data/rug_cup/test/r_121_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..777b079298f0fb1ba61f09ab46fb715bb59e9245 --- /dev/null +++ b/data/rug_cup/test/r_121_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a73dbd108c3b408ad6dd1913f7de509a9208dbdcf3d38f060e9444751c7ba6 +size 47320 diff --git a/data/rug_cup/test/r_122.png b/data/rug_cup/test/r_122.png new file mode 100644 index 0000000000000000000000000000000000000000..799dc170a12cc608ce743816b2e7ce2361692381 --- /dev/null +++ b/data/rug_cup/test/r_122.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28da65f7df38d6e1d7db4c594e24606b2e2ff5a75f826b1c696f16138819c8de +size 57135 diff --git a/data/rug_cup/test/r_122_depth_0001.png b/data/rug_cup/test/r_122_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2660b0440974a845bdf5ce0a2d56bd926ad26036 --- /dev/null +++ b/data/rug_cup/test/r_122_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37932727637e9e9a8f867415eb6b8f9e25721f485a66834396f00d74a373434e +size 16435 diff --git a/data/rug_cup/test/r_122_normal_0001.png b/data/rug_cup/test/r_122_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e1f9e81c263a5859c70e9e57f5d37d8cf3c24364 --- /dev/null +++ b/data/rug_cup/test/r_122_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27751ab856e252fba495785ab75b6a590901946d7d0bbc06fce4b8427efde7f +size 44963 diff --git a/data/rug_cup/test/r_123.png b/data/rug_cup/test/r_123.png new file mode 100644 index 0000000000000000000000000000000000000000..7fd7bc1adda419e3b2a6ef99425bd69a67aacc53 --- /dev/null +++ b/data/rug_cup/test/r_123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3031c81cc184f1499bfacd5c598d4659619093ac74fcc859e1823411f263ada +size 54770 diff --git a/data/rug_cup/test/r_123_depth_0001.png b/data/rug_cup/test/r_123_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..53b097763caff323b9a36379f8a61d71e284ea93 --- /dev/null +++ b/data/rug_cup/test/r_123_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b2a58d462500414588bbf5c53d18377e4dc311c611a91e56cc953530024f3f +size 16078 diff --git a/data/rug_cup/test/r_123_normal_0001.png b/data/rug_cup/test/r_123_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ca26c2e47c7c20974afa7ebb071389733719ff5c --- /dev/null +++ b/data/rug_cup/test/r_123_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9902a0663a7336adf83aae4d743f55b3640330a7745de8454366dd5eabb2ac +size 42768 diff --git a/data/rug_cup/test/r_124.png b/data/rug_cup/test/r_124.png new file mode 100644 index 0000000000000000000000000000000000000000..57827e0ce4166855d885e50ff331704683a4a23c --- /dev/null +++ b/data/rug_cup/test/r_124.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b144a3cf6499ee6ff7be2ebdbb5ef1310174e6b87f6883b130553acbd977833 +size 52913 diff --git a/data/rug_cup/test/r_124_depth_0001.png b/data/rug_cup/test/r_124_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6a912250693ed642786f0066d24251a503c87a35 --- /dev/null +++ b/data/rug_cup/test/r_124_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c5f09e0a5852844265c8ef35c943390399dead863d9b2c022835d59ee19252d +size 15819 diff --git a/data/rug_cup/test/r_124_normal_0001.png b/data/rug_cup/test/r_124_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..283fd00bf331380a103f83b93954362064b94a4b --- /dev/null +++ b/data/rug_cup/test/r_124_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bb297bef59bbf34c1012ca0f8003b17116d07c93ef1ce15db68f12623d4bb78 +size 40646 diff --git a/data/rug_cup/test/r_125.png b/data/rug_cup/test/r_125.png new file mode 100644 index 0000000000000000000000000000000000000000..34619d29de85efce392ace32a8a53b0af9b07940 --- /dev/null +++ b/data/rug_cup/test/r_125.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f03d50dbc2546f1571df6fabd2b3982a43880acb8da8d7ef5f2b2e9ff6f61a1 +size 50079 diff --git a/data/rug_cup/test/r_125_depth_0001.png b/data/rug_cup/test/r_125_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2a360b075472487c3a4ec4774455e80c0d3d79f8 --- /dev/null +++ b/data/rug_cup/test/r_125_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd01250dd136ed943d74accd2e201275a667bed2306d45dbf2995ad4ee93645d +size 15350 diff --git a/data/rug_cup/test/r_125_normal_0001.png b/data/rug_cup/test/r_125_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..43356c0c4fc717125cbc1be76319ac38962929b8 --- /dev/null +++ b/data/rug_cup/test/r_125_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9811935192b7e659b69facaef4fc4d118678b11d3365383e3e98a2c169134620 +size 37777 diff --git a/data/rug_cup/test/r_126.png b/data/rug_cup/test/r_126.png new file mode 100644 index 0000000000000000000000000000000000000000..579d7e332487d49c12cdf4371894386eee957af9 --- /dev/null +++ b/data/rug_cup/test/r_126.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eafeab4335fbcffb77b1e798a78720bd38dde14f1c2ba85d08f13ab86a59760 +size 50402 diff --git a/data/rug_cup/test/r_126_depth_0001.png b/data/rug_cup/test/r_126_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..bc0b0ba50b1fd854097e79a71332b1570b666bec --- /dev/null +++ b/data/rug_cup/test/r_126_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8217853885fceb0ea60a8a84277be9f8b8ddb8deb01078f350daeabf69c06fc9 +size 15816 diff --git a/data/rug_cup/test/r_126_normal_0001.png b/data/rug_cup/test/r_126_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..041a4ef3b3133656697784b3e1c6ee9ce09aea02 --- /dev/null +++ b/data/rug_cup/test/r_126_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ad9e62a91d830dbc4f1472d5fa371433b59a3647bffe0a9f641191d67b9565 +size 35725 diff --git a/data/rug_cup/test/r_127.png b/data/rug_cup/test/r_127.png new file mode 100644 index 0000000000000000000000000000000000000000..0902235bbf00a48bdcdd03eaadad26a1c5282499 --- /dev/null +++ b/data/rug_cup/test/r_127.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7e96d83afd2b001e861d1ad2ac47c11e51d9a54bb2a37be9bb314c30f09d613 +size 50007 diff --git a/data/rug_cup/test/r_127_depth_0001.png b/data/rug_cup/test/r_127_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..fc22908aba6b57f286148d005666ccba204da8b1 --- /dev/null +++ b/data/rug_cup/test/r_127_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e309085d5f104e4e3648210c1e73924c33f8e04197c5ab9cac9bfcf6b7f7b1 +size 15975 diff --git a/data/rug_cup/test/r_127_normal_0001.png b/data/rug_cup/test/r_127_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8b2758f7c499dea6a98dfe3eddaab82e8227c54a --- /dev/null +++ b/data/rug_cup/test/r_127_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f0cba079e5c79f5ee607ce3607b7ecf38cf7d6326fd59cf0037a740d476775 +size 34269 diff --git a/data/rug_cup/test/r_128.png b/data/rug_cup/test/r_128.png new file mode 100644 index 0000000000000000000000000000000000000000..625f4fede86c73f8374d1bdf019839fb79290634 --- /dev/null +++ b/data/rug_cup/test/r_128.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19f831f7ed41ecef769ef4d5b7ab7fce746dbcfb4f0171b6fb293ae4461e6af +size 49728 diff --git a/data/rug_cup/test/r_128_depth_0001.png b/data/rug_cup/test/r_128_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a063deb0171c41fc2f6bd125a0e04502f9448ee1 --- /dev/null +++ b/data/rug_cup/test/r_128_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52f80058e98900f039e9ffe59efecb14c48cdc606a0a4490275b991164b183ff +size 16134 diff --git a/data/rug_cup/test/r_128_normal_0001.png b/data/rug_cup/test/r_128_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2efa7aed648b37d419ba9dc8ddb953f827ae8521 --- /dev/null +++ b/data/rug_cup/test/r_128_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d279266f261f239f20d61b89c6f14151994ab77d58e5393b390b3a14b764d2c +size 33483 diff --git a/data/rug_cup/test/r_129.png b/data/rug_cup/test/r_129.png new file mode 100644 index 0000000000000000000000000000000000000000..7ea35849f19d6032e3d77553e7d741d2d25f53b5 --- /dev/null +++ b/data/rug_cup/test/r_129.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3def24078c65ecc22dea5f1411a258a8a650f367bb0ce2a8a40c52fb1c9b0f7 +size 48888 diff --git a/data/rug_cup/test/r_129_depth_0001.png b/data/rug_cup/test/r_129_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..fe34a350ca23833d6ca1219192b5026e6c9dd0c0 --- /dev/null +++ b/data/rug_cup/test/r_129_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d61a06674a101064c6549fa7f0772e1b5172ec9a3b8544ca6c83d46cb36d41c0 +size 16173 diff --git a/data/rug_cup/test/r_129_normal_0001.png b/data/rug_cup/test/r_129_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..56e7e8c61f1d08c168e7ef544ee3b3effcd5f893 --- /dev/null +++ b/data/rug_cup/test/r_129_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab52d58244f69ef4b2110c3290bbb77a1630a783a57d0df1e7de7f5f0acce5d3 +size 32549 diff --git a/data/rug_cup/test/r_12_depth_0001.png b/data/rug_cup/test/r_12_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ca64ad22e2428a3b25f49f42cbb270ca1f927b59 --- /dev/null +++ b/data/rug_cup/test/r_12_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4fb8f651c76e1cdf0160bf5bee43578334b5d73b783e8a088a818045ff7c5fe +size 24428 diff --git a/data/rug_cup/test/r_12_normal_0001.png b/data/rug_cup/test/r_12_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a25d2e89114ed1eb45ad7e2504076c0e0814c457 --- /dev/null +++ b/data/rug_cup/test/r_12_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd36ddec53a62a44c9d0858a4a777154655e93eeee28df0444e7defab8c89386 +size 209030 diff --git a/data/rug_cup/test/r_13.png b/data/rug_cup/test/r_13.png new file mode 100644 index 0000000000000000000000000000000000000000..5eca32b322da0fa025432bae38a208ef46416357 --- /dev/null +++ b/data/rug_cup/test/r_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c5b2422ca0ffd8f06deb1d3262c0c7cab0e5c2d9232d9aac1deb1bb589f5986 +size 245791 diff --git a/data/rug_cup/test/r_130.png b/data/rug_cup/test/r_130.png new file mode 100644 index 0000000000000000000000000000000000000000..22cbab5b2b0227ec4ea7abdc0d7dad566079ae32 --- /dev/null +++ b/data/rug_cup/test/r_130.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c0d7c7cbdf8d5817fc6df7f2d9eae09e86879f753d0b983a49583eb299912e +size 49903 diff --git a/data/rug_cup/test/r_130_depth_0001.png b/data/rug_cup/test/r_130_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d3f4c0a6c71bdc95fe1da71395733c152154d768 --- /dev/null +++ b/data/rug_cup/test/r_130_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b66f8b8a0befd4f37b426858d30640960bbdb76384dbd05d1e1411d816c382 +size 16533 diff --git a/data/rug_cup/test/r_130_normal_0001.png b/data/rug_cup/test/r_130_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b0e0b0045ae31b2d2cd2acc2e9fc24e0e9b64dbd --- /dev/null +++ b/data/rug_cup/test/r_130_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52da768cc26aaa393a310a3a24c7b306f62a00cfb55eab67dfaaa2eb8f8003d +size 34575 diff --git a/data/rug_cup/test/r_131.png b/data/rug_cup/test/r_131.png new file mode 100644 index 0000000000000000000000000000000000000000..44db321b9238a10584465c9dfc8dbedebea2bc03 --- /dev/null +++ b/data/rug_cup/test/r_131.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8c2826769b3167dc2805119321ac6ba94ed55d6b3c61d4dfeffe7c1e9de5c7 +size 52158 diff --git a/data/rug_cup/test/r_131_depth_0001.png b/data/rug_cup/test/r_131_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..890288fb6f553b1f7df8eb368388638b884a6e1e --- /dev/null +++ b/data/rug_cup/test/r_131_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b6eba06e08d211523e224e777e99f2147d0d25eaf48913b720fed7f21cb801 +size 16959 diff --git a/data/rug_cup/test/r_131_normal_0001.png b/data/rug_cup/test/r_131_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..bb023788ca219be29857ccd222707a0b52d5aa00 --- /dev/null +++ b/data/rug_cup/test/r_131_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b1c18f2787044da26310a58f9bd695ce32fb93919f5de5614f013cbaa74954 +size 37693 diff --git a/data/rug_cup/test/r_132.png b/data/rug_cup/test/r_132.png new file mode 100644 index 0000000000000000000000000000000000000000..0cd6cc4494975c68cb425d17c130886c2c8ac853 --- /dev/null +++ b/data/rug_cup/test/r_132.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886b22ba2a76de5e0631c050c191c7547950ce52f375324587b1f32f86e5e7a7 +size 54234 diff --git a/data/rug_cup/test/r_132_depth_0001.png b/data/rug_cup/test/r_132_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8a32e9013dbb8afd7d7f96f2ce4569ca84b342d7 --- /dev/null +++ b/data/rug_cup/test/r_132_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d079e6e214bafd521fdc0f91aa70255365acda5da3c028b492aa3d3a7df8f3 +size 17400 diff --git a/data/rug_cup/test/r_132_normal_0001.png b/data/rug_cup/test/r_132_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..cf40a66ea278b89758bf8e1d0ec0ecb7ac28d273 --- /dev/null +++ b/data/rug_cup/test/r_132_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4ff964b0f8cb4856c9d198bfd93e75ae386272200675b43805d077f7327e34 +size 40509 diff --git a/data/rug_cup/test/r_133.png b/data/rug_cup/test/r_133.png new file mode 100644 index 0000000000000000000000000000000000000000..ff468b84416e5b65dc1aae7f776f3e3ea4daaa22 --- /dev/null +++ b/data/rug_cup/test/r_133.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96da7e9add83c8db405a596bb4bbb66b8bca9f83e24a89d70b40e1856360077a +size 56850 diff --git a/data/rug_cup/test/r_133_depth_0001.png b/data/rug_cup/test/r_133_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..80b35820eb6597833acae4d9954317a0d808c1c9 --- /dev/null +++ b/data/rug_cup/test/r_133_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37cf69a4829cb68a8903263ae6438839702e2dc3e6be394143d978d5659e8a90 +size 17482 diff --git a/data/rug_cup/test/r_133_normal_0001.png b/data/rug_cup/test/r_133_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..014a03ebb9cfd4adf436e74509906a4714006603 --- /dev/null +++ b/data/rug_cup/test/r_133_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ceccabdcd26561d92f4be1db8f3e8fd8c4afbd0892f837eb29a7c2332bc81e4 +size 44311 diff --git a/data/rug_cup/test/r_134.png b/data/rug_cup/test/r_134.png new file mode 100644 index 0000000000000000000000000000000000000000..e30d896b02aca5c2ebbab5bc4b1a7b2e0961abb5 --- /dev/null +++ b/data/rug_cup/test/r_134.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b17ef7bb5816d1055404491c9f3c7a749334e97ccc77e564648d6f34e30014 +size 60341 diff --git a/data/rug_cup/test/r_134_depth_0001.png b/data/rug_cup/test/r_134_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d370284094be1feb5e6ae5c391c1ffd96a123c67 --- /dev/null +++ b/data/rug_cup/test/r_134_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56092e150bebcc4272d7bd6b3f15408277b5aee7bd6b6c165cad6bfa631d262a +size 17755 diff --git a/data/rug_cup/test/r_134_normal_0001.png b/data/rug_cup/test/r_134_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..28a1217d7f38a213168e1b58900e5ab17e8cd951 --- /dev/null +++ b/data/rug_cup/test/r_134_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88eab2eee630670ad17edf5cb72e3caf6490521930f00a33a62d60d15a17d7af +size 46900 diff --git a/data/rug_cup/test/r_135.png b/data/rug_cup/test/r_135.png new file mode 100644 index 0000000000000000000000000000000000000000..bcbfd4ddf53f28b24fa9a561a96330790b9fb3a6 --- /dev/null +++ b/data/rug_cup/test/r_135.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49110e5ecee07de97bade86a9188c147e307c7e1a0acea269998be0255959547 +size 64291 diff --git a/data/rug_cup/test/r_135_depth_0001.png b/data/rug_cup/test/r_135_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4a6e901ec9e2978a0dade77f4897308eb8b831d1 --- /dev/null +++ b/data/rug_cup/test/r_135_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3ccfef69440f476ae2dd9f9c9b29a73c828f8f97fb978b3979dfe76be562d19 +size 17962 diff --git a/data/rug_cup/test/r_135_normal_0001.png b/data/rug_cup/test/r_135_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6671b5c60ae7f97f0ce30768d50b34e7850cc933 --- /dev/null +++ b/data/rug_cup/test/r_135_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f951b690bafcc6872450591c800436dfd70f1ba431d7764e76dc518fdad970 +size 50434 diff --git a/data/rug_cup/test/r_136.png b/data/rug_cup/test/r_136.png new file mode 100644 index 0000000000000000000000000000000000000000..0fdda58c1f932fc21d5c824356f3a2414d94550e --- /dev/null +++ b/data/rug_cup/test/r_136.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed73e2455f460791ffc517ddcabb9931471ab7b0892ffd2822aba4d9d4edea1 +size 68586 diff --git a/data/rug_cup/test/r_136_depth_0001.png b/data/rug_cup/test/r_136_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..275d55efcb77b1fa797371e8ee87f253257d351d --- /dev/null +++ b/data/rug_cup/test/r_136_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a5e2576321ad2245885d6bd1ce6f12a136da814d15d27e9e8aba0993f128ca +size 18268 diff --git a/data/rug_cup/test/r_136_normal_0001.png b/data/rug_cup/test/r_136_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2b65356c28e40ffa8f951d9437fb9b203aa2198b --- /dev/null +++ b/data/rug_cup/test/r_136_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834947ef997285f57999c2398066f1fe2898ffd3f889c059db7855e48e11b2d9 +size 54868 diff --git a/data/rug_cup/test/r_137.png b/data/rug_cup/test/r_137.png new file mode 100644 index 0000000000000000000000000000000000000000..6b514bc7e96638e45230aab6d4d6a897c2fda82b --- /dev/null +++ b/data/rug_cup/test/r_137.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f658b7bb3eb5d5dad879a311e0537ebed68aee44e5ba4709762fcd635d472bab +size 73100 diff --git a/data/rug_cup/test/r_137_depth_0001.png b/data/rug_cup/test/r_137_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..aba45a81bed3ce539d05cd7e70911f2d92d453dc --- /dev/null +++ b/data/rug_cup/test/r_137_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f77871109e4d327b3d25ab060866a92ae5250418ca3cdd8e40bb34bebfa7dee +size 18585 diff --git a/data/rug_cup/test/r_137_normal_0001.png b/data/rug_cup/test/r_137_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..76efcfeb9dbfa26b8e353dae820c4619d847538b --- /dev/null +++ b/data/rug_cup/test/r_137_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7380dacfe9a786706720c328241e45a954226be65f28aaace9e791d303a20497 +size 59100 diff --git a/data/rug_cup/test/r_138.png b/data/rug_cup/test/r_138.png new file mode 100644 index 0000000000000000000000000000000000000000..fa01faccd777f3ce9e4003478c8cfd5a5c6c223b --- /dev/null +++ b/data/rug_cup/test/r_138.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9871672c60dccfc557815bb2a599d3724aae9e8fd3bc88804cceeed1bc354c1 +size 77172 diff --git a/data/rug_cup/test/r_138_depth_0001.png b/data/rug_cup/test/r_138_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6c6efb1f26657ba4f3f7dbc772ac8d87183950f8 --- /dev/null +++ b/data/rug_cup/test/r_138_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8455e397876da02417ad91df10a8c19f927b85fd35d13e633d85328fc06b83d +size 18738 diff --git a/data/rug_cup/test/r_138_normal_0001.png b/data/rug_cup/test/r_138_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c8512b54bf8a81a4bd7397e8ab06e5be394b5167 --- /dev/null +++ b/data/rug_cup/test/r_138_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a32e8bf78815f6e99280f7bb4689040e2de690d1690ac808549a7f46c70bb1eb +size 64510 diff --git a/data/rug_cup/test/r_139.png b/data/rug_cup/test/r_139.png new file mode 100644 index 0000000000000000000000000000000000000000..f66366a724964bdec9e9f29bf127c71492b5523d --- /dev/null +++ b/data/rug_cup/test/r_139.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb01da2efe5303fc9f59d26804e1eb96b8fbbeba3f121720eb6a3848acacfdd +size 80479 diff --git a/data/rug_cup/test/r_139_depth_0001.png b/data/rug_cup/test/r_139_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b8eda192b319e48f6f3762db27b53d0220fe7772 --- /dev/null +++ b/data/rug_cup/test/r_139_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f034126eb04f214c4925118b26c1fb3da674d7e395871506269a6789be05832d +size 18958 diff --git a/data/rug_cup/test/r_139_normal_0001.png b/data/rug_cup/test/r_139_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c628928d6a94aace301d36e2dafedaa768ca8eb8 --- /dev/null +++ b/data/rug_cup/test/r_139_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fe6a0b80cb46b93aaf0880a9db3635908d227593750074a1b1d3f3241eb9c8a +size 68464 diff --git a/data/rug_cup/test/r_13_depth_0001.png b/data/rug_cup/test/r_13_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6e0389e6794032a9b0805b268c3d7b797117b213 --- /dev/null +++ b/data/rug_cup/test/r_13_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b59e53636995a10e0538069c4f6e36dace1e5c5a823b0c63ec5417880331943 +size 24308 diff --git a/data/rug_cup/test/r_13_normal_0001.png b/data/rug_cup/test/r_13_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f04984e144ba055e51600ffdea9bfed38d959a45 --- /dev/null +++ b/data/rug_cup/test/r_13_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c02b886351f148ed916fd9c9518d94d275b1c23811f6e4a192ebceb820fdc2 +size 206991 diff --git a/data/rug_cup/test/r_14.png b/data/rug_cup/test/r_14.png new file mode 100644 index 0000000000000000000000000000000000000000..5577d991addde37349fb86890ab0f8748c9661e9 --- /dev/null +++ b/data/rug_cup/test/r_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55bb932f97d9f34e2e8c499fe4344dec7812eab9272cd84a29c2ea89c7d3382f +size 242195 diff --git a/data/rug_cup/test/r_140.png b/data/rug_cup/test/r_140.png new file mode 100644 index 0000000000000000000000000000000000000000..18877bc1fa6aef75777f46ce1d6c7aeb9bfe3833 --- /dev/null +++ b/data/rug_cup/test/r_140.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022a1b11b3f8b5c0baee893d1ed82157897b41a95b9e5ce6dc4107fb149ae012 +size 83696 diff --git a/data/rug_cup/test/r_140_depth_0001.png b/data/rug_cup/test/r_140_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ea120f39ef1c31d12939953a27e91ba3dc75ecef --- /dev/null +++ b/data/rug_cup/test/r_140_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa85bdaff98c065092a8937bcf03fb80859abd80adfd3faa2999279353aa8f49 +size 19400 diff --git a/data/rug_cup/test/r_140_normal_0001.png b/data/rug_cup/test/r_140_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6b1c9f9ad3ade203da943d9c0e3317640fb5a229 --- /dev/null +++ b/data/rug_cup/test/r_140_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374efcc750b4114bcfd63cea04d289277e202829228786e7f4b390fcc0b53f24 +size 72463 diff --git a/data/rug_cup/test/r_141.png b/data/rug_cup/test/r_141.png new file mode 100644 index 0000000000000000000000000000000000000000..1ca4c6bc29470e23607e1db0ae7f6e864981057f --- /dev/null +++ b/data/rug_cup/test/r_141.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c300229e9a59ed631fa3244ccd216c35d236a0b503ad7c65a45f43c88be854e2 +size 88089 diff --git a/data/rug_cup/test/r_141_depth_0001.png b/data/rug_cup/test/r_141_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d91511a246c1541f8d58351257f6e7cf1e4f0b1a --- /dev/null +++ b/data/rug_cup/test/r_141_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ddb223a817d5917ac89016b06b83678ee35adb63076e4dadfe03d9ecb561366 +size 19356 diff --git a/data/rug_cup/test/r_141_normal_0001.png b/data/rug_cup/test/r_141_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..9e43ecea6569559f2fd9b13ca0cea1bcc8c83b6f --- /dev/null +++ b/data/rug_cup/test/r_141_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72350cefb2a2c2e9bf95d04e8b19944d597c96994d6b22e20bf437a278f0bf07 +size 76532 diff --git a/data/rug_cup/test/r_142.png b/data/rug_cup/test/r_142.png new file mode 100644 index 0000000000000000000000000000000000000000..5e935ebd5c4d465a9c5981acbc7519e3e2bb5f92 --- /dev/null +++ b/data/rug_cup/test/r_142.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30461f700fcce5463b3da32871261cab26687918588ad3da8fd570e8bf2f146 +size 92280 diff --git a/data/rug_cup/test/r_142_depth_0001.png b/data/rug_cup/test/r_142_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5ebd619a2eddb8b0b123d54f84a22de98179c59c --- /dev/null +++ b/data/rug_cup/test/r_142_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7305ac9efbe74888eaa237008ca5e495d3e8e9954143842733eb9cbccf28b5f2 +size 19759 diff --git a/data/rug_cup/test/r_142_normal_0001.png b/data/rug_cup/test/r_142_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..19544863394de7faf0f5651b911cac65df1d27fb --- /dev/null +++ b/data/rug_cup/test/r_142_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:434e9ec18cbd2302a3a402000c48ff22e210349449c3f5a5c671654fc1e072d7 +size 81703 diff --git a/data/rug_cup/test/r_143.png b/data/rug_cup/test/r_143.png new file mode 100644 index 0000000000000000000000000000000000000000..a51fc7e4be6a65d54cccfb192c548c70ee5a1ce3 --- /dev/null +++ b/data/rug_cup/test/r_143.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8958b341f4a667057672a95bdfc13cb1007e2293c276bcdf8f70e88defc8c63 +size 95935 diff --git a/data/rug_cup/test/r_143_depth_0001.png b/data/rug_cup/test/r_143_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..acaa02792ef576e8707519e8a704b68155998bc1 --- /dev/null +++ b/data/rug_cup/test/r_143_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd005a5d0b766c00f1481a2f7c41590e42107a106cafa903148b4153f5f4fb74 +size 19880 diff --git a/data/rug_cup/test/r_143_normal_0001.png b/data/rug_cup/test/r_143_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6993bf681ed967bee8f75dcbd7d4c6eac3b4a768 --- /dev/null +++ b/data/rug_cup/test/r_143_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b58e02b06feb6989c7236283bc6a5a1b4da0831b6955d3380bae9e33c937f5 +size 86564 diff --git a/data/rug_cup/test/r_144.png b/data/rug_cup/test/r_144.png new file mode 100644 index 0000000000000000000000000000000000000000..ace98af652da3e711179194e44b317f964fac887 --- /dev/null +++ b/data/rug_cup/test/r_144.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0df6ed02e5a460b1f90948883d82ad157f88cc6f72ee536c18139a90c58ef3b +size 99848 diff --git a/data/rug_cup/test/r_144_depth_0001.png b/data/rug_cup/test/r_144_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..75c3bdb2785db3ec8b5a00cfcd0c4814f44177e2 --- /dev/null +++ b/data/rug_cup/test/r_144_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89fbafa3d95214b1f65241c640228d207681ed9a5455843925d37f6df6764deb +size 20062 diff --git a/data/rug_cup/test/r_144_normal_0001.png b/data/rug_cup/test/r_144_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..84a2035bd30abb80030a8aff6a96b106e316b052 --- /dev/null +++ b/data/rug_cup/test/r_144_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746e32e7e912252a19ade0c349f6d5863a2cd25c066d5c78a62f3fa54b96fd13 +size 90808 diff --git a/data/rug_cup/test/r_145.png b/data/rug_cup/test/r_145.png new file mode 100644 index 0000000000000000000000000000000000000000..f25be757d8448e2d1c71d55a37128ad7a8fefcb2 --- /dev/null +++ b/data/rug_cup/test/r_145.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ccfa86e17eb0e005620cb81ada729fb4e254a2d5fe14d93bce67a7d4613bec +size 103291 diff --git a/data/rug_cup/test/r_145_depth_0001.png b/data/rug_cup/test/r_145_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..574c7616c12be0229c2c6b3ff0331a82083dc642 --- /dev/null +++ b/data/rug_cup/test/r_145_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2430e0cbce9a97a4b9f2fd473ac094b30810e3cbb0cb143de961e3385e66636c +size 20281 diff --git a/data/rug_cup/test/r_145_normal_0001.png b/data/rug_cup/test/r_145_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f5081c63c4306694d706998717729fe34ec0af16 --- /dev/null +++ b/data/rug_cup/test/r_145_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9540c23d2155ad5a3b2a010fe20ccc126b1e886a5129350d86871384a1331609 +size 93563 diff --git a/data/rug_cup/test/r_146.png b/data/rug_cup/test/r_146.png new file mode 100644 index 0000000000000000000000000000000000000000..1f3f9adb253e0ee5ff3059651a84b05194040744 --- /dev/null +++ b/data/rug_cup/test/r_146.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23792f62b2cdbfbb345aaf136d70130fe552a63693190970794da9480a9b8364 +size 106219 diff --git a/data/rug_cup/test/r_146_depth_0001.png b/data/rug_cup/test/r_146_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..bc5e437a19e7b1e9b25cc416bb822f38771a7311 --- /dev/null +++ b/data/rug_cup/test/r_146_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bab4bb164942289597176e11cc5582a3442af0e85047cdfc04d40b9ed8e8958 +size 20154 diff --git a/data/rug_cup/test/r_146_normal_0001.png b/data/rug_cup/test/r_146_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7849aa849ce0cbf1647acd2423a1850497ffa08a --- /dev/null +++ b/data/rug_cup/test/r_146_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe01ff5952a9960f04645d3bdd4712f1be67435d2010409c8410a1abff340fec +size 98270 diff --git a/data/rug_cup/test/r_147.png b/data/rug_cup/test/r_147.png new file mode 100644 index 0000000000000000000000000000000000000000..635cfc636cd585a9bb41cc8a191f4d03b9b28b9f --- /dev/null +++ b/data/rug_cup/test/r_147.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162811cb6f9acc157adf7c801dd439cac2ddb392085347050c164acc39df17fa +size 108964 diff --git a/data/rug_cup/test/r_147_depth_0001.png b/data/rug_cup/test/r_147_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..324fe0f34402b735152d1713ad2407c66528fbeb --- /dev/null +++ b/data/rug_cup/test/r_147_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e897f223ccae04505012ef6af1e85e6451a8352ced60431bb1fc7004ecf7d9c +size 19955 diff --git a/data/rug_cup/test/r_147_normal_0001.png b/data/rug_cup/test/r_147_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d5ced2946672f9517d28d7688f4b2c0b355b2b0f --- /dev/null +++ b/data/rug_cup/test/r_147_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41041704eaa463d158dcfe53dd6ca3a098ce3d96e95a176a3085effd1bc2686 +size 102580 diff --git a/data/rug_cup/test/r_148.png b/data/rug_cup/test/r_148.png new file mode 100644 index 0000000000000000000000000000000000000000..fef1ff9b2d5db7b04aaa620c6d9f507517239dda --- /dev/null +++ b/data/rug_cup/test/r_148.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f2867df0c555883aff7c00c176cff220212112d15b3b4c2a249efea853041d9 +size 112331 diff --git a/data/rug_cup/test/r_148_depth_0001.png b/data/rug_cup/test/r_148_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..fa3bfcc59baeacea97e2028190fd780fe7bfcdc7 --- /dev/null +++ b/data/rug_cup/test/r_148_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae71638d7665a201feba7d9e90e2d4a270f5afca507d31acea32caa3c994a97 +size 20157 diff --git a/data/rug_cup/test/r_148_normal_0001.png b/data/rug_cup/test/r_148_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2534b6c84d809bc9332f596c6fbf88e92632e4f4 --- /dev/null +++ b/data/rug_cup/test/r_148_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4eb8000e722977221143941156e5ba6ae787dd33cf71be277c86fd39513f956 +size 107723 diff --git a/data/rug_cup/test/r_149.png b/data/rug_cup/test/r_149.png new file mode 100644 index 0000000000000000000000000000000000000000..6bcea7b54c72d685f98c905677d6f878a94db0e5 --- /dev/null +++ b/data/rug_cup/test/r_149.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b7592e427b7aa7461165946f3dcf38a2166827692407f62cb4f238e1456fca9 +size 115441 diff --git a/data/rug_cup/test/r_149_depth_0001.png b/data/rug_cup/test/r_149_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f333f183e117c102f00f41b532f24944a12351e3 --- /dev/null +++ b/data/rug_cup/test/r_149_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f5d1abaa1ee22bdea9532183d865d66ac9411028aa7d3dff0d673c7cc2941a +size 20068 diff --git a/data/rug_cup/test/r_149_normal_0001.png b/data/rug_cup/test/r_149_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..199285abc4e0a3425c903b769e61a755319d15c3 --- /dev/null +++ b/data/rug_cup/test/r_149_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9c7cdfa89181e9206e46b290f31b91b0e157ab409e1bfe359a4a5f906f2fbe +size 110098 diff --git a/data/rug_cup/test/r_14_depth_0001.png b/data/rug_cup/test/r_14_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..21ac146abc0e31e05ea347e4ceda716a334741c6 --- /dev/null +++ b/data/rug_cup/test/r_14_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f23a64618447f9604fc41c3001fde3782e29bfb65cf49af6329302ebb7ba0d6e +size 24031 diff --git a/data/rug_cup/test/r_14_normal_0001.png b/data/rug_cup/test/r_14_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..80a01938344d4e9de1d7ec8063c3ab0d8df5763d --- /dev/null +++ b/data/rug_cup/test/r_14_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983e0bc81cb599354c95d3b5d0397e06233217fbd9a6735db137757902996824 +size 203111 diff --git a/data/rug_cup/test/r_15.png b/data/rug_cup/test/r_15.png new file mode 100644 index 0000000000000000000000000000000000000000..a709759752f933a090b1befca6d9375af4a48c71 --- /dev/null +++ b/data/rug_cup/test/r_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2139a6a09d988703ec8aa4c60a64cb24520c2b29f0c0b5135a313bc3ef56ab4 +size 238242 diff --git a/data/rug_cup/test/r_150.png b/data/rug_cup/test/r_150.png new file mode 100644 index 0000000000000000000000000000000000000000..1badc5d8c5086835106fc5fb5112150685e5fc62 --- /dev/null +++ b/data/rug_cup/test/r_150.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1fe1eaf405e7e859c744153cc7e2e0315da0e9e90c759807ff813013b4abd2a +size 119350 diff --git a/data/rug_cup/test/r_150_depth_0001.png b/data/rug_cup/test/r_150_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b3699c05414124353088862446610f24d9562094 --- /dev/null +++ b/data/rug_cup/test/r_150_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb9dd8bbf77778569fc966b95683645334db594b5e83ff9c3d5d8b40ec02800 +size 19988 diff --git a/data/rug_cup/test/r_150_normal_0001.png b/data/rug_cup/test/r_150_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..af7c244b4760ba11e6af61e0520240e2b0e77bf5 --- /dev/null +++ b/data/rug_cup/test/r_150_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83cb149fdb7d806ec34fbd0cad230617d7570827eb4072e46a2885fa41c591a3 +size 113587 diff --git a/data/rug_cup/test/r_151.png b/data/rug_cup/test/r_151.png new file mode 100644 index 0000000000000000000000000000000000000000..3d8c7bb0f6b3944991c29ac94ff66f951ac2df3d --- /dev/null +++ b/data/rug_cup/test/r_151.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45fb9516a937dcfb42dd230ff1a78225150a96a6c7ba1babca57fa172e19b959 +size 124008 diff --git a/data/rug_cup/test/r_151_depth_0001.png b/data/rug_cup/test/r_151_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4a6654e057370e00568cc06f30dd02042316266d --- /dev/null +++ b/data/rug_cup/test/r_151_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b490dacb6a03976433dd82a109100c7a35fb0eb1fe3a0aebb78b6edef991d9 +size 20230 diff --git a/data/rug_cup/test/r_151_normal_0001.png b/data/rug_cup/test/r_151_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..dc124411b382a96e2d41ee1f538cfd82d6c954f6 --- /dev/null +++ b/data/rug_cup/test/r_151_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05dcc25a1db3988af767c676decd02b1973851471e93624343b92c06fd0fea3 +size 119260 diff --git a/data/rug_cup/test/r_152.png b/data/rug_cup/test/r_152.png new file mode 100644 index 0000000000000000000000000000000000000000..5d31b2488c9d50f7cef29dd2497dccde9987fe99 --- /dev/null +++ b/data/rug_cup/test/r_152.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f262710c5bdc72b8142049d6e3771d50aa5a1d221159504395175eac24e361 +size 129413 diff --git a/data/rug_cup/test/r_152_depth_0001.png b/data/rug_cup/test/r_152_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..1a5b6ba05c96637734379feeb8b179134ca0a43b --- /dev/null +++ b/data/rug_cup/test/r_152_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf9eb9df34c37be2b9754091845a72c91547f14a6f091ca9d7918ca493991ef +size 20629 diff --git a/data/rug_cup/test/r_152_normal_0001.png b/data/rug_cup/test/r_152_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..439d691fdd8aa11cd0ead884ed2d5bb7534d0888 --- /dev/null +++ b/data/rug_cup/test/r_152_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8bd08bfc95c990ed45863839541b8adb43fc2cbc6d9fad9108e5097ab7d95f +size 125840 diff --git a/data/rug_cup/test/r_153.png b/data/rug_cup/test/r_153.png new file mode 100644 index 0000000000000000000000000000000000000000..7bfc43c9026b1875d9718f5c3484babadfdcc657 --- /dev/null +++ b/data/rug_cup/test/r_153.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375fa110fc05870a4db9277464613c31b1528851a5d411a4e8fc7e761990d37c +size 133559 diff --git a/data/rug_cup/test/r_153_depth_0001.png b/data/rug_cup/test/r_153_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d40b13500e8fd0b2e0b45b61bdfe525250c03100 --- /dev/null +++ b/data/rug_cup/test/r_153_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2236e3f22f7aed2534b41e6f127102c41e0f7bcef1812a57cbfefeeb8a2b47da +size 20945 diff --git a/data/rug_cup/test/r_153_normal_0001.png b/data/rug_cup/test/r_153_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..088525508c35644a07639d5437e8e729159a2439 --- /dev/null +++ b/data/rug_cup/test/r_153_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f86d66482844c178d3cadd3d4548f41ea78d416134f03714420e7d81d66f51 +size 131114 diff --git a/data/rug_cup/test/r_154.png b/data/rug_cup/test/r_154.png new file mode 100644 index 0000000000000000000000000000000000000000..1a88c7b28ab9d1f9b41255d30f99a661c984c7a8 --- /dev/null +++ b/data/rug_cup/test/r_154.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14e09e08907dff32a10c03d3682012e4cb2e3aa9095a654d2d10fbf03a24234 +size 138499 diff --git a/data/rug_cup/test/r_154_depth_0001.png b/data/rug_cup/test/r_154_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e186badb86bb96b339e4c451b9158d9c3c13faa6 --- /dev/null +++ b/data/rug_cup/test/r_154_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f44fbafb6df9c497648104f849dc74d2610865deec1178ebba5bb4e7abe9d1 +size 21172 diff --git a/data/rug_cup/test/r_154_normal_0001.png b/data/rug_cup/test/r_154_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..234476515777f6791b67b0cce87008057e141908 --- /dev/null +++ b/data/rug_cup/test/r_154_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfb0abd4508f97c14f1feff89f21860981aa64fd9807748961d4ab7dcc86427 +size 136540 diff --git a/data/rug_cup/test/r_155.png b/data/rug_cup/test/r_155.png new file mode 100644 index 0000000000000000000000000000000000000000..d5b0349fbb7f01f8d73c589830a566861ecdd056 --- /dev/null +++ b/data/rug_cup/test/r_155.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420c8fb9ae27127e44c36e06458346365fdf8e14b33836ff6b747685c42e0c11 +size 142998 diff --git a/data/rug_cup/test/r_155_depth_0001.png b/data/rug_cup/test/r_155_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..cd851de1b37b7a8dd361a21a3a5ce12d72ff38af --- /dev/null +++ b/data/rug_cup/test/r_155_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f2fdbbf116c9ed98cbd2bee2641aaa8eb05ac313f8b80f4f1f6a88c18ff7ed +size 21725 diff --git a/data/rug_cup/test/r_155_normal_0001.png b/data/rug_cup/test/r_155_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..baacc35ce5b494f872edd60c4959826523d0528e --- /dev/null +++ b/data/rug_cup/test/r_155_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da0b32c95e4e00f9c2d9012c830cc69b189bffac0d91a898500f00979d4cd05 +size 142131 diff --git a/data/rug_cup/test/r_156.png b/data/rug_cup/test/r_156.png new file mode 100644 index 0000000000000000000000000000000000000000..2eadc656603909f68de98cb8ec44d716eac66cfb --- /dev/null +++ b/data/rug_cup/test/r_156.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56596064e8b71eb70ee4e0dd2c0412785fcbb8c0787d2711e0d219c76608b5f +size 148331 diff --git a/data/rug_cup/test/r_156_depth_0001.png b/data/rug_cup/test/r_156_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..bd1ecbba525dd58444bf3323515de64f72e40c90 --- /dev/null +++ b/data/rug_cup/test/r_156_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:762c0b3822c6f3e3b63a6f90a3a13d7db14079f007815791cdc8c813e6493f47 +size 21898 diff --git a/data/rug_cup/test/r_156_normal_0001.png b/data/rug_cup/test/r_156_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ad08773a209e07f4d53379f22936ab3784db9641 --- /dev/null +++ b/data/rug_cup/test/r_156_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72d21c26a29296a3612f9f9f163cbc97b20bc9145dd950d5e5baa56fcbacfb5e +size 147468 diff --git a/data/rug_cup/test/r_157.png b/data/rug_cup/test/r_157.png new file mode 100644 index 0000000000000000000000000000000000000000..6cad52305e8904811f65d6b4a415d1ccee31ae52 --- /dev/null +++ b/data/rug_cup/test/r_157.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1d27867d98edd3ff67224969a146202a13d0d0777ea560372cff9a69609e74 +size 152785 diff --git a/data/rug_cup/test/r_157_depth_0001.png b/data/rug_cup/test/r_157_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..dabe8dd3da9142ff55db31e26c3f3ed20d35d661 --- /dev/null +++ b/data/rug_cup/test/r_157_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e89306385bf8e2719d880d53a221f1e8f808b900cfecc61880ce521395cb2e +size 21969 diff --git a/data/rug_cup/test/r_157_normal_0001.png b/data/rug_cup/test/r_157_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..1617e22b0fda682a5dc0c163dbb233644483b5a1 --- /dev/null +++ b/data/rug_cup/test/r_157_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0db8859170384ccac29247f2caef5cf8911372f1cb3170e404b5171e5f9ef2b +size 152810 diff --git a/data/rug_cup/test/r_158.png b/data/rug_cup/test/r_158.png new file mode 100644 index 0000000000000000000000000000000000000000..98d2d78110bfbefcac6d2358231a0420018bf3ad --- /dev/null +++ b/data/rug_cup/test/r_158.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96fbea84e4f365143834ef946b2270aa8023c92fa2b88eae498936b518fc106a +size 155960 diff --git a/data/rug_cup/test/r_158_depth_0001.png b/data/rug_cup/test/r_158_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..85711e1cbbea6c29bf22061d3d43ecf122a06383 --- /dev/null +++ b/data/rug_cup/test/r_158_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47138fac2ea16011a442fbe93cf8ee20e8f64faef7f783406bb12c74f3454507 +size 22067 diff --git a/data/rug_cup/test/r_158_normal_0001.png b/data/rug_cup/test/r_158_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b636e354c3c9776742e4666544dc827bf87f08b4 --- /dev/null +++ b/data/rug_cup/test/r_158_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276e4c9933b320e3922a099cca718265eb0886bd934ff384a8cd03c2c2d9d22c +size 155636 diff --git a/data/rug_cup/test/r_159.png b/data/rug_cup/test/r_159.png new file mode 100644 index 0000000000000000000000000000000000000000..f138a138136a525dcb939294239ad3b75f0e5f24 --- /dev/null +++ b/data/rug_cup/test/r_159.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d1a136e46035141a66004404ef189ad61aebd34aec8089084e57b4fbeb706d +size 159071 diff --git a/data/rug_cup/test/r_159_depth_0001.png b/data/rug_cup/test/r_159_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..94b05c2bbd290708cffbda1954be09d609dd9528 --- /dev/null +++ b/data/rug_cup/test/r_159_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44e45ab8248eb022c0b66b184ba65382d23c332b04d93ff9ebf872a2213c2cc +size 22256 diff --git a/data/rug_cup/test/r_159_normal_0001.png b/data/rug_cup/test/r_159_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c1eba7353af02e66ac13ca480c155dc058bcd61d --- /dev/null +++ b/data/rug_cup/test/r_159_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38114e5db9c597d445a45a1d2ee849668534888b140cd8f988e3e6df6e0f9eb6 +size 155909 diff --git a/data/rug_cup/test/r_15_depth_0001.png b/data/rug_cup/test/r_15_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f7cbff74cb0d6ceb33ac63fa5876d05193736a3c --- /dev/null +++ b/data/rug_cup/test/r_15_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d9d351369838fdf18de124a1c965aed12c49671625e2799b79a718974d8bd6 +size 23635 diff --git a/data/rug_cup/test/r_15_normal_0001.png b/data/rug_cup/test/r_15_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6a8f6ab22b6beeaf03abac7001c7b21fdf6c0bea --- /dev/null +++ b/data/rug_cup/test/r_15_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d8f17dc4366ea4a92fdfab3a5413fe095d94f02adabcccfcbe239e284ccb82 +size 197926 diff --git a/data/rug_cup/test/r_16.png b/data/rug_cup/test/r_16.png new file mode 100644 index 0000000000000000000000000000000000000000..ae9924cbcec5ec2172d604fd108d6cf85a616084 --- /dev/null +++ b/data/rug_cup/test/r_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88badd4bacc2e85bd84caf0e29816ab030cc13887e22e5b033fa2ea34e3c16f +size 235563 diff --git a/data/rug_cup/test/r_160.png b/data/rug_cup/test/r_160.png new file mode 100644 index 0000000000000000000000000000000000000000..d5212f72f54c515ab4e496bb9fa771e06172259b --- /dev/null +++ b/data/rug_cup/test/r_160.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848b6ea2be66f2fee3fe102c8b7a32c90ed1b379e95aa7ba02c2e35cec223c94 +size 162968 diff --git a/data/rug_cup/test/r_160_depth_0001.png b/data/rug_cup/test/r_160_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5fc6323e563469a5ffecfab7bf08cdd759a0aebd --- /dev/null +++ b/data/rug_cup/test/r_160_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334445b42fbde79c66fa950e0d4b748fbb6075957fff5301ed934248e7877dc8 +size 22258 diff --git a/data/rug_cup/test/r_160_normal_0001.png b/data/rug_cup/test/r_160_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..97b505d0dc05420e4f5ddcfe3f81823298cc1791 --- /dev/null +++ b/data/rug_cup/test/r_160_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0f53ea5ce3d19d26a327f39ff6b05c2fb43cf1812c944e11593c05b97160f7c +size 152331 diff --git a/data/rug_cup/test/r_161.png b/data/rug_cup/test/r_161.png new file mode 100644 index 0000000000000000000000000000000000000000..acb01d839102d3f7a28abc2ccba28d12f104643e --- /dev/null +++ b/data/rug_cup/test/r_161.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a2c1e5398394cd1967d3d8c03c9bb61bc33f6aaf3ac811d4f311e5661a96c5 +size 166869 diff --git a/data/rug_cup/test/r_161_depth_0001.png b/data/rug_cup/test/r_161_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a7ed42b8d2fc30775efc07f88e90799608030a36 --- /dev/null +++ b/data/rug_cup/test/r_161_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e505ea52be6c6f265e47c296f86d817f626213780bf53dc12a938d03f4298141 +size 22285 diff --git a/data/rug_cup/test/r_161_normal_0001.png b/data/rug_cup/test/r_161_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f901f93783791ef295429cb6c07375f6d4fb0188 --- /dev/null +++ b/data/rug_cup/test/r_161_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc17bb7f6147aa77ae28aba11b464ebc5f2af989dbb2453ae0d6935974d9447 +size 150263 diff --git a/data/rug_cup/test/r_162.png b/data/rug_cup/test/r_162.png new file mode 100644 index 0000000000000000000000000000000000000000..91e935bc9ea624cd2a5fb93b9ffc9cca426ff92f --- /dev/null +++ b/data/rug_cup/test/r_162.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54eb2b16f90fab06bcd13888ee33da23000ca5a711784ceda3c710c046cf1fdc +size 170218 diff --git a/data/rug_cup/test/r_162_depth_0001.png b/data/rug_cup/test/r_162_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d799e7957a1fad7cd5ea10770a1f5f6f43f7fe12 --- /dev/null +++ b/data/rug_cup/test/r_162_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e76a9d83f7a31d2ab9e6dff19eec0b61a6a3a272067a10cf0288cdac82787b1 +size 22328 diff --git a/data/rug_cup/test/r_162_normal_0001.png b/data/rug_cup/test/r_162_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..061f315e751ca3761a99b0d02f39973abe13c0c8 --- /dev/null +++ b/data/rug_cup/test/r_162_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a812ef0854c4b215cb466e16788f405628b1f21a82e69c19cee451a0d9d87c +size 150027 diff --git a/data/rug_cup/test/r_163.png b/data/rug_cup/test/r_163.png new file mode 100644 index 0000000000000000000000000000000000000000..d853f6d226a38c90d8fcea49b2db3d650e1a2abc --- /dev/null +++ b/data/rug_cup/test/r_163.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ccee5fb492f6e6e408bfa78299bef5988d98678a04154f34607d3f926a0089 +size 172894 diff --git a/data/rug_cup/test/r_163_depth_0001.png b/data/rug_cup/test/r_163_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..da18a2e1aa99b2000c84e78ab7baa5e1aba154e2 --- /dev/null +++ b/data/rug_cup/test/r_163_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366f9c86b49639638c93e59f42ae93e96a6d2e2304e2cfeecbd5255560269f71 +size 22205 diff --git a/data/rug_cup/test/r_163_normal_0001.png b/data/rug_cup/test/r_163_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..db4cdb68323dc8107678efdb4d37ced16cecf1d1 --- /dev/null +++ b/data/rug_cup/test/r_163_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7417f93aa51b27e2aff8d8441752b4a0dbfe2b8c99e3f36672890374c5d13d +size 151073 diff --git a/data/rug_cup/test/r_164.png b/data/rug_cup/test/r_164.png new file mode 100644 index 0000000000000000000000000000000000000000..4f8452ff1ba6e8e023e5de7910962cde49ac53f3 --- /dev/null +++ b/data/rug_cup/test/r_164.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:479ef745fe7ac05b1dc97fcf739a640f6c76ccc66371eeb9b7dbd3eab7f55bfe +size 174814 diff --git a/data/rug_cup/test/r_164_depth_0001.png b/data/rug_cup/test/r_164_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..80990b27e0757773e54f0bfbd8f36c7c1ff501e9 --- /dev/null +++ b/data/rug_cup/test/r_164_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a32303b4fed6e00409c2335c7dffa7967f8b10b275b3f961060429a67f9cf4c +size 22385 diff --git a/data/rug_cup/test/r_164_normal_0001.png b/data/rug_cup/test/r_164_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2e015c9487e41b78986b5c4f50f0f4c0ea5096d4 --- /dev/null +++ b/data/rug_cup/test/r_164_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1334acc92dd0468c88ff53aeddf8d8a7b60064ca8bd04e4bc8134e01a77cd901 +size 153449 diff --git a/data/rug_cup/test/r_165.png b/data/rug_cup/test/r_165.png new file mode 100644 index 0000000000000000000000000000000000000000..47dea656a991d82a29c26105a54c3ef459f10424 --- /dev/null +++ b/data/rug_cup/test/r_165.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb8f97e0c302f567f9146f68b5100f666523d4f7a8437c2bc510e3086c84a7d +size 177181 diff --git a/data/rug_cup/test/r_165_depth_0001.png b/data/rug_cup/test/r_165_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..988fa1b44810113bab843aba33fe7b85df46138b --- /dev/null +++ b/data/rug_cup/test/r_165_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50914e4ad6470c0a2ad02866f020d2cb95eb0a0a6e0917b67e2056b1184cc034 +size 22207 diff --git a/data/rug_cup/test/r_165_normal_0001.png b/data/rug_cup/test/r_165_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5f87f87af53213fcc3cfbf1fa306fd4b6638cef9 --- /dev/null +++ b/data/rug_cup/test/r_165_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b7a87f124c140c7d62b7dffde370c9779ef20496197de65baa7141195c2c7b9 +size 155177 diff --git a/data/rug_cup/test/r_166.png b/data/rug_cup/test/r_166.png new file mode 100644 index 0000000000000000000000000000000000000000..6c7227dce7417695877e9a7cadd71efea8d544ea --- /dev/null +++ b/data/rug_cup/test/r_166.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22815b052cb761ae1b3147b894faa51a49ab579a615499a0fdcd24ef9efa9bdb +size 179568 diff --git a/data/rug_cup/test/r_166_depth_0001.png b/data/rug_cup/test/r_166_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7941564546ce1e2cbe214240be9e9860c3a2d5b9 --- /dev/null +++ b/data/rug_cup/test/r_166_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db987dc3ce9ab67806f2c3c0102b158a0cba545e6a10c7a62b408489d096d682 +size 22126 diff --git a/data/rug_cup/test/r_166_normal_0001.png b/data/rug_cup/test/r_166_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..9a593c2a5080c0e2868dc51ba7ce516fbd710be8 --- /dev/null +++ b/data/rug_cup/test/r_166_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3819d125f704e04cb75b1c6bee3e11f0ee02c6261469c3a5a2691b6fb5630d8 +size 156949 diff --git a/data/rug_cup/test/r_167.png b/data/rug_cup/test/r_167.png new file mode 100644 index 0000000000000000000000000000000000000000..dc31c24eeb4aae5edad983ffe39eb6275fe66699 --- /dev/null +++ b/data/rug_cup/test/r_167.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c63c85fe30fec6792dcfee0126577eb21b306a806fc26706d1a5e7ce622e3a9 +size 182335 diff --git a/data/rug_cup/test/r_167_depth_0001.png b/data/rug_cup/test/r_167_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..74d80fa6f5bb939d3697051ccc315e1df3c50711 --- /dev/null +++ b/data/rug_cup/test/r_167_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ab350f21f7018a94d94ee16f1cc3b2f50e0514d5d39846533fabf698da245b +size 21978 diff --git a/data/rug_cup/test/r_167_normal_0001.png b/data/rug_cup/test/r_167_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4e9b7acbfdd023b36b7af8535854b88b2a8ac91b --- /dev/null +++ b/data/rug_cup/test/r_167_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfcd10e5835db981ab7987a537e6237f0cb97d9af08c4a3d672a323469ab772 +size 158584 diff --git a/data/rug_cup/test/r_168.png b/data/rug_cup/test/r_168.png new file mode 100644 index 0000000000000000000000000000000000000000..3ce21e3a6342aff26821c9ef53e8c029ebf53da7 --- /dev/null +++ b/data/rug_cup/test/r_168.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d274917341f94bd60c785634b4205ccddd20189f24350bb53428a757bbe12e +size 185157 diff --git a/data/rug_cup/test/r_168_depth_0001.png b/data/rug_cup/test/r_168_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8a42d109dcb6e331d3a7537238e097cc4c0cc8ac --- /dev/null +++ b/data/rug_cup/test/r_168_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f9340440e147ba568e50b901c82630084d31aabfa57a356b02767fcd0f1cd2 +size 22098 diff --git a/data/rug_cup/test/r_168_normal_0001.png b/data/rug_cup/test/r_168_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..51b05dff8c95b451aa16b1b82159cebe6cf04857 --- /dev/null +++ b/data/rug_cup/test/r_168_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3680cf2bbf637395eaa1a296d082e9b28f77d97e0c7c50429652ffae7fb62b9d +size 160611 diff --git a/data/rug_cup/test/r_169.png b/data/rug_cup/test/r_169.png new file mode 100644 index 0000000000000000000000000000000000000000..5691215d4d4b36c7fc0cca5249fb38972dc56c3d --- /dev/null +++ b/data/rug_cup/test/r_169.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689af2cafad5b9d503b3c767ace61c158aa367a2ee0527a64b3ae28d642d94cd +size 189442 diff --git a/data/rug_cup/test/r_169_depth_0001.png b/data/rug_cup/test/r_169_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..237c75405f7f071dae68461371f2093f38e79da6 --- /dev/null +++ b/data/rug_cup/test/r_169_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d1c16e48b15d54bd49cc3a9ec82f5af68ecefa1f47cc759062620a70972b21 +size 22248 diff --git a/data/rug_cup/test/r_169_normal_0001.png b/data/rug_cup/test/r_169_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..164beb3ca18f7f013b4c8ae7898e5c55b81096ce --- /dev/null +++ b/data/rug_cup/test/r_169_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:951f23280dfcd523286fd1b3cf663dd416c922d495520f90b6a6d75862266718 +size 162764 diff --git a/data/rug_cup/test/r_16_depth_0001.png b/data/rug_cup/test/r_16_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7606d267f7f059e02d12b9bf072daf89cf6fd05c --- /dev/null +++ b/data/rug_cup/test/r_16_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1902277ae03c7891e8bed400f05d8869067f47d1dace14e46916cf9f5861ea59 +size 23658 diff --git a/data/rug_cup/test/r_16_normal_0001.png b/data/rug_cup/test/r_16_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b920b06e701535be527da7722a8272926faaa367 --- /dev/null +++ b/data/rug_cup/test/r_16_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18c80cdacdb1ce7e677c7f579ebe6bdc3de28a7c75fdd44eb755b5d5baa11340 +size 195601 diff --git a/data/rug_cup/test/r_17.png b/data/rug_cup/test/r_17.png new file mode 100644 index 0000000000000000000000000000000000000000..12d3e71b241f55057b1e642d7c6b795d62ac5041 --- /dev/null +++ b/data/rug_cup/test/r_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:760ab86fd4a5c131b90a729422d72ddfb410702a1442465f1cd027fa717bf971 +size 233679 diff --git a/data/rug_cup/test/r_170.png b/data/rug_cup/test/r_170.png new file mode 100644 index 0000000000000000000000000000000000000000..b755e91efad3709c82d4f0648ae58b65a5222393 --- /dev/null +++ b/data/rug_cup/test/r_170.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb1ef0889f6e1acbfe0e931b40186226217ab1ba9104797943c74d8a8f2b5a79 +size 192541 diff --git a/data/rug_cup/test/r_170_depth_0001.png b/data/rug_cup/test/r_170_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..183cbd65913d7be760649a7641e41d340d97fa4d --- /dev/null +++ b/data/rug_cup/test/r_170_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5650b020be2413408e5729c9870f2710fb908cab4938484a756ec898e3747c9b +size 22219 diff --git a/data/rug_cup/test/r_170_normal_0001.png b/data/rug_cup/test/r_170_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5b237bcd5a5bf715938dd38c78dd3f02da8be315 --- /dev/null +++ b/data/rug_cup/test/r_170_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b274e17603e5ab98589a38bd1f6f405bc0949a7976ec6cee7ff225583bc3d2 +size 169392 diff --git a/data/rug_cup/test/r_171.png b/data/rug_cup/test/r_171.png new file mode 100644 index 0000000000000000000000000000000000000000..3f69b28d1c21b3fed4e404f840b639b8611d38a9 --- /dev/null +++ b/data/rug_cup/test/r_171.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640d31290561e93c00c73150c9feeb83c4c0f1f2ea1e3a27175109c54ad01170 +size 195060 diff --git a/data/rug_cup/test/r_171_depth_0001.png b/data/rug_cup/test/r_171_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..58a0388f2d0846cee5fa2f44333b9925a240cb86 --- /dev/null +++ b/data/rug_cup/test/r_171_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f52fa6303090a82ea15b7a558ac45bc644408dfeaaf8c68957b1726d4d9790d8 +size 22061 diff --git a/data/rug_cup/test/r_171_normal_0001.png b/data/rug_cup/test/r_171_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..eed6b402a3b0aa3aa07f74f681062be87dac65a9 --- /dev/null +++ b/data/rug_cup/test/r_171_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ce477279188811ed63b3627bfa98b39d54924b8f46f0c5a2b0102efe3de9a8 +size 187336 diff --git a/data/rug_cup/test/r_172.png b/data/rug_cup/test/r_172.png new file mode 100644 index 0000000000000000000000000000000000000000..0d4bbab511d6a75e39414dd0e25b9c66fd328735 --- /dev/null +++ b/data/rug_cup/test/r_172.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71abb45dd74808691cad5e4b2c8c177561229f6e15839ce08f3c29230a60575e +size 197425 diff --git a/data/rug_cup/test/r_172_depth_0001.png b/data/rug_cup/test/r_172_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..aafdcc7d6661b6b2f7f6cde114cc66e3b2acf5c8 --- /dev/null +++ b/data/rug_cup/test/r_172_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853cb819a6bbe08cabf4d4208c48910ff20270319da2d7f6b0df2920253cb4cc +size 21725 diff --git a/data/rug_cup/test/r_172_normal_0001.png b/data/rug_cup/test/r_172_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..08b30482d37b2dccb04df0f70794a33b4983e923 --- /dev/null +++ b/data/rug_cup/test/r_172_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d1a224a485dcd6e662d19913f40a8a9f46ff9539d93b632c7c92ac133b8c1c +size 201182 diff --git a/data/rug_cup/test/r_173.png b/data/rug_cup/test/r_173.png new file mode 100644 index 0000000000000000000000000000000000000000..98c4cfcb4e3297ab9951a2eb56391da927f02edd --- /dev/null +++ b/data/rug_cup/test/r_173.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e80a9e5e4924745acc403aa11aa807d3ed5062ce81ad5b4f4bf23dad557be8 +size 199527 diff --git a/data/rug_cup/test/r_173_depth_0001.png b/data/rug_cup/test/r_173_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7cfffaff49ce5837b0d6d11d987e58451b840fda --- /dev/null +++ b/data/rug_cup/test/r_173_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8388c4344a1071fa9d9d59e6e3be673d98a8c611878912a699d84f7acacf9a21 +size 21272 diff --git a/data/rug_cup/test/r_173_normal_0001.png b/data/rug_cup/test/r_173_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5ff593b0667cd295f0c8279745058bfa8c39ec2b --- /dev/null +++ b/data/rug_cup/test/r_173_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb445ed1c7b3c2aa89fe4d4b3fdb480a55c3f5c4d72aa20e45f27f37749ef82 +size 203211 diff --git a/data/rug_cup/test/r_174.png b/data/rug_cup/test/r_174.png new file mode 100644 index 0000000000000000000000000000000000000000..d7527b78002721770e5bf45e5622965e93d4c00f --- /dev/null +++ b/data/rug_cup/test/r_174.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff404abe7d5f1f2715d7639db126a5fd4e692eee05a454e3b2994037186952a0 +size 200557 diff --git a/data/rug_cup/test/r_174_depth_0001.png b/data/rug_cup/test/r_174_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..946e7af890de455c032d23eb7016dd0c3796d502 --- /dev/null +++ b/data/rug_cup/test/r_174_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03864adc86c3f6178f1dfd46f612c9b19df366b0f1b79666e617ad837e94b0d5 +size 20878 diff --git a/data/rug_cup/test/r_174_normal_0001.png b/data/rug_cup/test/r_174_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a4ea0849fefbcd5aab1d1733fb8601d334124799 --- /dev/null +++ b/data/rug_cup/test/r_174_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8efb9baaa4f0ff3bfa0d51fe0729c855af4ff934b1144c45a69065ade09ac51c +size 203700 diff --git a/data/rug_cup/test/r_175.png b/data/rug_cup/test/r_175.png new file mode 100644 index 0000000000000000000000000000000000000000..95c87b5411af1025d8dda48bcc96fce944fb9bab --- /dev/null +++ b/data/rug_cup/test/r_175.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f504d51682095e86f4c2c4710f53fb12505573bfcb37224262de93dc6add4a27 +size 200177 diff --git a/data/rug_cup/test/r_175_depth_0001.png b/data/rug_cup/test/r_175_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..abbc1426d0c6a8190d32aac84daf096021ecc5ab --- /dev/null +++ b/data/rug_cup/test/r_175_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb62b0f5e3a947b7b3582b8fbdcf544417321620acea80e71b57768ba2780b0 +size 20711 diff --git a/data/rug_cup/test/r_175_normal_0001.png b/data/rug_cup/test/r_175_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..0d9017ad6808a12884622590d247068fbc3b7c35 --- /dev/null +++ b/data/rug_cup/test/r_175_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea6f9fa1db76095df27c260352308176fc2ce4992da15366a45ccd10a4c1b93 +size 206074 diff --git a/data/rug_cup/test/r_176.png b/data/rug_cup/test/r_176.png new file mode 100644 index 0000000000000000000000000000000000000000..7ceaafc3c0cca272fe16dd26865ed8a5e8f3fd3d --- /dev/null +++ b/data/rug_cup/test/r_176.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80245cd77ba93c6173ce147a67d58180504b0a288d1e95ace16713f05020ac55 +size 206825 diff --git a/data/rug_cup/test/r_176_depth_0001.png b/data/rug_cup/test/r_176_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..bf2e2d79096ca13f3ddce9d535b784369e26a102 --- /dev/null +++ b/data/rug_cup/test/r_176_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c04c116d323fe8d0351278095081936c37ee627ff66f4f8967e566f795fbfc0a +size 21158 diff --git a/data/rug_cup/test/r_176_normal_0001.png b/data/rug_cup/test/r_176_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e0a5654e04ff0b51623d6d1184561dc8b89f98ab --- /dev/null +++ b/data/rug_cup/test/r_176_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7aeba118f80cdd554ba60cb4fa9aab52ee043cd936c6f3db71ad452ce8f227 +size 209958 diff --git a/data/rug_cup/test/r_177.png b/data/rug_cup/test/r_177.png new file mode 100644 index 0000000000000000000000000000000000000000..09c01f2be78ecdb515fe68a111b3aa18fca75c6b --- /dev/null +++ b/data/rug_cup/test/r_177.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a875134ec233253a79fd91bc7c5cadbc5b1162ea09dddd191e7cac2bba46eefc +size 211218 diff --git a/data/rug_cup/test/r_177_depth_0001.png b/data/rug_cup/test/r_177_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6b2c421cfd5411f39ede3ffbc0715e008dd723dc --- /dev/null +++ b/data/rug_cup/test/r_177_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91064dc77ec1a51205be17eb10293d2ee0c24a1445e46d3d5a7862aa0e058618 +size 21842 diff --git a/data/rug_cup/test/r_177_normal_0001.png b/data/rug_cup/test/r_177_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..10b1920dc39e69a0cb1cbdff2463cd6fa3754194 --- /dev/null +++ b/data/rug_cup/test/r_177_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3494f0f351be636193f36357724324b4c4687e0b060a76373b937afea666a8ed +size 217911 diff --git a/data/rug_cup/test/r_178.png b/data/rug_cup/test/r_178.png new file mode 100644 index 0000000000000000000000000000000000000000..eb0187d38240c18d444230721b83684dd1fcf347 --- /dev/null +++ b/data/rug_cup/test/r_178.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da26375b9899aead5728dc191e86c894c3f4e3faf5c8931f68f901f9818f94bb +size 217218 diff --git a/data/rug_cup/test/r_178_depth_0001.png b/data/rug_cup/test/r_178_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..51884852f30bfd2851afbcc9d0457cef1346a137 --- /dev/null +++ b/data/rug_cup/test/r_178_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:302e8e91aa2936ced82cd3b8438e19909fc9091be27c7de504c2b0e9bcafcbce +size 22307 diff --git a/data/rug_cup/test/r_178_normal_0001.png b/data/rug_cup/test/r_178_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..48d76b6e00a9e888339026bd5f3441e128f82240 --- /dev/null +++ b/data/rug_cup/test/r_178_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74728039b5e10dfa60b5a1faecae75c27485599a2becc9d6eb04e2a1ca8a87d +size 221305 diff --git a/data/rug_cup/test/r_179.png b/data/rug_cup/test/r_179.png new file mode 100644 index 0000000000000000000000000000000000000000..feb56336d8b6c5a9e975f85d25604546e82c13bf --- /dev/null +++ b/data/rug_cup/test/r_179.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21bc524c28d42ad77229fc7373f979e5ada45b518b6dd61744e2f9c797b91c8 +size 221947 diff --git a/data/rug_cup/test/r_179_depth_0001.png b/data/rug_cup/test/r_179_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..bf00a5d072fe082a4ef6a372dc3c03ec494a7d85 --- /dev/null +++ b/data/rug_cup/test/r_179_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fcba0a4a21a8f9bdc7b5d68d8da63ebaab4fe716c4f20eddfb67c5fe33df1c3 +size 22785 diff --git a/data/rug_cup/test/r_179_normal_0001.png b/data/rug_cup/test/r_179_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5381cabe91c60e7ebebbaf21f8609b8c93e03b18 --- /dev/null +++ b/data/rug_cup/test/r_179_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca8b9ac9dec946c2c8a6491c3f1eea2a1162f82a18c43b3d80fb285fa3ef0ea0 +size 219780 diff --git a/data/rug_cup/test/r_17_depth_0001.png b/data/rug_cup/test/r_17_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..823b731c8dc8a868ea8088e4c11d7fbbc144ffce --- /dev/null +++ b/data/rug_cup/test/r_17_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aeba2f4551ca8816c2f0336ef9289ce1e41875d9a2ec6e6054df930cf4fb903 +size 23556 diff --git a/data/rug_cup/test/r_17_normal_0001.png b/data/rug_cup/test/r_17_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..66d46a0adf2f4d783ea9099927b6efdeb4883742 --- /dev/null +++ b/data/rug_cup/test/r_17_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92918862f92c42cd2e3341ceaf46cc5d5ced67e64490597672c7bad3c100513 +size 194433 diff --git a/data/rug_cup/test/r_18.png b/data/rug_cup/test/r_18.png new file mode 100644 index 0000000000000000000000000000000000000000..cd39919a8f270b5093d91a8ba080679b287e2aa1 --- /dev/null +++ b/data/rug_cup/test/r_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9345a9c4c6f881e5ee9cdd059b4a2ad7e24c13ebe1fc64110a8485a76f772ccf +size 231719 diff --git a/data/rug_cup/test/r_180.png b/data/rug_cup/test/r_180.png new file mode 100644 index 0000000000000000000000000000000000000000..1223d2c6c0b73b919f78fe8ee8361f1d55a75955 --- /dev/null +++ b/data/rug_cup/test/r_180.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a404e1ccc8823a879c5b4634c65ae84db5e2e49d27e28fa3e546257d290ac4f +size 225580 diff --git a/data/rug_cup/test/r_180_depth_0001.png b/data/rug_cup/test/r_180_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ae30b5e754470f6b64763eaf9e5f157a7f8773a0 --- /dev/null +++ b/data/rug_cup/test/r_180_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a726e55f00ebe24776c1d65aca533935c9140556a4a341c7ec1498897206f4bc +size 23216 diff --git a/data/rug_cup/test/r_180_normal_0001.png b/data/rug_cup/test/r_180_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e3d0c7b9874622cb6f02d123f5c5fd6f9f8fb52f --- /dev/null +++ b/data/rug_cup/test/r_180_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d64cbf3fa2d75fa47e3f8b7298245e61ed1cc5acee982316d651ece526251dd3 +size 210083 diff --git a/data/rug_cup/test/r_181.png b/data/rug_cup/test/r_181.png new file mode 100644 index 0000000000000000000000000000000000000000..b7ccbee1ab4e6e5c1f19582900302c60a6b1f460 --- /dev/null +++ b/data/rug_cup/test/r_181.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f302ad5955d7736db62b94c3a7372d69d015fe4de92b6581fe1bf9dbe2bb04f +size 228836 diff --git a/data/rug_cup/test/r_181_depth_0001.png b/data/rug_cup/test/r_181_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..eb55128c4f9d548539338d33b4e815592bcce9a7 --- /dev/null +++ b/data/rug_cup/test/r_181_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a08f0c563f9305c0d4eddf95b4f25b07402f230626a14824a8e92444a1e18d +size 23571 diff --git a/data/rug_cup/test/r_181_normal_0001.png b/data/rug_cup/test/r_181_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4c5c3a8b70212aae9b88a351df62229f26bcfe50 --- /dev/null +++ b/data/rug_cup/test/r_181_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d65ce2dc36c49e6a8c44553b1f3075639b471d86e6bca49cec65905a2eaa0b8 +size 203576 diff --git a/data/rug_cup/test/r_182.png b/data/rug_cup/test/r_182.png new file mode 100644 index 0000000000000000000000000000000000000000..ecee38e27ec90f9416eebbd4ad372ae2489c310d --- /dev/null +++ b/data/rug_cup/test/r_182.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f52f855633ffba1135c16e3983a33a7187b6f3485226acc9980362e779bb5e +size 231096 diff --git a/data/rug_cup/test/r_182_depth_0001.png b/data/rug_cup/test/r_182_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a2172ccc1be3c95233e520579b03373af4a510f3 --- /dev/null +++ b/data/rug_cup/test/r_182_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec7aacf68a41b2eda59b6663ec96e07b5993cd6a2eea34cde21033982f0306c +size 23588 diff --git a/data/rug_cup/test/r_182_normal_0001.png b/data/rug_cup/test/r_182_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..3d7b801f62c3bebd41eae7b5641d383a65eb9222 --- /dev/null +++ b/data/rug_cup/test/r_182_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5888e92776df157da6ee828d20b7581a359c42345eeed7347dd937d7ba0b7291 +size 204484 diff --git a/data/rug_cup/test/r_183.png b/data/rug_cup/test/r_183.png new file mode 100644 index 0000000000000000000000000000000000000000..1460d6446b85d7f80cfea57fc205ba7c857686c7 --- /dev/null +++ b/data/rug_cup/test/r_183.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a76fecdc4986a6413977681b8faa9bdfe6e08eef9616ce739adb03395aa547ea +size 233465 diff --git a/data/rug_cup/test/r_183_depth_0001.png b/data/rug_cup/test/r_183_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..195f835a4a40d066a2ae7f2f33906b37e68d6f70 --- /dev/null +++ b/data/rug_cup/test/r_183_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81de2bcb7818cc610d0195b68696e4a0aa4b02aed79a635b6546d9ab719482d3 +size 23658 diff --git a/data/rug_cup/test/r_183_normal_0001.png b/data/rug_cup/test/r_183_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d5c2a6c7ebacce9c5753062606a58b004dcf9ea8 --- /dev/null +++ b/data/rug_cup/test/r_183_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7cbdccdb2a56fab5cf145d0df759db27f09e5305a572534e5e7b58148ddde73 +size 206513 diff --git a/data/rug_cup/test/r_184.png b/data/rug_cup/test/r_184.png new file mode 100644 index 0000000000000000000000000000000000000000..06e7261285b79d42d753dd88f3399d3ed2e9eb64 --- /dev/null +++ b/data/rug_cup/test/r_184.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77146e471e467484d19a837cd7bea23768b9165e1e944ec7965bacefb7c2602d +size 235211 diff --git a/data/rug_cup/test/r_184_depth_0001.png b/data/rug_cup/test/r_184_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f692ff4a93c6e8efb36336e31f4183aff8a09849 --- /dev/null +++ b/data/rug_cup/test/r_184_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:322c0cece7a657d8385a17760cf74076c895bb8dd1cdca415fc0815dd3bf9df5 +size 24012 diff --git a/data/rug_cup/test/r_184_normal_0001.png b/data/rug_cup/test/r_184_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d2d574bf095fe52c2b3be43ff196d0b42fc0f8 --- /dev/null +++ b/data/rug_cup/test/r_184_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a542814b3f79e2e7f4167af0b2532e71a66bbba993d68c37755a5860a6c61a74 +size 208367 diff --git a/data/rug_cup/test/r_185.png b/data/rug_cup/test/r_185.png new file mode 100644 index 0000000000000000000000000000000000000000..31330f5fe3e4506343adcb11a146508b0bc2f5bc --- /dev/null +++ b/data/rug_cup/test/r_185.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476aab2d62931386835cf0ff6b1c96408f7e69d0a54f1b1a4cd39a3969647742 +size 237099 diff --git a/data/rug_cup/test/r_185_depth_0001.png b/data/rug_cup/test/r_185_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..651ce7c04f4b928d450bcc82fcbd529f4ba727a1 --- /dev/null +++ b/data/rug_cup/test/r_185_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d77107185c753491307ef4ebc6c0c4e1e3a5b9e3fd10f3d543bf6992fd330e +size 24069 diff --git a/data/rug_cup/test/r_185_normal_0001.png b/data/rug_cup/test/r_185_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..14dbf52102446ceb535d380c6a9ee6b954129a09 --- /dev/null +++ b/data/rug_cup/test/r_185_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b6d907cd1f6e1a5aa103eb261f6ba8f014b8fbd205c6d56c3e939d52e96d90 +size 209555 diff --git a/data/rug_cup/test/r_186.png b/data/rug_cup/test/r_186.png new file mode 100644 index 0000000000000000000000000000000000000000..abbe6bf0a414c63f45b340a31b71cb564cb20ad2 --- /dev/null +++ b/data/rug_cup/test/r_186.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5d99a459a51505518678c78cb9f99e18c732cded4faafc962a23b3074a35e7 +size 239253 diff --git a/data/rug_cup/test/r_186_depth_0001.png b/data/rug_cup/test/r_186_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b3c6a40c88b76ef919a3380ceee02c3ede7f5b45 --- /dev/null +++ b/data/rug_cup/test/r_186_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d879005f2955d85f618f219950e7d1b4533f1a6c48df9da82f48eaf02f6b3f0c +size 24179 diff --git a/data/rug_cup/test/r_186_normal_0001.png b/data/rug_cup/test/r_186_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8fd664ad7e72fca9c9dfe952768dd2a33fd84f53 --- /dev/null +++ b/data/rug_cup/test/r_186_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f0f4c5a444d5b9e4717da73200c9d38e8d4cccb4df9b986c0fb167ce0d93c1 +size 211719 diff --git a/data/rug_cup/test/r_187.png b/data/rug_cup/test/r_187.png new file mode 100644 index 0000000000000000000000000000000000000000..9206c4c9742ba327d085f69394d46c241f653e58 --- /dev/null +++ b/data/rug_cup/test/r_187.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4854fe3fac7c145192a9b2086aeba688be2175f8544c5549825c838707e383 +size 241563 diff --git a/data/rug_cup/test/r_187_depth_0001.png b/data/rug_cup/test/r_187_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..776c839f0d9cd8fa386fcfe31f8e5c5714257202 --- /dev/null +++ b/data/rug_cup/test/r_187_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:391ddc71fa1479fbb3e3df1f4ada1132541c31909cacd001320823eefd0ac04e +size 24237 diff --git a/data/rug_cup/test/r_187_normal_0001.png b/data/rug_cup/test/r_187_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..07a5cf6e58b59ed7aa8e3cb7f1bdfc1edb643116 --- /dev/null +++ b/data/rug_cup/test/r_187_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018fff609192dc86d0a540ba2ebe1cd0386a227f69b2f067e99c69e87f25e573 +size 217224 diff --git a/data/rug_cup/test/r_188.png b/data/rug_cup/test/r_188.png new file mode 100644 index 0000000000000000000000000000000000000000..39a18c8f451c4cd93df84393d3a37a2a0e96e04b --- /dev/null +++ b/data/rug_cup/test/r_188.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7474e03bd2de33480fed6d9d2a45ebe3f26e455faa53b534243405bf74868a69 +size 242758 diff --git a/data/rug_cup/test/r_188_depth_0001.png b/data/rug_cup/test/r_188_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..13855a411d990015078567b6f148025bae84bdcf --- /dev/null +++ b/data/rug_cup/test/r_188_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7455ba8fd75ca89371ffe1e3572dac757b75ccb2b71e38069ab5066dd8bd9e6 +size 24388 diff --git a/data/rug_cup/test/r_188_normal_0001.png b/data/rug_cup/test/r_188_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..09cb45260a91a4ae0e062f2dc254687818c9620b --- /dev/null +++ b/data/rug_cup/test/r_188_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26aa1317513eea4984777585d64d8a5461c7d4ad42e67a00afe0d5f4a5dc2cd1 +size 223609 diff --git a/data/rug_cup/test/r_189.png b/data/rug_cup/test/r_189.png new file mode 100644 index 0000000000000000000000000000000000000000..b8d8ba0c3eef5694f75c8e0190baca4b3c44a7cc --- /dev/null +++ b/data/rug_cup/test/r_189.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89da9ef3c292fdaed00748e218e8619e85366ad655eeeaa18cbe2defb57d41a +size 244938 diff --git a/data/rug_cup/test/r_189_depth_0001.png b/data/rug_cup/test/r_189_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..32286baf0ba5de430adfd3a8a60ade3a328e491d --- /dev/null +++ b/data/rug_cup/test/r_189_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17210395463f7c3c6ff22fac3254371358a19e5febb64036a84b5cab1935a77a +size 24400 diff --git a/data/rug_cup/test/r_189_normal_0001.png b/data/rug_cup/test/r_189_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d10d03ca95a791587bae6804723dd62351550976 --- /dev/null +++ b/data/rug_cup/test/r_189_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def95b2c871a8e8deed1183ef530f15b291a689c74340a1db09ad5b24380afad +size 232040 diff --git a/data/rug_cup/test/r_18_depth_0001.png b/data/rug_cup/test/r_18_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..bb5c51a0f590e5d50ed2957316a2d2ab9f426ee1 --- /dev/null +++ b/data/rug_cup/test/r_18_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7746c177af619dc18df01d8ca3e0df318583d01e5ce4ac68f6f097d99ea26de +size 23399 diff --git a/data/rug_cup/test/r_18_normal_0001.png b/data/rug_cup/test/r_18_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f3173b0f3ab73b0ec2220668ff1bc524997e59be --- /dev/null +++ b/data/rug_cup/test/r_18_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6cdcb35b6a69dfd444bf965f19db3807803629c2688d70b4383f74a49b3570 +size 191760 diff --git a/data/rug_cup/test/r_19.png b/data/rug_cup/test/r_19.png new file mode 100644 index 0000000000000000000000000000000000000000..d07ca8021c0df6950768f84c28684640e100d68c --- /dev/null +++ b/data/rug_cup/test/r_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6acad86ed0bc73a3b823f919a082581b7f2b6b1129bfde48d3607315cfd007d +size 229146 diff --git a/data/rug_cup/test/r_190.png b/data/rug_cup/test/r_190.png new file mode 100644 index 0000000000000000000000000000000000000000..8cc132232602415a6596172d03af6743084876d9 --- /dev/null +++ b/data/rug_cup/test/r_190.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa14ac3b81713fa7dda15689d7ee3b95566e5fdf51aa94ec775b775842dd1a5 +size 246852 diff --git a/data/rug_cup/test/r_190_depth_0001.png b/data/rug_cup/test/r_190_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..33f9f905496ee0634c8c9d8c2aea657dfbe000c9 --- /dev/null +++ b/data/rug_cup/test/r_190_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d2d251561c95f6ffdfef4dfd04889f07ee81d94c28a5bec8813c9330a393c8 +size 24301 diff --git a/data/rug_cup/test/r_190_normal_0001.png b/data/rug_cup/test/r_190_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8c4d4c017efe2de3b7cf9c03f2a82d3ecec30455 --- /dev/null +++ b/data/rug_cup/test/r_190_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a487bdd16464525c83ce01b2eda9a5527a2aa22770215752f4cbdd4c3feb0a75 +size 245178 diff --git a/data/rug_cup/test/r_191.png b/data/rug_cup/test/r_191.png new file mode 100644 index 0000000000000000000000000000000000000000..014822eeab3361a3e1d71e29f0ac71529a3f33e1 --- /dev/null +++ b/data/rug_cup/test/r_191.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284cbe41e27b4647351c8995cae269059f2b2586b622bfb554461423d8579ff2 +size 249795 diff --git a/data/rug_cup/test/r_191_depth_0001.png b/data/rug_cup/test/r_191_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..519c268968c4d7d0c6c032bf5e49a77da59587ea --- /dev/null +++ b/data/rug_cup/test/r_191_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b682c9f0a128b09fee128cc8221a6049bee9de81c3a6e5ae187fd30d5030257 +size 24597 diff --git a/data/rug_cup/test/r_191_normal_0001.png b/data/rug_cup/test/r_191_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..275caf705610b0f05e035015ad6d8e9582d221e1 --- /dev/null +++ b/data/rug_cup/test/r_191_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7423d00dc1b1a29fd8de949d428f67b3aa282f8a6cd54f5a77d2b6a1c2d435 +size 257209 diff --git a/data/rug_cup/test/r_192.png b/data/rug_cup/test/r_192.png new file mode 100644 index 0000000000000000000000000000000000000000..6cbc0e8668ec17b64e58352e9646efc9d4399a87 --- /dev/null +++ b/data/rug_cup/test/r_192.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b80b4e2468a9239142bf530c2e9c31bd556b9837f5b43be70fa7554a82ea10 +size 251041 diff --git a/data/rug_cup/test/r_192_depth_0001.png b/data/rug_cup/test/r_192_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e27612f91eb4f8c067fb129b458bc29abeaf8e31 --- /dev/null +++ b/data/rug_cup/test/r_192_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a1b7dce7b930b3edd7b4fb7cf8d240cd8f2d95afc03da65a614d4c911c4f7f2 +size 24456 diff --git a/data/rug_cup/test/r_192_normal_0001.png b/data/rug_cup/test/r_192_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ff109f9573ee65c8b98387a57788fa0c8043fbb0 --- /dev/null +++ b/data/rug_cup/test/r_192_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea5e8c6f346f247c6895821d134e3aee0451f3094acf76adac960aed2c042b6 +size 261030 diff --git a/data/rug_cup/test/r_193.png b/data/rug_cup/test/r_193.png new file mode 100644 index 0000000000000000000000000000000000000000..faf7cf8f2a30cc40243845d11c2b297d478a083e --- /dev/null +++ b/data/rug_cup/test/r_193.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cabbfab038098a87a93be4c335a337b6db3afe1717cb01e5b1b05f6cd910b3f +size 252125 diff --git a/data/rug_cup/test/r_193_depth_0001.png b/data/rug_cup/test/r_193_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d3a9fde4c3372534f939e83669776c137d019641 --- /dev/null +++ b/data/rug_cup/test/r_193_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6286f870ab1bae4035d4bf59523b188d69f0461f669979dd969012fe95ea9f +size 24430 diff --git a/data/rug_cup/test/r_193_normal_0001.png b/data/rug_cup/test/r_193_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a89d54eefd43136f5b05a13959f95c3a73a54676 --- /dev/null +++ b/data/rug_cup/test/r_193_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e056bfce36a6e287657460613ba6a2f8f77d34a4dc325d292f08681358779ff3 +size 261060 diff --git a/data/rug_cup/test/r_194.png b/data/rug_cup/test/r_194.png new file mode 100644 index 0000000000000000000000000000000000000000..5dfe6a44a54c9cf0982a8fd890c12e27a4ca1a70 --- /dev/null +++ b/data/rug_cup/test/r_194.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e62b04b1c257d1e630dfa55d9074aca11012d9bc4f8f6a526077281fc3fc4a +size 252780 diff --git a/data/rug_cup/test/r_194_depth_0001.png b/data/rug_cup/test/r_194_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6bd6542593bb351bfb7b466e19e94ac80bedcf --- /dev/null +++ b/data/rug_cup/test/r_194_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b5c5043d248719c8941c28aeb1421068d5ddbff8246a009b0149305ab29da6 +size 24167 diff --git a/data/rug_cup/test/r_194_normal_0001.png b/data/rug_cup/test/r_194_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..50f89795063add607c60f9df05170f29d84c57de --- /dev/null +++ b/data/rug_cup/test/r_194_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f207f520ffde228e428d06e9ce0632a84e8f8dfe77328d6079b07b4af417d4 +size 260701 diff --git a/data/rug_cup/test/r_195.png b/data/rug_cup/test/r_195.png new file mode 100644 index 0000000000000000000000000000000000000000..b278bb299ca50306e58b34754a689ed093841334 --- /dev/null +++ b/data/rug_cup/test/r_195.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcd75975d995e7eace2c1ec7daa008fb758a6c56b8c8381a555d1d4d29f8cc2 +size 252970 diff --git a/data/rug_cup/test/r_195_depth_0001.png b/data/rug_cup/test/r_195_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..1d6fac6b7b33a4fb177d1b2fe84711a478c24dca --- /dev/null +++ b/data/rug_cup/test/r_195_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33cb8d1fd7e86497df7676170701c545d0f4d31628b9ecfd7d827e6795db1664 +size 24046 diff --git a/data/rug_cup/test/r_195_normal_0001.png b/data/rug_cup/test/r_195_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a95e74a3be7cfec5bf816c6003152c00ab1062d7 --- /dev/null +++ b/data/rug_cup/test/r_195_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a631705aaec40cf67aa408ae19ec13f0e52b2b60af7c08d7f1116a285df4c8d +size 259683 diff --git a/data/rug_cup/test/r_196.png b/data/rug_cup/test/r_196.png new file mode 100644 index 0000000000000000000000000000000000000000..722988fb9579ebae4186084b28fbf4a5c45799ad --- /dev/null +++ b/data/rug_cup/test/r_196.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1d9de5351ca0562c57d6f21c8ee91b6304d1e76abb22c5a1cec67b64f3b129 +size 252578 diff --git a/data/rug_cup/test/r_196_depth_0001.png b/data/rug_cup/test/r_196_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d412b363def06276ba631e91e06067d8dce1cd70 --- /dev/null +++ b/data/rug_cup/test/r_196_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc708dad3dcd176758d4e0cbef98adecc21d07c81d0a52dc76650abab19f936 +size 23826 diff --git a/data/rug_cup/test/r_196_normal_0001.png b/data/rug_cup/test/r_196_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d8e0e597fe335cd957a5c8783e7e6079482572b4 --- /dev/null +++ b/data/rug_cup/test/r_196_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0a1c5493ec1572cfe2c38daa0ee533ba0960181e0c0d0e337d7eeb3af68897 +size 258743 diff --git a/data/rug_cup/test/r_197.png b/data/rug_cup/test/r_197.png new file mode 100644 index 0000000000000000000000000000000000000000..19f800afad2bc7402d2895c8c2de3f79478483b8 --- /dev/null +++ b/data/rug_cup/test/r_197.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec6a01c8b50fc0f18c8ff3fa6217696452719d8477564989b35fa8ca7d16a3e +size 251882 diff --git a/data/rug_cup/test/r_197_depth_0001.png b/data/rug_cup/test/r_197_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..91e3b34572ff5a551c9055f091172636fccf4ecb --- /dev/null +++ b/data/rug_cup/test/r_197_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77968b9bd2428b73956016fc62d08c7e4f17291aede769ef7d4a70d77a4ef298 +size 23450 diff --git a/data/rug_cup/test/r_197_normal_0001.png b/data/rug_cup/test/r_197_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6931c2abe7409e77f43cba1ceaf70541b887d17c --- /dev/null +++ b/data/rug_cup/test/r_197_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a366a5cb07f3f513eced7a864d1f6f9355e80b1b60e7d8868b8cc70a7f40c741 +size 257874 diff --git a/data/rug_cup/test/r_198.png b/data/rug_cup/test/r_198.png new file mode 100644 index 0000000000000000000000000000000000000000..076767d4f00b6245ffa79e5d4333da47f151333f --- /dev/null +++ b/data/rug_cup/test/r_198.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1564f81776df3afdafb439b112f773f61e550b5abbfdf26803bb7d252c2bb333 +size 251320 diff --git a/data/rug_cup/test/r_198_depth_0001.png b/data/rug_cup/test/r_198_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..13d0d2dbe630e2f5d39e0e08f1d47156cdccf080 --- /dev/null +++ b/data/rug_cup/test/r_198_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c15d7e03fa8d6f91278279cef624e846c6c8ffedc3c8814109f7c03e0353a55 +size 23043 diff --git a/data/rug_cup/test/r_198_normal_0001.png b/data/rug_cup/test/r_198_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c28b7f189a7ebe9f363cb9fe4a12f0ab21148e3f --- /dev/null +++ b/data/rug_cup/test/r_198_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6785f73b82e201900a2ff51e9278c0469e60d768c9c18eb9a7e25cf6337aac5 +size 257048 diff --git a/data/rug_cup/test/r_199.png b/data/rug_cup/test/r_199.png new file mode 100644 index 0000000000000000000000000000000000000000..b57e683c51504da5f874e6746ea732941812874a --- /dev/null +++ b/data/rug_cup/test/r_199.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2bd23cf7255fa2c77b954950cbf5db1cbec11975674ae945c1c91c6a129ac5 +size 250530 diff --git a/data/rug_cup/test/r_199_depth_0001.png b/data/rug_cup/test/r_199_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..0c9c030ca6ad207311b6a437d0aa5d88bbe3e5f6 --- /dev/null +++ b/data/rug_cup/test/r_199_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ae7e67158022d02645e6ef44cb3200ce056f68b9e8f125f0f8468c81c2ea5a +size 22693 diff --git a/data/rug_cup/test/r_199_normal_0001.png b/data/rug_cup/test/r_199_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..fbb0b14f8b96d5b32571e2e8f0450f9855d709d3 --- /dev/null +++ b/data/rug_cup/test/r_199_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c63045775f482c9ea047a985cc00b35835b50778f3bd3304d5784dcde58c164e +size 255944 diff --git a/data/rug_cup/test/r_19_depth_0001.png b/data/rug_cup/test/r_19_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..63c2712b24845dc3b7ad9aca2a7e20412d16b73a --- /dev/null +++ b/data/rug_cup/test/r_19_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff03705b7de7bd7597694acb6108fde95676965204e45330ee44fbb6d421583 +size 23130 diff --git a/data/rug_cup/test/r_19_normal_0001.png b/data/rug_cup/test/r_19_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6ee1ca3e8cefb9edff1444f802fe8d11f50c8059 --- /dev/null +++ b/data/rug_cup/test/r_19_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cb3462a3a44c880fb35e015df2c6d01211fe0a5e671de224a2cee3e272f152 +size 191677 diff --git a/data/rug_cup/test/r_1_depth_0001.png b/data/rug_cup/test/r_1_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..90bf6c5f486d001b69b070d56dd97924de32c7ba --- /dev/null +++ b/data/rug_cup/test/r_1_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b21f8a7b5091b45314ddf3b90fe80ecaba0e953981e8a65ca04ede0fbc2ed391 +size 22632 diff --git a/data/rug_cup/test/r_1_normal_0001.png b/data/rug_cup/test/r_1_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b6392076d9a854bbbeecaf12f02824f512ca03ff --- /dev/null +++ b/data/rug_cup/test/r_1_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035892e5577f833e0a93acdf73194b1417bd73d1a2df981c4eef832cc0876d6a +size 256932 diff --git a/data/rug_cup/test/r_2.png b/data/rug_cup/test/r_2.png new file mode 100644 index 0000000000000000000000000000000000000000..e72a2239d9e6cd8e4289dde296e1e793d8ec045b --- /dev/null +++ b/data/rug_cup/test/r_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c5c76a1fcfb742c7ba62b6047d7536290853e521d1dc9a42943d91ad40b225 +size 254846 diff --git a/data/rug_cup/test/r_20.png b/data/rug_cup/test/r_20.png new file mode 100644 index 0000000000000000000000000000000000000000..c4a9f14b7f3be695e4ab1488c11e6f40b6c1a9f3 --- /dev/null +++ b/data/rug_cup/test/r_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b28c5d604dd26885f68a9f9ac34389c29d22ff2e5ea7f1f4f2d9cb0dd898a178 +size 225421 diff --git a/data/rug_cup/test/r_20_depth_0001.png b/data/rug_cup/test/r_20_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..98373c8176ce8d14ac0b58bfb503cc7e7be68327 --- /dev/null +++ b/data/rug_cup/test/r_20_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b714b3dc534766d92e07dcc13822a0ce64de6bae4b606829c546824a9a67412 +size 22726 diff --git a/data/rug_cup/test/r_20_normal_0001.png b/data/rug_cup/test/r_20_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..797d40dafcd9e57e952e16191ee0de7a11ab9067 --- /dev/null +++ b/data/rug_cup/test/r_20_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684e59606a7dc935366689aea2a2ac8d47383eea5d6e08036c46c67d36ab1362 +size 200384 diff --git a/data/rug_cup/test/r_21.png b/data/rug_cup/test/r_21.png new file mode 100644 index 0000000000000000000000000000000000000000..c9983738fda922cdb18a649884fbcac2f835931c --- /dev/null +++ b/data/rug_cup/test/r_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f497b26eb1e9be360ad975e22904c97d2a50f7a39d2d7da8df621533c052e2 +size 221048 diff --git a/data/rug_cup/test/r_21_depth_0001.png b/data/rug_cup/test/r_21_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8dac42069affc49a3ff801ccbc394f165cff93b5 --- /dev/null +++ b/data/rug_cup/test/r_21_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516ee8afc9717e3286a1fe6f8e8ce5dedb319e8834454bd3a817c996f67f5dbf +size 22241 diff --git a/data/rug_cup/test/r_21_normal_0001.png b/data/rug_cup/test/r_21_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..cbd7b2f19c577dd36b93d9b63c451efebb2d91cf --- /dev/null +++ b/data/rug_cup/test/r_21_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fb24e93283449debcbc3642551413a69e87dd6b8f9115c6c145f7795da36c4 +size 209519 diff --git a/data/rug_cup/test/r_22.png b/data/rug_cup/test/r_22.png new file mode 100644 index 0000000000000000000000000000000000000000..129a265c7b9776d150148ffd3b310cf31fd07024 --- /dev/null +++ b/data/rug_cup/test/r_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de67bd8e7e97406f80a2e68b355c74f52d5af3314640c14af08b9935601fe322 +size 217578 diff --git a/data/rug_cup/test/r_22_depth_0001.png b/data/rug_cup/test/r_22_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..29096480d21a27e045a7b96bcc18167ed2d2f647 --- /dev/null +++ b/data/rug_cup/test/r_22_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28697b28e7df0dfebee1eb9a09b6086b9ada40dd05bffec1958dbf9ea463c72 +size 21737 diff --git a/data/rug_cup/test/r_22_normal_0001.png b/data/rug_cup/test/r_22_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..66d326fb812742826fefc6c69dde710d022a58da --- /dev/null +++ b/data/rug_cup/test/r_22_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f372019c4287dc0fddbbcf555ac871a9c7f84fa203553aad6a818fda80bfd180 +size 213888 diff --git a/data/rug_cup/test/r_23.png b/data/rug_cup/test/r_23.png new file mode 100644 index 0000000000000000000000000000000000000000..a44ac6ff6ce61b817237e4013b99653b61d8c3d5 --- /dev/null +++ b/data/rug_cup/test/r_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fda0d03afd31abf8465b9fe35abe143e1df3100082813e3eea5d9ec2cea2ae6a +size 212466 diff --git a/data/rug_cup/test/r_23_depth_0001.png b/data/rug_cup/test/r_23_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..286445c9d9cfe25a5e5335ffb32f7e2bb329aecd --- /dev/null +++ b/data/rug_cup/test/r_23_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e73e9d7a4184ce50dcd7da51c0b4d7ae61dc94396462b12068f4b6f96fe10f +size 21280 diff --git a/data/rug_cup/test/r_23_normal_0001.png b/data/rug_cup/test/r_23_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b4c375b1559ca3520bea41b710af0c9e3d71cd16 --- /dev/null +++ b/data/rug_cup/test/r_23_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abe9b0773cc71a6a62366806c4bb1c869d9cd88e387961b750a713977209d18 +size 207985 diff --git a/data/rug_cup/test/r_24.png b/data/rug_cup/test/r_24.png new file mode 100644 index 0000000000000000000000000000000000000000..2b77780592e633828f8d5c3aaf19c2a9ba132654 --- /dev/null +++ b/data/rug_cup/test/r_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3a1d6d9f6d90e1c0a55e05ce2b451f829c71813edceccf6d7ea5c24159958b +size 207662 diff --git a/data/rug_cup/test/r_24_depth_0001.png b/data/rug_cup/test/r_24_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..85dd48febbc5a12353c1937c13ac62540a3fd93a --- /dev/null +++ b/data/rug_cup/test/r_24_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21acc2450deaa034bf72bae5980ace63793a41bcbd00141a4620ae5ea822a921 +size 20698 diff --git a/data/rug_cup/test/r_24_normal_0001.png b/data/rug_cup/test/r_24_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..52f6378de17165a12cb84a9710cab08031b3f5e3 --- /dev/null +++ b/data/rug_cup/test/r_24_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58524ea6401acb1b8d45f8de64171e522933e40d27b2ea9841b183cfd82db985 +size 202290 diff --git a/data/rug_cup/test/r_25.png b/data/rug_cup/test/r_25.png new file mode 100644 index 0000000000000000000000000000000000000000..40341321b4783d090693d38b05c6497ca16647b9 --- /dev/null +++ b/data/rug_cup/test/r_25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a98f43f2fe5dee6e038809b3c69faa246cf927b343b1ad8caffc2fc722ae3a +size 200459 diff --git a/data/rug_cup/test/r_25_depth_0001.png b/data/rug_cup/test/r_25_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..49a6f8b380292a8a02c08c53ad1c70044623ac2e --- /dev/null +++ b/data/rug_cup/test/r_25_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed30b2f4ac26947e8741db58e1bc55c14c8a938bc85c683a50d1f4d234ae73b0 +size 19981 diff --git a/data/rug_cup/test/r_25_normal_0001.png b/data/rug_cup/test/r_25_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..cf65f1e0229c484110f359a3bd4b4ac73dfc9269 --- /dev/null +++ b/data/rug_cup/test/r_25_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8a43c516b48172a84e044ae4fd0f6a9a795880ea6dcebe61cd18dfb4e6900f +size 197455 diff --git a/data/rug_cup/test/r_26.png b/data/rug_cup/test/r_26.png new file mode 100644 index 0000000000000000000000000000000000000000..e0e48510100e8c1724cff37d18e7a068a192cb81 --- /dev/null +++ b/data/rug_cup/test/r_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66894d3310e7c26f64df914d1c04798d4bdfef53d20c6f804071586cfb8530c6 +size 202130 diff --git a/data/rug_cup/test/r_26_depth_0001.png b/data/rug_cup/test/r_26_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..87d8a7d02073e7e2478bc1cb6a24999249429a29 --- /dev/null +++ b/data/rug_cup/test/r_26_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a3142aec77df752b5ab5718b9486991ca75a8f409268c2dd322c2b8bc1b4643 +size 20612 diff --git a/data/rug_cup/test/r_26_normal_0001.png b/data/rug_cup/test/r_26_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b9be4145444e89fc72a69ea240c49ee93e3d446f --- /dev/null +++ b/data/rug_cup/test/r_26_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36fba25355f181ce3138222a368d5618e471ed9cd49a2077bbc8298e9bc7f74e +size 195745 diff --git a/data/rug_cup/test/r_27.png b/data/rug_cup/test/r_27.png new file mode 100644 index 0000000000000000000000000000000000000000..79a32025e0f22467541cc484d9d90915c121da97 --- /dev/null +++ b/data/rug_cup/test/r_27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383d792d92c9427c15f3ddd1b080046e3fd1d7a7a580e79dfa018dda1e3e283a +size 201412 diff --git a/data/rug_cup/test/r_27_depth_0001.png b/data/rug_cup/test/r_27_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d2b8352943907763134e0802499aaedddeb30417 --- /dev/null +++ b/data/rug_cup/test/r_27_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:410989fc59bda63e175221732743eb49b33f241ceb207c9bfb5ad46ae75f5dd8 +size 21185 diff --git a/data/rug_cup/test/r_27_normal_0001.png b/data/rug_cup/test/r_27_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..08c84c7f79d2af015ace735d3ad594441107210d --- /dev/null +++ b/data/rug_cup/test/r_27_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:706f21c78ba9ceb16a87adc00b8d55d66ffaa1130cd81b4df5e19cedd34557fa +size 194799 diff --git a/data/rug_cup/test/r_28.png b/data/rug_cup/test/r_28.png new file mode 100644 index 0000000000000000000000000000000000000000..b49e7f1e5e8c38b92c49f79025e337bf0f46da27 --- /dev/null +++ b/data/rug_cup/test/r_28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c588af3e781ab61ad733c625377ce4b9a7d30902d9798aa887214c996499ae0 +size 200997 diff --git a/data/rug_cup/test/r_28_depth_0001.png b/data/rug_cup/test/r_28_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..264e9178a0263dd524b0e870e88fdcd8df6a719e --- /dev/null +++ b/data/rug_cup/test/r_28_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06eb2b807d3b0a3e05913787441eb9d05f3a9e269ca74283816c211952b7ac06 +size 21658 diff --git a/data/rug_cup/test/r_28_normal_0001.png b/data/rug_cup/test/r_28_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..497458591e2a96d54dbc5b7a94eaa9d3b6ff8e37 --- /dev/null +++ b/data/rug_cup/test/r_28_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ffb3f79df4306979b21d713e64ba9a5856ccb7fb5ef152c5e49f91f23947ea +size 191865 diff --git a/data/rug_cup/test/r_29.png b/data/rug_cup/test/r_29.png new file mode 100644 index 0000000000000000000000000000000000000000..84fb2ce823c9120aac77e82a5ced8f4e35ebe9c7 --- /dev/null +++ b/data/rug_cup/test/r_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2362cfb5d59c89d1e537db9bf2e893d58029c41dd71c1c5c00477f9cbab9b86 +size 199429 diff --git a/data/rug_cup/test/r_29_depth_0001.png b/data/rug_cup/test/r_29_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f25d5193cbfed9f35e56ad14a8db518fb72e290f --- /dev/null +++ b/data/rug_cup/test/r_29_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678f117e51e94259226bb9125146baa1867b6ceaf1a3bef674aa7f7f71f42d53 +size 21998 diff --git a/data/rug_cup/test/r_29_normal_0001.png b/data/rug_cup/test/r_29_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..1783fb894328c1c68409a54b85e659cb06d5b5ed --- /dev/null +++ b/data/rug_cup/test/r_29_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:582285e2279d1d988a3f43e402e5ada0018ff19a09ef0b96fa723270f1a9f019 +size 181360 diff --git a/data/rug_cup/test/r_2_depth_0001.png b/data/rug_cup/test/r_2_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..51589c38d20dbbaf43692d0b767051500b2853b8 --- /dev/null +++ b/data/rug_cup/test/r_2_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c433a51ca87265c7c7658bf7e5ebdab4d14d2b5ff4e04a43cd908bbe62bc83 +size 23125 diff --git a/data/rug_cup/test/r_2_normal_0001.png b/data/rug_cup/test/r_2_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..38865a73b86fd379240961854519e6495262c304 --- /dev/null +++ b/data/rug_cup/test/r_2_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce906b2f014993472070eef245ef22e2d657da800db7f749882d0a9a67ba864 +size 258100 diff --git a/data/rug_cup/test/r_3.png b/data/rug_cup/test/r_3.png new file mode 100644 index 0000000000000000000000000000000000000000..4f9b7ebba2017f35be4422574d2601fa0dedf0b4 --- /dev/null +++ b/data/rug_cup/test/r_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ffa97aa49d093e00e17591f6625f260e3801dccf056e56432ebc95088cbf02e +size 255932 diff --git a/data/rug_cup/test/r_30.png b/data/rug_cup/test/r_30.png new file mode 100644 index 0000000000000000000000000000000000000000..685b82c46b1be45c6fbb105a48549642918c1561 --- /dev/null +++ b/data/rug_cup/test/r_30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54b014428142c99a4994c32febee97447a6b394b543cf99f9365f0baccab5141 +size 196633 diff --git a/data/rug_cup/test/r_30_depth_0001.png b/data/rug_cup/test/r_30_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..16b3aa2a466dd5ba5bb04ce5ea0b62a024e8df8e --- /dev/null +++ b/data/rug_cup/test/r_30_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414b98814fdc65e63faf97b4008e7f0153bc7a351542566c533338ac67dddfeb +size 22342 diff --git a/data/rug_cup/test/r_30_normal_0001.png b/data/rug_cup/test/r_30_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5bebb0eefbbfc145f96577536b6d2ce8ca510c34 --- /dev/null +++ b/data/rug_cup/test/r_30_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d7a772183ebb1773f5a2653db75647ac6cd2747d2ab9b4a32f412fd7655ee3 +size 161871 diff --git a/data/rug_cup/test/r_31.png b/data/rug_cup/test/r_31.png new file mode 100644 index 0000000000000000000000000000000000000000..da3a96f0c384dcdb487d7161285c6693a3bf5f1a --- /dev/null +++ b/data/rug_cup/test/r_31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c174404549bb7e25df034b486cfd81455fdf2262913b651f4c9208d825fe2bdd +size 192617 diff --git a/data/rug_cup/test/r_31_depth_0001.png b/data/rug_cup/test/r_31_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..239336c583f833cd15703966bfdfacb12aed683e --- /dev/null +++ b/data/rug_cup/test/r_31_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ac5cd398a9f1b5238fce49fbb8931557456d32c92ff8c55da1efc2daf337da +size 22522 diff --git a/data/rug_cup/test/r_31_normal_0001.png b/data/rug_cup/test/r_31_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..16f1a54dbad544e043dac93d027be13a2e0dc207 --- /dev/null +++ b/data/rug_cup/test/r_31_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c682dcbe21c15dbafe45bfd7f32a77fefd660d7a1c15dca28fd3018b9e8520d +size 155237 diff --git a/data/rug_cup/test/r_32.png b/data/rug_cup/test/r_32.png new file mode 100644 index 0000000000000000000000000000000000000000..c3aa4a85b26e41e4e33e4368cb9e57a5cc8fb679 --- /dev/null +++ b/data/rug_cup/test/r_32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a671cb509e13da4f8378a905dd5fb0073046047bd836b99570c23619ee574359 +size 189475 diff --git a/data/rug_cup/test/r_32_depth_0001.png b/data/rug_cup/test/r_32_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..944c82e3d7c0d9be35f6bd82721906bf6849bed4 --- /dev/null +++ b/data/rug_cup/test/r_32_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8f4aecedea3b55107b57830186b0f1c61f577a652c07a27015f337dd59ff0b +size 22582 diff --git a/data/rug_cup/test/r_32_normal_0001.png b/data/rug_cup/test/r_32_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..cde563c9e0936b98fab03efb86fcbb4cf41eac04 --- /dev/null +++ b/data/rug_cup/test/r_32_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1909aa7fc1e071ae0949b3ec0c8c5c0325995883857abd9f7a1f72559f048888 +size 151997 diff --git a/data/rug_cup/test/r_33.png b/data/rug_cup/test/r_33.png new file mode 100644 index 0000000000000000000000000000000000000000..31835b768f2a798ae990a33362ed853b00445ecc --- /dev/null +++ b/data/rug_cup/test/r_33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f851c96dc3d3f178928bba5544978dd2b4508ad7b498b329a99117f4678be8a +size 186092 diff --git a/data/rug_cup/test/r_33_depth_0001.png b/data/rug_cup/test/r_33_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4dacaa0e6d8e22cccefb2b9ede4fb77269a83b4a --- /dev/null +++ b/data/rug_cup/test/r_33_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c1cd826d066bba26ac1794926febdea1bf0c8d2504a138968bc0695a620a43 +size 22497 diff --git a/data/rug_cup/test/r_33_normal_0001.png b/data/rug_cup/test/r_33_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..44c54d86d893550cd4abd89a9b2d9cea2494165e --- /dev/null +++ b/data/rug_cup/test/r_33_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:105b32213ea2834aba644d4ada57535ee8939f130446dc120776a82108fd989d +size 148861 diff --git a/data/rug_cup/test/r_34.png b/data/rug_cup/test/r_34.png new file mode 100644 index 0000000000000000000000000000000000000000..4f3b836fb46a4804f97325bc1e2775344242ae42 --- /dev/null +++ b/data/rug_cup/test/r_34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d24db05b9bf5a859b662bf213e109975796b0677c865f07d2ce6827e8a0a22 +size 183350 diff --git a/data/rug_cup/test/r_34_depth_0001.png b/data/rug_cup/test/r_34_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ed154d00b288675e3c0172c16a5f2c2a802c4373 --- /dev/null +++ b/data/rug_cup/test/r_34_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aee3e2357c7603b6e3034f93520760dcb72d654df7611bc254675c7e09fd5adf +size 22535 diff --git a/data/rug_cup/test/r_34_normal_0001.png b/data/rug_cup/test/r_34_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..42394fa53e70bf2daf7b67892c4d887de2b2d7e2 --- /dev/null +++ b/data/rug_cup/test/r_34_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c9a5fecc399ca7c3b1bf6f0ead3c07ff9d8626ee2547574d38260fa37bb28aa +size 147290 diff --git a/data/rug_cup/test/r_35.png b/data/rug_cup/test/r_35.png new file mode 100644 index 0000000000000000000000000000000000000000..de1c1cf354266ed3e138772c7064f8f729cd2e33 --- /dev/null +++ b/data/rug_cup/test/r_35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc99376b0ec860ddf4cfa0bd4a2591831b79060d84892db0e8b8f2ecd6d0823a +size 180710 diff --git a/data/rug_cup/test/r_35_depth_0001.png b/data/rug_cup/test/r_35_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..fd96d2d1d135797f91622010b26ac6ce75f55987 --- /dev/null +++ b/data/rug_cup/test/r_35_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b02d80445d6f6e4e9162d60d9b1c932957c73866b0d17fe05940f83356f5ea7 +size 22574 diff --git a/data/rug_cup/test/r_35_normal_0001.png b/data/rug_cup/test/r_35_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7f86562eb944430e5e229e7ef4fbedeac1295a50 --- /dev/null +++ b/data/rug_cup/test/r_35_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48822c6ea46b8e8f9748242bdaafd6cfc91303edc99a9e1005bf17addc91ac53 +size 145314 diff --git a/data/rug_cup/test/r_36.png b/data/rug_cup/test/r_36.png new file mode 100644 index 0000000000000000000000000000000000000000..b7aba1f3b83e2ec7eda5abda927b225083bd9a3b --- /dev/null +++ b/data/rug_cup/test/r_36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66fa4c81a6e8817bd2039d4a1997b8330420f280c5f3cea05ed72f2fe4607eb +size 177803 diff --git a/data/rug_cup/test/r_36_depth_0001.png b/data/rug_cup/test/r_36_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a24e4ca5c6fb3286c4f95f770365030cefbdbe31 --- /dev/null +++ b/data/rug_cup/test/r_36_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c754875f4fb8560b725e1c09a8ffc6a5c80f49d3f9ce12f8665a9bb92485715 +size 22481 diff --git a/data/rug_cup/test/r_36_normal_0001.png b/data/rug_cup/test/r_36_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..91ea7d78b02a9a397d747b185c03877b35d998ef --- /dev/null +++ b/data/rug_cup/test/r_36_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4922d9320e4a78ca263170179a23129f91ef6203405eb0d5c7ab812d94727e9b +size 142450 diff --git a/data/rug_cup/test/r_37.png b/data/rug_cup/test/r_37.png new file mode 100644 index 0000000000000000000000000000000000000000..6b17928470be36a5655a134ade758304bfe773a9 --- /dev/null +++ b/data/rug_cup/test/r_37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec6cd65251c2d68096a60448a989a657a73828c2022d0be4985b32eefe81d3f +size 174747 diff --git a/data/rug_cup/test/r_37_depth_0001.png b/data/rug_cup/test/r_37_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..fd98c3388abd569fe447bc94bf40102c7ae250b8 --- /dev/null +++ b/data/rug_cup/test/r_37_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c7ae7a500bbdfe26ef83c595c272e2509bedb471435789a800abd0feba9b56 +size 22423 diff --git a/data/rug_cup/test/r_37_normal_0001.png b/data/rug_cup/test/r_37_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8ad39a5a230287b80c61b578089ef72facb4f51f --- /dev/null +++ b/data/rug_cup/test/r_37_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74e637f43e04850a03144b266caa923efc7e0adea8da36111f43bb7c678c96d +size 140470 diff --git a/data/rug_cup/test/r_38.png b/data/rug_cup/test/r_38.png new file mode 100644 index 0000000000000000000000000000000000000000..f7e3b8679003c9f2d0dbbac6e1f52f47cb2933b0 --- /dev/null +++ b/data/rug_cup/test/r_38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e91adbce90a64ba24cef3865b600e42d7d202f25334022f16fca38edc47e7a +size 171778 diff --git a/data/rug_cup/test/r_38_depth_0001.png b/data/rug_cup/test/r_38_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6fd07cd23019d073d2bd1f013d47334ed2a32897 --- /dev/null +++ b/data/rug_cup/test/r_38_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f33b52043396cf13b936228981540bd2484e1498c3abdf5ac56494eba4d38a +size 22395 diff --git a/data/rug_cup/test/r_38_normal_0001.png b/data/rug_cup/test/r_38_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b4b8fcc3670f5a522a90357425fbc39556383edd --- /dev/null +++ b/data/rug_cup/test/r_38_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad2fc3a27af8b203d07835934172325fb8ee8f0915e01c2efc2e4793e043300 +size 142670 diff --git a/data/rug_cup/test/r_39.png b/data/rug_cup/test/r_39.png new file mode 100644 index 0000000000000000000000000000000000000000..67f87fb9a4c53d3d945d79b336f0e2798f628097 --- /dev/null +++ b/data/rug_cup/test/r_39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e661edb9c561f9485eb88e918156b19fac4269fa2f5b8dcfddf57a66f41a5d2e +size 168377 diff --git a/data/rug_cup/test/r_39_depth_0001.png b/data/rug_cup/test/r_39_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..288f93328a3b9406130c03708e9929bcfc0d3403 --- /dev/null +++ b/data/rug_cup/test/r_39_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f8e35023416943304448d7a2ee4762bb6e1976e05001f2f4d8d50f825ccf1f2 +size 22342 diff --git a/data/rug_cup/test/r_39_normal_0001.png b/data/rug_cup/test/r_39_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f112a09a344ae08cbaf3a8d67eca392a490689a2 --- /dev/null +++ b/data/rug_cup/test/r_39_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6352484fa69c8a019a6de6c987d3c4300d388770aac44dbe7db63cc88c0354f3 +size 150568 diff --git a/data/rug_cup/test/r_3_depth_0001.png b/data/rug_cup/test/r_3_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..19df7b67702fe201eff81c5599b9192c18acf494 --- /dev/null +++ b/data/rug_cup/test/r_3_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea06b8256a819c9d3bb3fb61c1259f4e7e54d355a8cfdfaa6add74c565c7c853 +size 23591 diff --git a/data/rug_cup/test/r_3_normal_0001.png b/data/rug_cup/test/r_3_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a48714ae961c77fea95beb63c10b3e87a588a063 --- /dev/null +++ b/data/rug_cup/test/r_3_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499e2d11a4b45e3d05a94e869bbcdf9fed9c488b258be53816cea16770d58e6d +size 259951 diff --git a/data/rug_cup/test/r_4.png b/data/rug_cup/test/r_4.png new file mode 100644 index 0000000000000000000000000000000000000000..86ca26bb41c480e47e24306cef42a1e988b5b536 --- /dev/null +++ b/data/rug_cup/test/r_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ee5bd8ea24f44461fa1f1d92afe89ef9b08f02ac02184c4fd2fd58b45a618e0 +size 256004 diff --git a/data/rug_cup/test/r_40.png b/data/rug_cup/test/r_40.png new file mode 100644 index 0000000000000000000000000000000000000000..17464c6a403a59c1060f1de2935e4839d0f64649 --- /dev/null +++ b/data/rug_cup/test/r_40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6b04a0faca45fa18c9693bf22349e041694321242f3bbd842b92e0c7779fcc +size 165028 diff --git a/data/rug_cup/test/r_40_depth_0001.png b/data/rug_cup/test/r_40_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8a6ed14213b593ffac9daf8f32d0a86a7e1a1af8 --- /dev/null +++ b/data/rug_cup/test/r_40_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c88a73f49a5b52419cf4a426d341749479c8fa7e485887a1704eea6553d3bd +size 22183 diff --git a/data/rug_cup/test/r_40_normal_0001.png b/data/rug_cup/test/r_40_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..315026bf2b4648ac88b4412deba0652314f9fd46 --- /dev/null +++ b/data/rug_cup/test/r_40_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed6399a2add3006888f61e512998efb8cd13a84294da138eca81a22ce0ff373 +size 155370 diff --git a/data/rug_cup/test/r_41.png b/data/rug_cup/test/r_41.png new file mode 100644 index 0000000000000000000000000000000000000000..f9fba3954c05fa292409b621ebca7cf96a0847ee --- /dev/null +++ b/data/rug_cup/test/r_41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d0729c36fb7b7aa555dd19e710cd43873988f4d5455bcf498416d3b4760c3 +size 161179 diff --git a/data/rug_cup/test/r_41_depth_0001.png b/data/rug_cup/test/r_41_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c32348b6d942f6fe9fe28ed9a546cd4cb39b4fae --- /dev/null +++ b/data/rug_cup/test/r_41_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f99b00432e181c07e6abd015b0b6e36ad48011b36771fd59cf8ce9ad24f0cdc +size 22074 diff --git a/data/rug_cup/test/r_41_normal_0001.png b/data/rug_cup/test/r_41_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..aa77721594bedfa31079d578f7bf0f7cb4170ca0 --- /dev/null +++ b/data/rug_cup/test/r_41_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c3bc454127cb5906653011d27989b835d79b8240a85c1065d4bc605a0c8d447 +size 152482 diff --git a/data/rug_cup/test/r_42.png b/data/rug_cup/test/r_42.png new file mode 100644 index 0000000000000000000000000000000000000000..f46a77b5081f2c4ebce37393e3f58e61ed96be68 --- /dev/null +++ b/data/rug_cup/test/r_42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6804be3ff1787bc440912893107fc9b3510376849ffe1fae4dfbbf9a4de6c4 +size 158721 diff --git a/data/rug_cup/test/r_42_depth_0001.png b/data/rug_cup/test/r_42_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5ff6af9511fb55028fe29c187197cc219cf6f453 --- /dev/null +++ b/data/rug_cup/test/r_42_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74db8093a81127d64dca7793cbc44f22f37a87c862e9fab21242461ba103d2b +size 22165 diff --git a/data/rug_cup/test/r_42_normal_0001.png b/data/rug_cup/test/r_42_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..0495a17d2d63c02164e1b9f9bbbc4031ebf70e8a --- /dev/null +++ b/data/rug_cup/test/r_42_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7a999480059114517fedf8676813ffc21e8563b9d43971473510386a6bc0c91 +size 150537 diff --git a/data/rug_cup/test/r_43.png b/data/rug_cup/test/r_43.png new file mode 100644 index 0000000000000000000000000000000000000000..cb05e3627020c8ceddda6bd1159c21182893fb61 --- /dev/null +++ b/data/rug_cup/test/r_43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240db76c708b44ddaedfea585ba17f737fec8cdd84a9e330d703b6dc08aef0fb +size 155463 diff --git a/data/rug_cup/test/r_43_depth_0001.png b/data/rug_cup/test/r_43_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f0332027ae4665700ff607458e1b36752214eaea --- /dev/null +++ b/data/rug_cup/test/r_43_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a3b361710d23d42a05242b7e1b1c1a4a3ec9ac2eba4624d8dc0c6f77f3abc4f +size 21769 diff --git a/data/rug_cup/test/r_43_normal_0001.png b/data/rug_cup/test/r_43_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f1a8991854b6db244fd346e0aab92fd9270437df --- /dev/null +++ b/data/rug_cup/test/r_43_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3520f5725ab757704a07f5059a69152a15c20878be8ba9abd8ff48f2055f4862 +size 147331 diff --git a/data/rug_cup/test/r_44.png b/data/rug_cup/test/r_44.png new file mode 100644 index 0000000000000000000000000000000000000000..83f676873015b91e4c62f754095f7281ce215537 --- /dev/null +++ b/data/rug_cup/test/r_44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b5874b92ad70e9c643c2a99f019719ca9a0ca15e61a09f4513ac67f802f010 +size 151169 diff --git a/data/rug_cup/test/r_44_depth_0001.png b/data/rug_cup/test/r_44_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..0671cef871f6593f15f2f3d68f1d7663b9fbebec --- /dev/null +++ b/data/rug_cup/test/r_44_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf271d241b252bf8e69595f6642ad9ed3f8844149939dcb499113cd4d4884ae4 +size 21662 diff --git a/data/rug_cup/test/r_44_normal_0001.png b/data/rug_cup/test/r_44_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f357d542c0f695ccea5804543ae19eef3f8c7044 --- /dev/null +++ b/data/rug_cup/test/r_44_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ffe9c16a89423b13899b8b1e73565a11ba1722d6de060258630ee35dbc6edee +size 142844 diff --git a/data/rug_cup/test/r_45.png b/data/rug_cup/test/r_45.png new file mode 100644 index 0000000000000000000000000000000000000000..30791a812fe5805442f5823e6752d6d932b95b25 --- /dev/null +++ b/data/rug_cup/test/r_45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ec07a7f923d7ad9ba8015391b6d3e5cbddce69fe442d05c1eaabda9a2cfdf4a +size 146045 diff --git a/data/rug_cup/test/r_45_depth_0001.png b/data/rug_cup/test/r_45_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f6c5bebf6b4b2ec869913be80b51125a04cbed92 --- /dev/null +++ b/data/rug_cup/test/r_45_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1a527fd84a36ff077faa5f727c002a1e37a462c7ce72f6f11fe7de246446ff +size 21541 diff --git a/data/rug_cup/test/r_45_normal_0001.png b/data/rug_cup/test/r_45_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e9c0a50e59aacc83a8f30c059ae8a9417cf9eb40 --- /dev/null +++ b/data/rug_cup/test/r_45_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc0ae09dc0654f6a22e2220b30bea876be34b6b1c01e0caf017bc44a3bb57d6 +size 138643 diff --git a/data/rug_cup/test/r_46.png b/data/rug_cup/test/r_46.png new file mode 100644 index 0000000000000000000000000000000000000000..08fede4e3f63ad95e2fb87e75b2f32c68ddb2072 --- /dev/null +++ b/data/rug_cup/test/r_46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e18711498ab6706556deb0752e59a50ad1428dd0476f86f8eb13417ace232707 +size 141629 diff --git a/data/rug_cup/test/r_46_depth_0001.png b/data/rug_cup/test/r_46_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..87a27de07c407410bc48c9b888c1886855048db8 --- /dev/null +++ b/data/rug_cup/test/r_46_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d829ebe511188d421f9eaae7b321d4ffec3f0a235933ca64045c5fe1ad8271e +size 21287 diff --git a/data/rug_cup/test/r_46_normal_0001.png b/data/rug_cup/test/r_46_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5225409e4a0c9bd3f4d66e59b6e7cfcfe66912b9 --- /dev/null +++ b/data/rug_cup/test/r_46_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d09c31f7e882700c9a72e345664b7e9f760d1ccbff69c8483fbb917cbdd377 +size 134753 diff --git a/data/rug_cup/test/r_47.png b/data/rug_cup/test/r_47.png new file mode 100644 index 0000000000000000000000000000000000000000..4884b11b6d748d9f8772f978871fd87ec4aebe45 --- /dev/null +++ b/data/rug_cup/test/r_47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8bb084f2c622a0d12029ae05a8655373860276d367ef2ec87b21a865685529 +size 137153 diff --git a/data/rug_cup/test/r_47_depth_0001.png b/data/rug_cup/test/r_47_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..326f2c20b06f7a7aeba252e652ffe6b5cefeb54a --- /dev/null +++ b/data/rug_cup/test/r_47_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd581b161fdca76f54c18aa7c41c019273668454896259188fd4c9432020d48 +size 21184 diff --git a/data/rug_cup/test/r_47_normal_0001.png b/data/rug_cup/test/r_47_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5de9b59135f3eec8857b5edbdbe9f310d2c77653 --- /dev/null +++ b/data/rug_cup/test/r_47_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8032f96d96cc194f9cceaba30b1bbed3a5f7cbeab6ad189f85b72413341edb01 +size 132109 diff --git a/data/rug_cup/test/r_48.png b/data/rug_cup/test/r_48.png new file mode 100644 index 0000000000000000000000000000000000000000..e6ef58d52b6617bfdbc6db8e1af9ddd18bd28cac --- /dev/null +++ b/data/rug_cup/test/r_48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941ba2d34dae6763a92bb07660bcc1f6c52f6381a61b6f566026305e2436e707 +size 134112 diff --git a/data/rug_cup/test/r_48_depth_0001.png b/data/rug_cup/test/r_48_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5e6368c01fe0c11039e1ac7a9b2df1ebe71c4f0f --- /dev/null +++ b/data/rug_cup/test/r_48_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa34105bebd0a5a08b4ecda1446e9058a8d26527ee9da6d7f5e576f2b88fbc5 +size 20633 diff --git a/data/rug_cup/test/r_48_normal_0001.png b/data/rug_cup/test/r_48_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..9848f5b712379d9282674f715ba8d0dfec1aeba0 --- /dev/null +++ b/data/rug_cup/test/r_48_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e8e6e914333a661ccb583551d6c62d5aa3a19eda4af6d86a2b1aa6ba5facad0 +size 128350 diff --git a/data/rug_cup/test/r_49.png b/data/rug_cup/test/r_49.png new file mode 100644 index 0000000000000000000000000000000000000000..3c1f4510c31822ad7a44cf5344b13b90150d911a --- /dev/null +++ b/data/rug_cup/test/r_49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6841e08a608d3e581848ac34984c15077723e96931f680bdefc22f2c8f29c0aa +size 130714 diff --git a/data/rug_cup/test/r_49_depth_0001.png b/data/rug_cup/test/r_49_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2e08eb5d640666bbcdb037db7741c117c8202768 --- /dev/null +++ b/data/rug_cup/test/r_49_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb8d64f0de402ec4f322a598ca5e5cf4b36664a16c4a5875799a6aecc86739e8 +size 20813 diff --git a/data/rug_cup/test/r_49_normal_0001.png b/data/rug_cup/test/r_49_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5d4bd343be0bd6b8b75edf3bcf3d7cf2bab29fbc --- /dev/null +++ b/data/rug_cup/test/r_49_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd81a39969de9bd5d0bb098a0b2ba454f5c3a37fa4d8e6de28f3cda483a4b0e7 +size 124402 diff --git a/data/rug_cup/test/r_4_depth_0001.png b/data/rug_cup/test/r_4_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..49aa9ddc52e4f5312b724acef53bcb098fb8db4f --- /dev/null +++ b/data/rug_cup/test/r_4_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ad51cd67c1201c17d5056e986093cd40bf641cb9872c194b0ccd3ae420df28 +size 23924 diff --git a/data/rug_cup/test/r_4_normal_0001.png b/data/rug_cup/test/r_4_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..66595f8b620b07d82afc46695e4a2531e132c53c --- /dev/null +++ b/data/rug_cup/test/r_4_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa34d98d43a86aad8cc24bff72dfe1df93ad3b1e1972762a241a49cf5fdf11a +size 260192 diff --git a/data/rug_cup/test/r_5.png b/data/rug_cup/test/r_5.png new file mode 100644 index 0000000000000000000000000000000000000000..47148cdc34be0144232c6bbb663cdeace11569dc --- /dev/null +++ b/data/rug_cup/test/r_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02dc25bf4ff6085d7f901f717aa3a867672f3e8e0c95903110ef54cc1e57ddea +size 256284 diff --git a/data/rug_cup/test/r_50.png b/data/rug_cup/test/r_50.png new file mode 100644 index 0000000000000000000000000000000000000000..11b184f3a4cb7aecf4e1316f0c6d87896895cf43 --- /dev/null +++ b/data/rug_cup/test/r_50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42608a5c80c0b0d7146b8c851e1415481c747c9eff8622689dc8abcf942f96e +size 126851 diff --git a/data/rug_cup/test/r_50_depth_0001.png b/data/rug_cup/test/r_50_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..686b57b4ef42a8c0ade47cc423177229fa4649db --- /dev/null +++ b/data/rug_cup/test/r_50_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f6c23509220b2a3f378ef5b29497613597abdded2387d11773f61d95ee9513c +size 20146 diff --git a/data/rug_cup/test/r_50_normal_0001.png b/data/rug_cup/test/r_50_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a67208edabdda532f6b584b47c7abe3b9d14e06d --- /dev/null +++ b/data/rug_cup/test/r_50_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0da33101c3ac43a2b98a368f4591e400d8729b55a15e05edbeb2d39bbf5ce4a +size 121453 diff --git a/data/rug_cup/test/r_51.png b/data/rug_cup/test/r_51.png new file mode 100644 index 0000000000000000000000000000000000000000..7e1d1c2bf9e12d72fb084b2ef4822c031a556055 --- /dev/null +++ b/data/rug_cup/test/r_51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da29b1136b40538755746b1d688ab7dceef88d1f42953180dc8e0fae56331d41 +size 124044 diff --git a/data/rug_cup/test/r_51_depth_0001.png b/data/rug_cup/test/r_51_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7eac9c64d96a2b530d2e62815e5cd398654c302d --- /dev/null +++ b/data/rug_cup/test/r_51_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc554b5283547d67a77e9534e1967cb188e6d3533c154f9d457b4bdbbe198d3 +size 20233 diff --git a/data/rug_cup/test/r_51_normal_0001.png b/data/rug_cup/test/r_51_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..3870e25640e58542a1c1604cd7b993ca561bf67b --- /dev/null +++ b/data/rug_cup/test/r_51_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71602efe1d63db874b12fea81115495a2d34c276275aac956fdafcb3b0a39e49 +size 119312 diff --git a/data/rug_cup/test/r_52.png b/data/rug_cup/test/r_52.png new file mode 100644 index 0000000000000000000000000000000000000000..b709a1de661ec3c8d4af21879460f787f0a6d259 --- /dev/null +++ b/data/rug_cup/test/r_52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af40057c4598d44f89690c116978dd8cc712aadd7d2e712bc2a8dcd735ec3658 +size 121484 diff --git a/data/rug_cup/test/r_52_depth_0001.png b/data/rug_cup/test/r_52_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2f8af36c2a83b3a40f05d64c89f5018845bc5460 --- /dev/null +++ b/data/rug_cup/test/r_52_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb7264c10142803691ec626b444340d7979c59be0ca02b009a0482262ba0d3a +size 20461 diff --git a/data/rug_cup/test/r_52_normal_0001.png b/data/rug_cup/test/r_52_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4ad1bdfbdf5d3f886f179e193d97a5015ec3fc8b --- /dev/null +++ b/data/rug_cup/test/r_52_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb371d2150bb557d25841bab236a14d1b551e142f03bf10e2ccaef50bb16f417 +size 117270 diff --git a/data/rug_cup/test/r_53.png b/data/rug_cup/test/r_53.png new file mode 100644 index 0000000000000000000000000000000000000000..49d4c954f13a03f99669e0aa7e958ae64f46aa05 --- /dev/null +++ b/data/rug_cup/test/r_53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95c441ec29494d001e2ae1c255e5c1f891c624bcaac1336d87ffa0cbf386951 +size 118550 diff --git a/data/rug_cup/test/r_53_depth_0001.png b/data/rug_cup/test/r_53_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..bf54765c2512dc462b1bf62f51a0052aadacf39f --- /dev/null +++ b/data/rug_cup/test/r_53_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd02e3f0f3a17975912f2a95cc79b75c58ae370a12b0dfaa525458fd9277ddf4 +size 20365 diff --git a/data/rug_cup/test/r_53_normal_0001.png b/data/rug_cup/test/r_53_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..9311ea52a92f342bf35ed2c5a0fbee8c26a553d1 --- /dev/null +++ b/data/rug_cup/test/r_53_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa1b672b2a024695572623d12cee959b01c140cb21ac73f9510cb0ebb23ec37 +size 115821 diff --git a/data/rug_cup/test/r_54.png b/data/rug_cup/test/r_54.png new file mode 100644 index 0000000000000000000000000000000000000000..78ca35ce144e63c2fb5071b74f16d192d30f810a --- /dev/null +++ b/data/rug_cup/test/r_54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0acbc13151bba7b439e1715e15e477482d5a72da59073b2fac05b78dc1be3744 +size 115531 diff --git a/data/rug_cup/test/r_54_depth_0001.png b/data/rug_cup/test/r_54_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..52b20b090809b65ae12aa02ec02fbbebf98b954f --- /dev/null +++ b/data/rug_cup/test/r_54_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd2d347f7e46a934d991be43c5b7a9c8b4b8351cc05b7e93c339f2a82f47970 +size 20537 diff --git a/data/rug_cup/test/r_54_normal_0001.png b/data/rug_cup/test/r_54_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..25209f71e75b2e34c773af2cf0cd306d6757f80f --- /dev/null +++ b/data/rug_cup/test/r_54_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc040f9b5de41d21261692c14634a43ccdf7944452277715d6ba547aa8c846a +size 113226 diff --git a/data/rug_cup/test/r_55.png b/data/rug_cup/test/r_55.png new file mode 100644 index 0000000000000000000000000000000000000000..b1ea3754e0bfcc4f86451f2e7fa49244015853b1 --- /dev/null +++ b/data/rug_cup/test/r_55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f873db8f11bd2cdc17957f0789c043ad8a9538db52e84d827fd9410bd0388f +size 111777 diff --git a/data/rug_cup/test/r_55_depth_0001.png b/data/rug_cup/test/r_55_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..33f3bd610997ce3a2cc08958ee3f6437b0684f90 --- /dev/null +++ b/data/rug_cup/test/r_55_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2038a524455f7465482891c859bde8c7ccc0f9e545af5f2418c0a37397adde +size 20514 diff --git a/data/rug_cup/test/r_55_normal_0001.png b/data/rug_cup/test/r_55_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ddcc71e9279865d1fd0b246f4424d44db13dcfa3 --- /dev/null +++ b/data/rug_cup/test/r_55_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e236c9ab10515c3a60ab6f580e96ad18c0d1ebd18085919e4fbc15e4b3901dc3 +size 111425 diff --git a/data/rug_cup/test/r_56.png b/data/rug_cup/test/r_56.png new file mode 100644 index 0000000000000000000000000000000000000000..809a47a52f68f91b378d02b784726d9198abda25 --- /dev/null +++ b/data/rug_cup/test/r_56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baa563cf22d8084f7aa30e364a5352e9f7cc18dbbecca5dfcbb2d721acc8065d +size 109131 diff --git a/data/rug_cup/test/r_56_depth_0001.png b/data/rug_cup/test/r_56_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4f3c92753ee783b26fb281fd29c734839b746f3e --- /dev/null +++ b/data/rug_cup/test/r_56_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa0fba7d2da139dd6de4f91b8adffe0006551b503ad0b3a72cd3c5ee6cf1de5 +size 20472 diff --git a/data/rug_cup/test/r_56_normal_0001.png b/data/rug_cup/test/r_56_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a02e7ae006b1b5456a0371dcb10f9ecab488b899 --- /dev/null +++ b/data/rug_cup/test/r_56_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e66e96105473c27fe6b0cf3f6901a358b06842653df9e8c635aaada86524c51e +size 109334 diff --git a/data/rug_cup/test/r_57.png b/data/rug_cup/test/r_57.png new file mode 100644 index 0000000000000000000000000000000000000000..1abdcbdfa389acbfcbf4f9f6f1d07d564c3f5267 --- /dev/null +++ b/data/rug_cup/test/r_57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2131dd05da689c408d6196037ea5cb725997dfb5d6b6b47216199f5f9e8a17cd +size 106473 diff --git a/data/rug_cup/test/r_57_depth_0001.png b/data/rug_cup/test/r_57_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..20814744f37f05f1b38a1c468a2fb8398bdccdc7 --- /dev/null +++ b/data/rug_cup/test/r_57_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade30d24d29e49f11c18e9837e4574e5073ee622b4171fb6e081f7f86ac83ebe +size 20331 diff --git a/data/rug_cup/test/r_57_normal_0001.png b/data/rug_cup/test/r_57_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b36192a14b0c81e80f9d93a959ab4eccc118196a --- /dev/null +++ b/data/rug_cup/test/r_57_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed49ff1cd1e43759ea4d9042656272ec04efdd0b50447b06c74f07cdd83bc35f +size 107116 diff --git a/data/rug_cup/test/r_58.png b/data/rug_cup/test/r_58.png new file mode 100644 index 0000000000000000000000000000000000000000..27f3002afc1a08ad0bffa6d2a2d8230735129fd9 --- /dev/null +++ b/data/rug_cup/test/r_58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4d3a93ca099455b8b748519f4dbae36641bce43a531394f63fdf5c709791c2b +size 103138 diff --git a/data/rug_cup/test/r_58_depth_0001.png b/data/rug_cup/test/r_58_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d45c05f8a6230990c87cc610208a2c409d3d9355 --- /dev/null +++ b/data/rug_cup/test/r_58_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7838003a2c733c7ab5ed02b27f54133985c31d09a97272f9f4683756bb6915 +size 20158 diff --git a/data/rug_cup/test/r_58_normal_0001.png b/data/rug_cup/test/r_58_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..57bbd102fe219ae5620a33bf5f809b6e7b6f0538 --- /dev/null +++ b/data/rug_cup/test/r_58_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0f56b3ec0d62cfbd83993a8e3f6215a87bb6c9125a066aba10c00222006633 +size 103482 diff --git a/data/rug_cup/test/r_59.png b/data/rug_cup/test/r_59.png new file mode 100644 index 0000000000000000000000000000000000000000..8389cae89a1284843874ba81fa679d4cc9f4a5f3 --- /dev/null +++ b/data/rug_cup/test/r_59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35c1748ab34c4998c8dccb576606b2942172bab1963910840f14598e34c2ba8 +size 99372 diff --git a/data/rug_cup/test/r_59_depth_0001.png b/data/rug_cup/test/r_59_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e88324f6946eab1916a7a64d1fb272e055836f9b --- /dev/null +++ b/data/rug_cup/test/r_59_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c5c81725ac302d02405d499f4a206b8d8c5f6a378d79d958608c5f3415af172 +size 20005 diff --git a/data/rug_cup/test/r_59_normal_0001.png b/data/rug_cup/test/r_59_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..541eea80ca00ad926c4f516a035fbd689b1a24a6 --- /dev/null +++ b/data/rug_cup/test/r_59_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5afa7fa5b071e0c1378b70e08d1ddf6352e47f1410cb98f301d838a0174de7c +size 100231 diff --git a/data/rug_cup/test/r_5_depth_0001.png b/data/rug_cup/test/r_5_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4d58ded2486202cdb5419f4d5271dfb06a8fe33a --- /dev/null +++ b/data/rug_cup/test/r_5_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a878b6dd71e0abf1436d8204f738c0bdf658ca9a45ee72f4b1004576293cd7ae +size 24119 diff --git a/data/rug_cup/test/r_5_normal_0001.png b/data/rug_cup/test/r_5_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..3b2fefadcf334905d91e3d11fbc8610a195561a2 --- /dev/null +++ b/data/rug_cup/test/r_5_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d8f89b0d9feb2ae4788fccdff1cf011b1637360ad3859e3fe72338367816da +size 257879 diff --git a/data/rug_cup/test/r_6.png b/data/rug_cup/test/r_6.png new file mode 100644 index 0000000000000000000000000000000000000000..ace66de5d923148aa289ef340d0edc8e588b34cb --- /dev/null +++ b/data/rug_cup/test/r_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4e02afd7ed346c011fb346dc39db34ba3072f31d4a6b7f8bc2c174f03557ebf +size 256627 diff --git a/data/rug_cup/test/r_60.png b/data/rug_cup/test/r_60.png new file mode 100644 index 0000000000000000000000000000000000000000..0d5e7a4a0f0b44baa898c71eb0d872c98ee39c87 --- /dev/null +++ b/data/rug_cup/test/r_60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df57a8ab32848d8a0c19806cea65e9793389c8657e2ee14c23c5b4737803fb3 +size 95390 diff --git a/data/rug_cup/test/r_60_depth_0001.png b/data/rug_cup/test/r_60_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a7f1414f7468fbb477b918814baa1e71f088a4a6 --- /dev/null +++ b/data/rug_cup/test/r_60_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e260d383157ed1c15f744d057f90c435cba1131c5700918c746710e9d6479ed4 +size 19909 diff --git a/data/rug_cup/test/r_60_normal_0001.png b/data/rug_cup/test/r_60_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5fe796326575de10647a1b3a147f426757dd9ac0 --- /dev/null +++ b/data/rug_cup/test/r_60_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866d1436720eebce9502b0f2d912e7b312b6f7169d1510fe87799ec8e3dcb58f +size 96675 diff --git a/data/rug_cup/test/r_61.png b/data/rug_cup/test/r_61.png new file mode 100644 index 0000000000000000000000000000000000000000..d3ac83ec67e8c2a91dc9d729d5420a73df757130 --- /dev/null +++ b/data/rug_cup/test/r_61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59800d44a4e78361203759125919b866bd67e66ad3e569e3aca3b61296cf824 +size 90905 diff --git a/data/rug_cup/test/r_61_depth_0001.png b/data/rug_cup/test/r_61_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f3bf48d36a7ba705e84dab4ead4f704071c3003c --- /dev/null +++ b/data/rug_cup/test/r_61_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4af4884baa11644205c939c0bb25dd4318640b9a097675113147f28283e159 +size 19443 diff --git a/data/rug_cup/test/r_61_normal_0001.png b/data/rug_cup/test/r_61_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2ed30b25e63b1c7c16726a5aab1dc3a4e46f4bb6 --- /dev/null +++ b/data/rug_cup/test/r_61_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f829ee7b7eafa2c9a057c040eec396afd1e67f3d2b2d1e8a567caca17a49f82 +size 93824 diff --git a/data/rug_cup/test/r_62.png b/data/rug_cup/test/r_62.png new file mode 100644 index 0000000000000000000000000000000000000000..6e9abe64322eff8303dcad15ca6fe75d54795571 --- /dev/null +++ b/data/rug_cup/test/r_62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965d60672f53bf52582e6cf6878ad80f1fc02dbd6e53e20e9aac2f83469f969b +size 86731 diff --git a/data/rug_cup/test/r_62_depth_0001.png b/data/rug_cup/test/r_62_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..61f9b835bd6b1f02affd4b8dac2ee0b6fcc21c31 --- /dev/null +++ b/data/rug_cup/test/r_62_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6131712716557777e29de95e34a8bfffb0131c073cd9d4da1750c243e6007484 +size 19224 diff --git a/data/rug_cup/test/r_62_normal_0001.png b/data/rug_cup/test/r_62_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..cdfbe32cf843173e9b34905717a905453b5a97c1 --- /dev/null +++ b/data/rug_cup/test/r_62_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afcb8da3b7b43a963703c7d4714e392c3717b4938d4b9ce9b343bb8094322c9 +size 90188 diff --git a/data/rug_cup/test/r_63.png b/data/rug_cup/test/r_63.png new file mode 100644 index 0000000000000000000000000000000000000000..ca8c106acd6897d560ad8a0891444fc4f452304b --- /dev/null +++ b/data/rug_cup/test/r_63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cebcd00afbe1c0183001cd9e35bf065b15860083c78684c5c9b4e14c3b0db6a5 +size 82910 diff --git a/data/rug_cup/test/r_63_depth_0001.png b/data/rug_cup/test/r_63_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..9f95b5f6b8888de922ca16ef61eec424af2e0032 --- /dev/null +++ b/data/rug_cup/test/r_63_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f63e7524cedc34d28b92dc205c68eff0a17fdaaac8d56ca33473d995663b2f89 +size 19022 diff --git a/data/rug_cup/test/r_63_normal_0001.png b/data/rug_cup/test/r_63_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..737e671c0699d10f05b871c611e60384fe639385 --- /dev/null +++ b/data/rug_cup/test/r_63_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94561186ca739ba8bda0cbe9638c222625bc14457890885292180bc6e6e96c1 +size 85979 diff --git a/data/rug_cup/test/r_64.png b/data/rug_cup/test/r_64.png new file mode 100644 index 0000000000000000000000000000000000000000..9231aac647ce78e413769621410d6dc8cd67c4a7 --- /dev/null +++ b/data/rug_cup/test/r_64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a90189d8c8ee2d9e3f3a5c1188dd4578b0c1b8b2c9f1f1eafebcdfeb2f80eaf +size 79826 diff --git a/data/rug_cup/test/r_64_depth_0001.png b/data/rug_cup/test/r_64_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ca10c00f3a9cc9ea0d9c93b37d11df3c8a94a9d5 --- /dev/null +++ b/data/rug_cup/test/r_64_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d455b20eab17de6ee8c5c03ac6097c7ad452f75ba5959f4361a29ec22bc96ae0 +size 18671 diff --git a/data/rug_cup/test/r_64_normal_0001.png b/data/rug_cup/test/r_64_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4e6d00590c250065c7adc2dbb70bd8b6e20b22a1 --- /dev/null +++ b/data/rug_cup/test/r_64_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:401510cf0e05f405789ce804308ec8ed535ec29e0107ac218d33962762f37d2d +size 81327 diff --git a/data/rug_cup/test/r_65.png b/data/rug_cup/test/r_65.png new file mode 100644 index 0000000000000000000000000000000000000000..a9312f80bbae35fcedd72c169b20cf9ca01acdec --- /dev/null +++ b/data/rug_cup/test/r_65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6f904fd7835b31663723ba329c1b12487b8402b2cfdd03902a3ed73a88edd2 +size 75998 diff --git a/data/rug_cup/test/r_65_depth_0001.png b/data/rug_cup/test/r_65_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2ecc9c7c25951ab6cfa413617a057de845e6ee44 --- /dev/null +++ b/data/rug_cup/test/r_65_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5acb476bc5f03174d3669d7c9fdcc19bcd0e2cc707afd9ba73843fed509c23f +size 18457 diff --git a/data/rug_cup/test/r_65_normal_0001.png b/data/rug_cup/test/r_65_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..9d667ffc7c54a557da95d2ba63c438961be5761e --- /dev/null +++ b/data/rug_cup/test/r_65_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d5796ac885c21209dec8f22fe6f0793485a33a78bc589ebb3f484311a56214f +size 76875 diff --git a/data/rug_cup/test/r_66.png b/data/rug_cup/test/r_66.png new file mode 100644 index 0000000000000000000000000000000000000000..7441368a562880fc2a7ff5e515043017e0f866a0 --- /dev/null +++ b/data/rug_cup/test/r_66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10836aa844d919cafa8084c081f7a4e24851f1b8199f349682a2533c508903b0 +size 71921 diff --git a/data/rug_cup/test/r_66_depth_0001.png b/data/rug_cup/test/r_66_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..68c8de1a42c4ff908ca7118b6c7527a59401aac6 --- /dev/null +++ b/data/rug_cup/test/r_66_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90aa12af0992ce7c369f477456eb748ef48f46e18eea642178e761ba968eeeb8 +size 18013 diff --git a/data/rug_cup/test/r_66_normal_0001.png b/data/rug_cup/test/r_66_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a5c8096475309b6849107e93927050a347a06459 --- /dev/null +++ b/data/rug_cup/test/r_66_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fef86a05445ffe94a920e2004ecaa7f11e392282f10ebe7f29ec4c18da967ff +size 73394 diff --git a/data/rug_cup/test/r_67.png b/data/rug_cup/test/r_67.png new file mode 100644 index 0000000000000000000000000000000000000000..36edafe06c62e145aaa3f49efbb40b4c88e34e69 --- /dev/null +++ b/data/rug_cup/test/r_67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c60b7361fb898d3aa0d6d423be54a8384af229f1d3191e5dec80ff9cbd98a26 +size 67707 diff --git a/data/rug_cup/test/r_67_depth_0001.png b/data/rug_cup/test/r_67_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d7813afe0dba6922d2af176d8de661184c01bd --- /dev/null +++ b/data/rug_cup/test/r_67_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca02363019b93336cab65649d113a1c97c2bd84aa1e2633d64b5f5bcdfec43ef +size 17782 diff --git a/data/rug_cup/test/r_67_normal_0001.png b/data/rug_cup/test/r_67_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f27292b11a26c1412c8a746317f01210cb2e5ce9 --- /dev/null +++ b/data/rug_cup/test/r_67_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2362e1b3c8d8d67e3b5c94e12ef1e6d3c1014babff1031afbf09b73ca7c88096 +size 68575 diff --git a/data/rug_cup/test/r_68.png b/data/rug_cup/test/r_68.png new file mode 100644 index 0000000000000000000000000000000000000000..386921fa7109ccd1b18a9e44a65d8b67da8e1e91 --- /dev/null +++ b/data/rug_cup/test/r_68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720d45c397cd0f6806258f9298e225c3a7f962c30e64206b7ecdaef1ed6a9db2 +size 64941 diff --git a/data/rug_cup/test/r_68_depth_0001.png b/data/rug_cup/test/r_68_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c30465133793d525bd5d723606bcae24ded96d57 --- /dev/null +++ b/data/rug_cup/test/r_68_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10412d87ba85b9e866cabeac9404eba9b327619fc4cc63fbca1e31837e04025a +size 17749 diff --git a/data/rug_cup/test/r_68_normal_0001.png b/data/rug_cup/test/r_68_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..824512c54b1d44d66cf47a28aeaad9d28b3d0d32 --- /dev/null +++ b/data/rug_cup/test/r_68_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4848d83329084ce87a9a784df780f25386052904a02838c843805ef8657d6f58 +size 66237 diff --git a/data/rug_cup/test/r_69.png b/data/rug_cup/test/r_69.png new file mode 100644 index 0000000000000000000000000000000000000000..a43f78be0e26ffcd33f092036bd0536e1ecb78a8 --- /dev/null +++ b/data/rug_cup/test/r_69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212e60a3bc13d54100cac0bb037008aa64e748bb5e5636b59323914a0b791cb0 +size 61687 diff --git a/data/rug_cup/test/r_69_depth_0001.png b/data/rug_cup/test/r_69_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5f5abe7876180c1091edee2d4528a9a6bd907acf --- /dev/null +++ b/data/rug_cup/test/r_69_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513610c5b5ef99f790920e7c108d3279b277d948ed93a74f58b67021e593b559 +size 17713 diff --git a/data/rug_cup/test/r_69_normal_0001.png b/data/rug_cup/test/r_69_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b368a9e3abd85e6834c7df352683cc2e35f45153 --- /dev/null +++ b/data/rug_cup/test/r_69_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a676e8c5149abf2c326a525f4f8653c7d676f39bea60f52b87d8b72579de5a +size 61680 diff --git a/data/rug_cup/test/r_6_depth_0001.png b/data/rug_cup/test/r_6_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..dee89a54068c0c32066d671854dedc07e98dd874 --- /dev/null +++ b/data/rug_cup/test/r_6_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:382f984697f4e43d0ed5f57e34f0fa309ff35dacb86c9f5ce139d2236d7b6926 +size 24368 diff --git a/data/rug_cup/test/r_6_normal_0001.png b/data/rug_cup/test/r_6_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b58ab8790c02c4bc43c73d68c3915e61a402efe2 --- /dev/null +++ b/data/rug_cup/test/r_6_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53078b57364090b1f9e4f7472d8ab43a312c44e654add1eefb3971ac63e3c15a +size 249139 diff --git a/data/rug_cup/test/r_7.png b/data/rug_cup/test/r_7.png new file mode 100644 index 0000000000000000000000000000000000000000..585f82cbc43a9c9915d5f4a904f464e2c0068a8c --- /dev/null +++ b/data/rug_cup/test/r_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0ef3d65abeac721597d56ea132ce01fc9706d0696f35379e29eb26e38eeb1f +size 256380 diff --git a/data/rug_cup/test/r_70.png b/data/rug_cup/test/r_70.png new file mode 100644 index 0000000000000000000000000000000000000000..616f003effc60c6ee6fa8671718cec97b971ab70 --- /dev/null +++ b/data/rug_cup/test/r_70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359f6a061b6db2b5cd5edf5f61b2519b53ba1b6a00d1b2d78e6292277d5fe849 +size 58952 diff --git a/data/rug_cup/test/r_70_depth_0001.png b/data/rug_cup/test/r_70_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..57c1fbd7804fba19baaad8c1b93280ce5b8ebde4 --- /dev/null +++ b/data/rug_cup/test/r_70_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701f2e3b29d822aa565d3403bf8c9926bf605bc583a184d79647fa343e8edfae +size 17456 diff --git a/data/rug_cup/test/r_70_normal_0001.png b/data/rug_cup/test/r_70_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6deb66a3850059a4596589e8f866e551fbf2cf97 --- /dev/null +++ b/data/rug_cup/test/r_70_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d82d2192607a940f455805cb46f1597e8926f710f60790fc3f883c9b3854da3 +size 58476 diff --git a/data/rug_cup/test/r_71.png b/data/rug_cup/test/r_71.png new file mode 100644 index 0000000000000000000000000000000000000000..cfaf825226ca6a362bf911264a6e56bb238a9aab --- /dev/null +++ b/data/rug_cup/test/r_71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11fa14b1535af15997cb59787244276eb17f435c5bcc26329f351bd1f2736b13 +size 55746 diff --git a/data/rug_cup/test/r_71_depth_0001.png b/data/rug_cup/test/r_71_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..342aa05818edecca4d8d336cbd5fc96c57907542 --- /dev/null +++ b/data/rug_cup/test/r_71_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:041f7647c21849f88dd9650dacc59134033b16b54ae034207a1a22edf7eebeca +size 17003 diff --git a/data/rug_cup/test/r_71_normal_0001.png b/data/rug_cup/test/r_71_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c215fd001c7b612b094f4e6f0c198e45ba537df9 --- /dev/null +++ b/data/rug_cup/test/r_71_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad81f8d9d59c61338ee9b47c6808f17113702610019fdbcccfa2cdbdd9d224d +size 55982 diff --git a/data/rug_cup/test/r_72.png b/data/rug_cup/test/r_72.png new file mode 100644 index 0000000000000000000000000000000000000000..c36193a9988ebb30f2950b3f35a92e255a33e2e3 --- /dev/null +++ b/data/rug_cup/test/r_72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade9fb06d6e3b1f9a34ee1cc42a59fea72df5bbb1211b61c19fe64859cc6fb02 +size 53375 diff --git a/data/rug_cup/test/r_72_depth_0001.png b/data/rug_cup/test/r_72_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..12a2851c69e448e12768ef261393edf51e532220 --- /dev/null +++ b/data/rug_cup/test/r_72_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9b15c51cda8599dde5772657e8e379c7c7908d7a5073920dd0326f28eaf098 +size 16706 diff --git a/data/rug_cup/test/r_72_normal_0001.png b/data/rug_cup/test/r_72_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..cb9ec2ab5c46a24e20d9369cd7c9fce978dd3dd0 --- /dev/null +++ b/data/rug_cup/test/r_72_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88b012d650846e9572a63c11b6ef833542bfbe6a49097047746c9093c3d6c4a0 +size 53660 diff --git a/data/rug_cup/test/r_73.png b/data/rug_cup/test/r_73.png new file mode 100644 index 0000000000000000000000000000000000000000..1ad01cc51684f608f4222fc9ddbcfaac752f67a9 --- /dev/null +++ b/data/rug_cup/test/r_73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:652586388668b3e06c358c967b425dd63306bc6a17ccbeebe8ec1d3bb904f04d +size 51302 diff --git a/data/rug_cup/test/r_73_depth_0001.png b/data/rug_cup/test/r_73_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..eaba5e767ef8770e4af9b75665bdacf697c497fe --- /dev/null +++ b/data/rug_cup/test/r_73_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1217fac9fef9b6514c720f568dbab014d3c568264ee44b74e34d5a56f01c834b +size 16291 diff --git a/data/rug_cup/test/r_73_normal_0001.png b/data/rug_cup/test/r_73_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..81f1ffb46ffc37e4c9c78da236c1f78dcd86f85b --- /dev/null +++ b/data/rug_cup/test/r_73_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2736e0c6217c4bb629c79c406d3a3ff6f4d8ff5745e7caae491c7c633a26d8f1 +size 50989 diff --git a/data/rug_cup/test/r_74.png b/data/rug_cup/test/r_74.png new file mode 100644 index 0000000000000000000000000000000000000000..83badf8cb8342f35edb4c6be6483c646a47c0e25 --- /dev/null +++ b/data/rug_cup/test/r_74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac132a980ec805b0e5da5fc8c8500227d36c66ca4ef80f8a58a1e137697b48b +size 52253 diff --git a/data/rug_cup/test/r_74_depth_0001.png b/data/rug_cup/test/r_74_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..22af3f21041a92aa3ea1d438eec1ce0c5506062e --- /dev/null +++ b/data/rug_cup/test/r_74_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc230a52ccfaac7f7603f6228f078b7b444b27970ab8ed43732b778067084217 +size 15912 diff --git a/data/rug_cup/test/r_74_normal_0001.png b/data/rug_cup/test/r_74_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b08cc93f6b8ee7d268d4e08455365df38bf7ecdd --- /dev/null +++ b/data/rug_cup/test/r_74_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae7a9e26b309d1bd598865506f984a6a9e04a9a0201c1f9769292adf1ae5065 +size 51139 diff --git a/data/rug_cup/test/r_75.png b/data/rug_cup/test/r_75.png new file mode 100644 index 0000000000000000000000000000000000000000..c53a4ef5b2e48b224d6316469a3e713df8757f7e --- /dev/null +++ b/data/rug_cup/test/r_75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd3ff2546e2c8007a7b7e8f39a5d793cfa063613ff4363131334efd70be552f +size 53044 diff --git a/data/rug_cup/test/r_75_depth_0001.png b/data/rug_cup/test/r_75_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8bf52928dea559fc9342834693c91bee0af10bba --- /dev/null +++ b/data/rug_cup/test/r_75_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1201eb0a92c47d21d736a6a109d2dc4e6ce6087594ea2f3be31941a3422eb0d4 +size 15856 diff --git a/data/rug_cup/test/r_75_normal_0001.png b/data/rug_cup/test/r_75_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..22e4c072b093e06d7897efd7ca3e70c2b56a0db3 --- /dev/null +++ b/data/rug_cup/test/r_75_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5149335c888aa4d58639e966be33ecb191d44dc757fb2135a754316835289c27 +size 51342 diff --git a/data/rug_cup/test/r_76.png b/data/rug_cup/test/r_76.png new file mode 100644 index 0000000000000000000000000000000000000000..ef5e70df6f45632641da4d3945862874799aa0a4 --- /dev/null +++ b/data/rug_cup/test/r_76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dbb206861403a04dd72b918d959a00bb3acecb9c0dcff09b34b4217bc4750ff +size 54366 diff --git a/data/rug_cup/test/r_76_depth_0001.png b/data/rug_cup/test/r_76_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..f3f7bbf2d81ddbcb02b07b7e1d13327487351608 --- /dev/null +++ b/data/rug_cup/test/r_76_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502341f6859c22a28ca0dca310d792aaf7d771fe8a01e7d5d78398c63f0533a3 +size 16584 diff --git a/data/rug_cup/test/r_76_normal_0001.png b/data/rug_cup/test/r_76_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..66071a9e96e851ef4bef240c4c23ac2f3c9ad19e --- /dev/null +++ b/data/rug_cup/test/r_76_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49560e13ef17f54e5192636a98cdb41b69937e8fc30e96281486df8ffae9705 +size 53607 diff --git a/data/rug_cup/test/r_77.png b/data/rug_cup/test/r_77.png new file mode 100644 index 0000000000000000000000000000000000000000..dfe9d055481adf324d9bac5f5f748b3b294488a3 --- /dev/null +++ b/data/rug_cup/test/r_77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482f52b7d9e580adf908a8c47e117079b15f4313a1652ce8af716604ed0a8c8f +size 56650 diff --git a/data/rug_cup/test/r_77_depth_0001.png b/data/rug_cup/test/r_77_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..790bd3e57ac41878e5327fcae0371b99c4d72da8 --- /dev/null +++ b/data/rug_cup/test/r_77_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77be0ec5f0383cf826715073dfa0273e30bc5aa7e77f093edeb59fe72460b64a +size 17040 diff --git a/data/rug_cup/test/r_77_normal_0001.png b/data/rug_cup/test/r_77_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..ec3f330412a8401822c9fdead3cfdf494031d9e3 --- /dev/null +++ b/data/rug_cup/test/r_77_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e41cde1c404a61626b4b03b669f65d950cf7462fec0511045879bbaded181e +size 55513 diff --git a/data/rug_cup/test/r_78.png b/data/rug_cup/test/r_78.png new file mode 100644 index 0000000000000000000000000000000000000000..f8c37918bc6d80f02cbda1abe120ff1d9088c5f1 --- /dev/null +++ b/data/rug_cup/test/r_78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b37f53fbd40ed645cf3d77d4c475c29242e06bce10c5d89b061f2f3e21e457d +size 60139 diff --git a/data/rug_cup/test/r_78_depth_0001.png b/data/rug_cup/test/r_78_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..17658bc65313b1da3a9e11beaacdf9b4414f04a1 --- /dev/null +++ b/data/rug_cup/test/r_78_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b4d313754c8b4f54e75fe6f2dda1273a915f6e607375b056c59800f94a8b37 +size 17110 diff --git a/data/rug_cup/test/r_78_normal_0001.png b/data/rug_cup/test/r_78_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..818d071d7b856a16500852813fa2ae01ad1a892e --- /dev/null +++ b/data/rug_cup/test/r_78_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd52d4d920c6d9eb9cf4addbe4cec446b41aa799800c94a7fa79005009ded410 +size 57153 diff --git a/data/rug_cup/test/r_79.png b/data/rug_cup/test/r_79.png new file mode 100644 index 0000000000000000000000000000000000000000..d58f051e3714a29461a43674a404f153f015762a --- /dev/null +++ b/data/rug_cup/test/r_79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b816246ff2bc08cde90040adc3b22e85881782bba1ecf3dad6f6e18729115c35 +size 63255 diff --git a/data/rug_cup/test/r_79_depth_0001.png b/data/rug_cup/test/r_79_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8632d0afe8960336a9e4cf6e413756c9dea4f847 --- /dev/null +++ b/data/rug_cup/test/r_79_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec93b7d3a10c408936e8788777b7876f0c248c187ab7d9d2be2abfa4b326e8c +size 17273 diff --git a/data/rug_cup/test/r_79_normal_0001.png b/data/rug_cup/test/r_79_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..0b019f15069b124baed6657c7011db19a1d257f0 --- /dev/null +++ b/data/rug_cup/test/r_79_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2846a01cd3761b7f44254609d96bd86624927b1fd3167f53b0d19c4aae28c307 +size 60151 diff --git a/data/rug_cup/test/r_7_depth_0001.png b/data/rug_cup/test/r_7_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..fcf004fc4f967f8ab20f5c1b9140ceec736fac6e --- /dev/null +++ b/data/rug_cup/test/r_7_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696743c548b09d8e32c625d864d2aba5abe1b4d35a1607f4f9124fd83a4c9912 +size 24546 diff --git a/data/rug_cup/test/r_7_normal_0001.png b/data/rug_cup/test/r_7_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..35410380555c38d4602bb4ca4ab78e10f3ea7283 --- /dev/null +++ b/data/rug_cup/test/r_7_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69174b55e65d43961f381d509283a443abd0f289328cdaa925c05ca2430b7e29 +size 237380 diff --git a/data/rug_cup/test/r_8.png b/data/rug_cup/test/r_8.png new file mode 100644 index 0000000000000000000000000000000000000000..d2cdc26709ae71d61ff301c57595715046ef3d45 --- /dev/null +++ b/data/rug_cup/test/r_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22692e7a450881eb383df0826900fe9ced7eab4f336d00c43974e401c852e18c +size 255880 diff --git a/data/rug_cup/test/r_80.png b/data/rug_cup/test/r_80.png new file mode 100644 index 0000000000000000000000000000000000000000..0ef322fe7cf223d068c22d825fbbc689eba3bdfb --- /dev/null +++ b/data/rug_cup/test/r_80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f22f6938b8f798d2bb4ffcebac155c27dc22f774465d657046041b8a0e44b0 +size 66264 diff --git a/data/rug_cup/test/r_80_depth_0001.png b/data/rug_cup/test/r_80_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..273b1c53bb529452209b10db0e0fa173b839b961 --- /dev/null +++ b/data/rug_cup/test/r_80_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd664450345033def75092fa6cc4a008128a2db6ff3c2980a932b59313ea60f3 +size 17410 diff --git a/data/rug_cup/test/r_80_normal_0001.png b/data/rug_cup/test/r_80_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..5b426d38e50aabeb3e75521554973fc400a19cb5 --- /dev/null +++ b/data/rug_cup/test/r_80_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a3b60463b0edb901ccf883ac164c671b88a512bf1015e97238a934ca734684 +size 62916 diff --git a/data/rug_cup/test/r_81.png b/data/rug_cup/test/r_81.png new file mode 100644 index 0000000000000000000000000000000000000000..d3c73ef67299f1cd203e9349bc111975b3441320 --- /dev/null +++ b/data/rug_cup/test/r_81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e682ef6f349c4f47f53491b9920c9e141a697463702229663ac9cc0b2d1f9c1e +size 69457 diff --git a/data/rug_cup/test/r_81_depth_0001.png b/data/rug_cup/test/r_81_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8d2f69b34b95e985c0f4bc7f2b87ddcfa8fe7459 --- /dev/null +++ b/data/rug_cup/test/r_81_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65e189332e36a17fbb1bbd10fe925a92a72d857c012db6f61725ab560740339 +size 17498 diff --git a/data/rug_cup/test/r_81_normal_0001.png b/data/rug_cup/test/r_81_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..093c688752ea4f3fa213cdbf3396e7d654c209c6 --- /dev/null +++ b/data/rug_cup/test/r_81_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48017fa70b944c1513d7315bdacebedd7ae7e8fd18a53db44002495b25e75e1 +size 65085 diff --git a/data/rug_cup/test/r_82.png b/data/rug_cup/test/r_82.png new file mode 100644 index 0000000000000000000000000000000000000000..76ae3c08d2724e7f18ba10c831e215547d2d9f51 --- /dev/null +++ b/data/rug_cup/test/r_82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab4dc6601dd01f70831ddcac26aabd910d75c9bb0ed895c029f90d5b5853449a +size 71265 diff --git a/data/rug_cup/test/r_82_depth_0001.png b/data/rug_cup/test/r_82_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b4095513c4fbf7091aa8e35cf333d3785a4e7f26 --- /dev/null +++ b/data/rug_cup/test/r_82_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ffbce25c9d82029e1f372216ba9184539184861af547b78a6a18451a3e11d2 +size 17643 diff --git a/data/rug_cup/test/r_82_normal_0001.png b/data/rug_cup/test/r_82_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6ab3ebae550f3beb621577c17337628bad1bc2f2 --- /dev/null +++ b/data/rug_cup/test/r_82_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01aead5951882c85ca0a6c048cce3095ee36d450d3a6bd580a23387e2ede1884 +size 67713 diff --git a/data/rug_cup/test/r_83.png b/data/rug_cup/test/r_83.png new file mode 100644 index 0000000000000000000000000000000000000000..a44f199ccebfe1d513e00c89ee7729c4edda641a --- /dev/null +++ b/data/rug_cup/test/r_83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6c75cd38c35f59a9d39030ec3d7a33e439dd7492ddb0be21ee45edfda8929fa +size 73658 diff --git a/data/rug_cup/test/r_83_depth_0001.png b/data/rug_cup/test/r_83_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..0138c05e62135307e150bc01e24bff1e1326f430 --- /dev/null +++ b/data/rug_cup/test/r_83_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348cf6d7bf8adf4957f195c6e0e2966380aa31416d2de422abf86ece51a2e176 +size 17602 diff --git a/data/rug_cup/test/r_83_normal_0001.png b/data/rug_cup/test/r_83_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..a92b43e15e99c628e4a643fad1eb9869524489a2 --- /dev/null +++ b/data/rug_cup/test/r_83_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f75361a3b81552818a8a9f1c00131e696670a908d855e5695830e9cb83b4cba +size 70305 diff --git a/data/rug_cup/test/r_84.png b/data/rug_cup/test/r_84.png new file mode 100644 index 0000000000000000000000000000000000000000..6ef0275637c06ef427ac591dc493cab5762724a8 --- /dev/null +++ b/data/rug_cup/test/r_84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01f0724559f7a980d1f0ae9b1011424ebbf8247b1a5241f42409e08d8aa893b6 +size 75944 diff --git a/data/rug_cup/test/r_84_depth_0001.png b/data/rug_cup/test/r_84_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7b5f11fb69139a421416abb7d88196443e597216 --- /dev/null +++ b/data/rug_cup/test/r_84_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88b0a1e9dfd41319967b06c988be7114f32bf6631f77a74ba5f515785e02195 +size 17672 diff --git a/data/rug_cup/test/r_84_normal_0001.png b/data/rug_cup/test/r_84_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c982b933eef0beebd0d441fc27f9977431255d38 --- /dev/null +++ b/data/rug_cup/test/r_84_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5621215b402fb2bdce0385b3f8bec0742b84ae1d3b7cee7342fba8e549e02aad +size 72984 diff --git a/data/rug_cup/test/r_85.png b/data/rug_cup/test/r_85.png new file mode 100644 index 0000000000000000000000000000000000000000..0977ce91b7300ffbb4084eb4ff1ec79c264dce51 --- /dev/null +++ b/data/rug_cup/test/r_85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b36af03c713c68b32fd772d07cf4cd083579e34a3aae73e72e4498adefba7e9 +size 78254 diff --git a/data/rug_cup/test/r_85_depth_0001.png b/data/rug_cup/test/r_85_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..7b3a28f3e5733f070370f7f6f7619baf0de9c4d2 --- /dev/null +++ b/data/rug_cup/test/r_85_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59515c49a25985e3b4a4beddfbe4f1895a538ca09385b67ab54d72e30ef2cb0f +size 17891 diff --git a/data/rug_cup/test/r_85_normal_0001.png b/data/rug_cup/test/r_85_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..90e675c00c40114b7fa4d47f689455a44c14e32a --- /dev/null +++ b/data/rug_cup/test/r_85_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dffbec4b74202db66be79130b1b351d29c0bd751ca68b441819a6560d03b0eb +size 76490 diff --git a/data/rug_cup/test/r_86.png b/data/rug_cup/test/r_86.png new file mode 100644 index 0000000000000000000000000000000000000000..915e86c98466fa2b3d0b2c78c8bde8f01a6f5fc2 --- /dev/null +++ b/data/rug_cup/test/r_86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b86514c77601e8bfea379a4a20e5f94e59692364d6b983c27d52da2bf5aee208 +size 79963 diff --git a/data/rug_cup/test/r_86_depth_0001.png b/data/rug_cup/test/r_86_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c97cea1e9b8e712c3462294d7c1d405335bac8d5 --- /dev/null +++ b/data/rug_cup/test/r_86_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605592d627685562876ebf29ec4d302b66256fa5fcbb5f840fabd46900ee493d +size 17924 diff --git a/data/rug_cup/test/r_86_normal_0001.png b/data/rug_cup/test/r_86_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..fcca83e748a11e20e6d2826496cd0c429af331ae --- /dev/null +++ b/data/rug_cup/test/r_86_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de0c77dd44c1005f6c681b79631e61f26a4f7616b979890d4e231b9bd0cba76 +size 78343 diff --git a/data/rug_cup/test/r_87.png b/data/rug_cup/test/r_87.png new file mode 100644 index 0000000000000000000000000000000000000000..7fd136416cf4a85ae6ae69b2daf4bad36d17d45e --- /dev/null +++ b/data/rug_cup/test/r_87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d54b2de445530566af6c0bb663d31f3f06e49ff7200a36541b015fab439eb46 +size 81872 diff --git a/data/rug_cup/test/r_87_depth_0001.png b/data/rug_cup/test/r_87_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4f3ae8a3f6afca50e3c27d5bdf458ac8d9c720cb --- /dev/null +++ b/data/rug_cup/test/r_87_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec635f0766476b53702618f6d84952fcf53aba76c02e3a7e97872435f1f7f54c +size 18111 diff --git a/data/rug_cup/test/r_87_normal_0001.png b/data/rug_cup/test/r_87_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6d884da2cae2159e5f0a81786cb5dea54664e4e4 --- /dev/null +++ b/data/rug_cup/test/r_87_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b52cbd7ba82c9ae3bb33ef2ab44528a1bd2fa2dc8d93e59eafe80ffea54ae43 +size 79988 diff --git a/data/rug_cup/test/r_88.png b/data/rug_cup/test/r_88.png new file mode 100644 index 0000000000000000000000000000000000000000..97a1b9e98a8ebf0a67196356998b688e043a51f6 --- /dev/null +++ b/data/rug_cup/test/r_88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af51ff9a42544636a007331e184e8f003ca120ed52eaef4cce394aa1b53e1c87 +size 83808 diff --git a/data/rug_cup/test/r_88_depth_0001.png b/data/rug_cup/test/r_88_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..648d8786e3ac42e814e8796f2a0153132ce874f6 --- /dev/null +++ b/data/rug_cup/test/r_88_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a9cc736e8fa5088665b586f0340cbe9b3eec594d287a81351ae84a8c20595bb +size 18281 diff --git a/data/rug_cup/test/r_88_normal_0001.png b/data/rug_cup/test/r_88_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..bb9bb046c0bbb86230bbdc7da8d4cda54e726fa9 --- /dev/null +++ b/data/rug_cup/test/r_88_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9feb0f304045df60a527c767fda6aeedf62a6c4f6d1a91b2d575bdbfb039cf +size 82358 diff --git a/data/rug_cup/test/r_89.png b/data/rug_cup/test/r_89.png new file mode 100644 index 0000000000000000000000000000000000000000..390fe42af11559fe6eae71d925051a6b7b06d308 --- /dev/null +++ b/data/rug_cup/test/r_89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a70bc6e2cf2e9f49e4d7d626b23c7008a18d085d52d3f11076c61312a700a41 +size 85580 diff --git a/data/rug_cup/test/r_89_depth_0001.png b/data/rug_cup/test/r_89_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..0860c74cded66736b6931d1471e9865643165ddb --- /dev/null +++ b/data/rug_cup/test/r_89_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5c1c825a395c3afa24ef690f4dd4eb5593cdf0104e77645cc2e7916cfce37a +size 18370 diff --git a/data/rug_cup/test/r_89_normal_0001.png b/data/rug_cup/test/r_89_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e058b184b8656596211fca368dda70f46fdf0d63 --- /dev/null +++ b/data/rug_cup/test/r_89_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f0978a1e9e3a321bb990f007e74101ed9ece4bca61db12fae62612545c3993e +size 84191 diff --git a/data/rug_cup/test/r_8_depth_0001.png b/data/rug_cup/test/r_8_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..182a6e7556974272b30826b994a0373e1ab6216f --- /dev/null +++ b/data/rug_cup/test/r_8_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aab9d6c93a08ea66e6c735e4adcbd8ffe0102c2da7bdec50bbb423442f01831 +size 24618 diff --git a/data/rug_cup/test/r_8_normal_0001.png b/data/rug_cup/test/r_8_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c5407b6931b5f99eae92adfef7614f4bb5c54bd8 --- /dev/null +++ b/data/rug_cup/test/r_8_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840457c89fe1a0c8a4f3d6e67665777deaa6eb8107e53637d3fa5dd3174ab84d +size 224685 diff --git a/data/rug_cup/test/r_9.png b/data/rug_cup/test/r_9.png new file mode 100644 index 0000000000000000000000000000000000000000..85a2e588d67a3fbce06159868f43a0d2084d3fb5 --- /dev/null +++ b/data/rug_cup/test/r_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46cd43968f8eca1306dd392aa3fbcc2314a4c8f6060e3c74982a433117da195f +size 254560 diff --git a/data/rug_cup/test/r_90.png b/data/rug_cup/test/r_90.png new file mode 100644 index 0000000000000000000000000000000000000000..b09b10329851b577899685848c7943805b5bfe27 --- /dev/null +++ b/data/rug_cup/test/r_90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8d6685a1a763f278875dc1c423b2f3b63fad6220a2d92cf8478cce1892ed30 +size 87219 diff --git a/data/rug_cup/test/r_90_depth_0001.png b/data/rug_cup/test/r_90_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..154c674d8a747e0891d4fe3a4bb0eef869aa81e8 --- /dev/null +++ b/data/rug_cup/test/r_90_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a56a91854a544457db6b49461f01360ed874a1aee0227d967457442557f4bf +size 18394 diff --git a/data/rug_cup/test/r_90_normal_0001.png b/data/rug_cup/test/r_90_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..9cd45e29bc99a8ed16c5643f5705be5c43585268 --- /dev/null +++ b/data/rug_cup/test/r_90_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46a9fa76bd00d34a3a3521e83766134e3892a02efe7058cccdde293ddaf3297d +size 85204 diff --git a/data/rug_cup/test/r_91.png b/data/rug_cup/test/r_91.png new file mode 100644 index 0000000000000000000000000000000000000000..983dda4b37ef49edcde0bcb7b9aef3c8ee9a64a7 --- /dev/null +++ b/data/rug_cup/test/r_91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb73de64c7311a195aa5365dc3f320a7d7a322e0fd629ffcc5ab7acd21b69a4 +size 88170 diff --git a/data/rug_cup/test/r_91_depth_0001.png b/data/rug_cup/test/r_91_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..b75d2e295adb6191db32e5c2329df221bbce1873 --- /dev/null +++ b/data/rug_cup/test/r_91_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a25623970af80b95d587fa3a3b2e4c115741891de88ec3655eec8842c5618c +size 18378 diff --git a/data/rug_cup/test/r_91_normal_0001.png b/data/rug_cup/test/r_91_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..59f2595edd84efa7d29e4ead9a42993e7d62dbd8 --- /dev/null +++ b/data/rug_cup/test/r_91_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c928a5430296e630b43ac4565dfe4513224ea88e31d96a0bf609d89ea0ff5b +size 86346 diff --git a/data/rug_cup/test/r_92.png b/data/rug_cup/test/r_92.png new file mode 100644 index 0000000000000000000000000000000000000000..09017800913ce0149b11a7179804bbc4d9419f42 --- /dev/null +++ b/data/rug_cup/test/r_92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:823b840c69972f7fbaa834faa8e397f31174225c61779d57fa8828ffc647a516 +size 89421 diff --git a/data/rug_cup/test/r_92_depth_0001.png b/data/rug_cup/test/r_92_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d2d0a9bbdaedb4842fa249c04077a3c22d51e293 --- /dev/null +++ b/data/rug_cup/test/r_92_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:539dff4dbf02569bda15903dd23104b2457339eed80ba71c52fef3bcb22f3107 +size 18456 diff --git a/data/rug_cup/test/r_92_normal_0001.png b/data/rug_cup/test/r_92_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e8fc8020661598fece1389baa273abddc4b05741 --- /dev/null +++ b/data/rug_cup/test/r_92_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b68ebc6f7e7d348547b42e4ad3409f137a435893dee1a14654c27a01f5bc0d7 +size 86871 diff --git a/data/rug_cup/test/r_93.png b/data/rug_cup/test/r_93.png new file mode 100644 index 0000000000000000000000000000000000000000..56c3ab64e550bf3a39a57d668716856fabf69beb --- /dev/null +++ b/data/rug_cup/test/r_93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6be00a60f5a8ed29e63e8063312a1683ad04e40d73322bf23bd15886298980e +size 90385 diff --git a/data/rug_cup/test/r_93_depth_0001.png b/data/rug_cup/test/r_93_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8b021983f6030b916c29896b16a7694640379eb3 --- /dev/null +++ b/data/rug_cup/test/r_93_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61c3eedc38025dad41e5cd8e64f015c490985259455a7c0e98a2585134158a77 +size 18446 diff --git a/data/rug_cup/test/r_93_normal_0001.png b/data/rug_cup/test/r_93_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..97e77c44f593586e71670f6669204f4563380c41 --- /dev/null +++ b/data/rug_cup/test/r_93_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea55cb6ec09b8824b6e4833c7456781ec6bbc835f4c40db9ad3235ef152b8bd +size 87301 diff --git a/data/rug_cup/test/r_94.png b/data/rug_cup/test/r_94.png new file mode 100644 index 0000000000000000000000000000000000000000..e833317dd8ce274dd0deb8c44cd5e00815acf128 --- /dev/null +++ b/data/rug_cup/test/r_94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa2f51756c3f5cec2f2229e10990ed1794bf6703a5b5f11a56baaa46c27b12a +size 90913 diff --git a/data/rug_cup/test/r_94_depth_0001.png b/data/rug_cup/test/r_94_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..adaead8fccccb257922cebb275251a8b81cfdddc --- /dev/null +++ b/data/rug_cup/test/r_94_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359b37fc3a2fccf4938de535c7039b1420b49e9e9c4bfa6c4fab62915a55f62c +size 18322 diff --git a/data/rug_cup/test/r_94_normal_0001.png b/data/rug_cup/test/r_94_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..96c08f28d86e1d88ade1583905a8d82fdf2626d2 --- /dev/null +++ b/data/rug_cup/test/r_94_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b974ca1d28756f079f28279be2f04eb5f7681a75338283705a7d9a3abed6155 +size 87255 diff --git a/data/rug_cup/test/r_95.png b/data/rug_cup/test/r_95.png new file mode 100644 index 0000000000000000000000000000000000000000..edfe5a474a49f8e8a3123edf26694318e1919a69 --- /dev/null +++ b/data/rug_cup/test/r_95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72421a5c04b7a3e9e2dfcbe3fb77bd9345c7f0bbbda418645095d064cd627852 +size 91344 diff --git a/data/rug_cup/test/r_95_depth_0001.png b/data/rug_cup/test/r_95_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..0fb7f424eed0ddf7c937052d2646c2d54df14723 --- /dev/null +++ b/data/rug_cup/test/r_95_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24579b90f8d39acc60baa77353f6bc450df4f151bcb324b60a2ed1c085c14ae1 +size 18595 diff --git a/data/rug_cup/test/r_95_normal_0001.png b/data/rug_cup/test/r_95_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..dbcb2f6b0a4aa37ad3fcb96574a8360b99063710 --- /dev/null +++ b/data/rug_cup/test/r_95_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3243b5566246fb7dc35abdb16956aa3dd353a8072b1ec65ee5fb16244fa6337d +size 87341 diff --git a/data/rug_cup/test/r_96.png b/data/rug_cup/test/r_96.png new file mode 100644 index 0000000000000000000000000000000000000000..3ccbc2bd29273b7e287fcd0d22c9b9529318d449 --- /dev/null +++ b/data/rug_cup/test/r_96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db940e928e1dc2d51df55613265609fdac743c86dc66371387c33f992966e061 +size 91482 diff --git a/data/rug_cup/test/r_96_depth_0001.png b/data/rug_cup/test/r_96_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6adbaebc3743996b94fafe35017fb984848434 --- /dev/null +++ b/data/rug_cup/test/r_96_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a90fea58a68542fc77cb4d779f4536160c839c3cbac0d66141cd9a809bbe5c +size 18361 diff --git a/data/rug_cup/test/r_96_normal_0001.png b/data/rug_cup/test/r_96_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..63b5d713d3b1844f64f8973a04de70ae8d149065 --- /dev/null +++ b/data/rug_cup/test/r_96_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266ce63bcb8bc4b8301194c2d2d66ccd6803b4f8f06a79a40c4ff60c2af209dd +size 86895 diff --git a/data/rug_cup/test/r_97.png b/data/rug_cup/test/r_97.png new file mode 100644 index 0000000000000000000000000000000000000000..d04593fd53b16e3d6708366874c5b97b52fef346 --- /dev/null +++ b/data/rug_cup/test/r_97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb8f797248503c203a2eea9070e39cd71167f1f7383928d28ec558752da4b63a +size 91382 diff --git a/data/rug_cup/test/r_97_depth_0001.png b/data/rug_cup/test/r_97_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..10ff79070625c47150d768a96ce95edfd8f6740e --- /dev/null +++ b/data/rug_cup/test/r_97_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fdf48c580e3d5b1219ed6083edd9b77c36ee95c7d23a01e122de23761378da +size 18362 diff --git a/data/rug_cup/test/r_97_normal_0001.png b/data/rug_cup/test/r_97_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..8783d18cd56b6531e0eff53df52305f9f8a14743 --- /dev/null +++ b/data/rug_cup/test/r_97_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee884b85701e54ba96d0a5ab64e9a0398a66d5be5566884e22f20dca2b8bb538 +size 86612 diff --git a/data/rug_cup/test/r_98.png b/data/rug_cup/test/r_98.png new file mode 100644 index 0000000000000000000000000000000000000000..7edb34234e444cd3433e2b672e4bffaed275063c --- /dev/null +++ b/data/rug_cup/test/r_98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe7b7430c2b10e060c1028903f5ba7c1391ed8a48ac42c5b66c5974f6559b79 +size 91084 diff --git a/data/rug_cup/test/r_98_depth_0001.png b/data/rug_cup/test/r_98_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..4d96a2acba0d32d0a7e093dc843279444dfffe6d --- /dev/null +++ b/data/rug_cup/test/r_98_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bdbdeab282050aba9552eb407f718106e21437297fda8db2b3a533e6943346a +size 18288 diff --git a/data/rug_cup/test/r_98_normal_0001.png b/data/rug_cup/test/r_98_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..beac06d687da67dd0d7eb77e8a4b8f81c7526f06 --- /dev/null +++ b/data/rug_cup/test/r_98_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0b834d0020fca7549369810cc69ce16f10243c539f87cace6e4ffa7645c953 +size 85576 diff --git a/data/rug_cup/test/r_99.png b/data/rug_cup/test/r_99.png new file mode 100644 index 0000000000000000000000000000000000000000..7ee3009fc94ca5dc9f9df29ccdc43cd41679aeb5 --- /dev/null +++ b/data/rug_cup/test/r_99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a9890c7bdceec8c6188a6190bd31846f90e55182c993f4cad5c6127462eb7c +size 90427 diff --git a/data/rug_cup/test/r_99_depth_0001.png b/data/rug_cup/test/r_99_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..999b29a23696d5eeb27f1b1f92b2c53f67295389 --- /dev/null +++ b/data/rug_cup/test/r_99_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb069d1c57cd77807b64bed39a4a5aff2c0772435f4af4fdd85f0409b733683 +size 17696 diff --git a/data/rug_cup/test/r_99_normal_0001.png b/data/rug_cup/test/r_99_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..6d1adb0cecb3e235aad1119f5c76d42a5a0a8786 --- /dev/null +++ b/data/rug_cup/test/r_99_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe53b5884a2a2dc40443040fb5d7796c9239c2d331394830f6dcc404c534e7a +size 85233 diff --git a/data/rug_cup/test/r_9_depth_0001.png b/data/rug_cup/test/r_9_depth_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..3916f1ebad106ec83cd252be3098ee933ed42f15 --- /dev/null +++ b/data/rug_cup/test/r_9_depth_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbdcbdf7cfc57bf7616853bb3d9447adb9b191ec09020b289cd1324cbd6a2095 +size 24750 diff --git a/data/rug_cup/test/r_9_normal_0001.png b/data/rug_cup/test/r_9_normal_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..c29724b439292e43e29a6176b87cad42227a7dd9 --- /dev/null +++ b/data/rug_cup/test/r_9_normal_0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122279a706e7bdc2d0e358dbb41034f53f8b696265e21b958f5a5e2452a1326d +size 220453 diff --git a/data/rug_cup/train/r_0.png b/data/rug_cup/train/r_0.png new file mode 100644 index 0000000000000000000000000000000000000000..ca46a40b38a1164f17e2dac47394fd2f1afee9a1 --- /dev/null +++ b/data/rug_cup/train/r_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d45fe8160d0219f70db2263f3779010a74653ab2ef3625a4aaba4c9c823ceac +size 317833 diff --git a/data/rug_cup/train/r_1.png b/data/rug_cup/train/r_1.png new file mode 100644 index 0000000000000000000000000000000000000000..f067e46f43f6bef74f51642376c3f84235d3b9f7 --- /dev/null +++ b/data/rug_cup/train/r_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502270d9988ba64ee4037539bad58232aa4ffb3c03141c552012d19cadf17560 +size 246170 diff --git a/data/rug_cup/train/r_10.png b/data/rug_cup/train/r_10.png new file mode 100644 index 0000000000000000000000000000000000000000..a6e266dedc7059dde8bc418b53027377e449faea --- /dev/null +++ b/data/rug_cup/train/r_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fea2eefca5a7f4f70240da8984f4c8d15aae8e8d26a37b2c15752fe98a02257 +size 209454 diff --git a/data/rug_cup/train/r_11.png b/data/rug_cup/train/r_11.png new file mode 100644 index 0000000000000000000000000000000000000000..aa20455090e90fa48cd9f2ab056c78181c6b913c --- /dev/null +++ b/data/rug_cup/train/r_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fc63d123578f69dc8f9aa4b219348ead9fc50a717794d729349f28216619ba +size 105500 diff --git a/data/rug_cup/train/r_12.png b/data/rug_cup/train/r_12.png new file mode 100644 index 0000000000000000000000000000000000000000..50fbb434b56c0144294f44f58b99260d60176d75 --- /dev/null +++ b/data/rug_cup/train/r_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f899adfa9e458f59bc6c8a8b9dfb456124aecb1c85331de96f8cec1f7563e5 +size 377597 diff --git a/data/rug_cup/train/r_13.png b/data/rug_cup/train/r_13.png new file mode 100644 index 0000000000000000000000000000000000000000..1103f68918ad39e70ffb85cc9e23d2aed9d74d75 --- /dev/null +++ b/data/rug_cup/train/r_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b089415eea5c7177ac3d5e5a1296abb3a105222f15e8b44a9d8ca259ed343f81 +size 340038 diff --git a/data/rug_cup/train/r_14.png b/data/rug_cup/train/r_14.png new file mode 100644 index 0000000000000000000000000000000000000000..5baeeed4dba69a6818f6baf76460040774c07173 --- /dev/null +++ b/data/rug_cup/train/r_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ae94c6e42de4ba08d2879a20c7d77aa2324cd251dc712677e95d3dc2104ba4 +size 81524 diff --git a/data/rug_cup/train/r_15.png b/data/rug_cup/train/r_15.png new file mode 100644 index 0000000000000000000000000000000000000000..12b17da6bd92ee0461e7fc8f06326a4db6919e63 --- /dev/null +++ b/data/rug_cup/train/r_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e91bc18b39e201e4976f62fd1672b5c7a185e4ae53f6539d7912fde58f78db +size 276819 diff --git a/data/rug_cup/train/r_16.png b/data/rug_cup/train/r_16.png new file mode 100644 index 0000000000000000000000000000000000000000..4be3e5b600437c25bff88ae00f500f3dcb2ca56c --- /dev/null +++ b/data/rug_cup/train/r_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e48724612bdc0cc39c54a6409f7e01aba4e785f3517162749883341dfbd5708 +size 251874 diff --git a/data/rug_cup/train/r_17.png b/data/rug_cup/train/r_17.png new file mode 100644 index 0000000000000000000000000000000000000000..43cd023b9d32f2c4458715114371b014c3e1e4a6 --- /dev/null +++ b/data/rug_cup/train/r_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:070de50a5e87205104953b41ba84a7bdd3ca11fadf5148134b024c20b097eada +size 313285 diff --git a/data/rug_cup/train/r_18.png b/data/rug_cup/train/r_18.png new file mode 100644 index 0000000000000000000000000000000000000000..11a71f377b4dec8b7b3198768c586e3ef8cd1e29 --- /dev/null +++ b/data/rug_cup/train/r_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5921f51f8e8b2407bfcbbe27c931a7bd89efaea381093c532f060fb91afbb09b +size 66374 diff --git a/data/rug_cup/train/r_19.png b/data/rug_cup/train/r_19.png new file mode 100644 index 0000000000000000000000000000000000000000..16014b7052edc5000e0a17f17b737c8f6a120ee5 --- /dev/null +++ b/data/rug_cup/train/r_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464131d136d51bd95aa50222b91583f9b5da357f143886004b5fadacd926a7c1 +size 286733 diff --git a/data/rug_cup/train/r_2.png b/data/rug_cup/train/r_2.png new file mode 100644 index 0000000000000000000000000000000000000000..1678803672e92f84cbfcab8eb23ca38923c3c54a --- /dev/null +++ b/data/rug_cup/train/r_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5b3c057d6d616758020535489f324de9b72c929818a393366b4c4b0cee0ba2 +size 63973 diff --git a/data/rug_cup/train/r_20.png b/data/rug_cup/train/r_20.png new file mode 100644 index 0000000000000000000000000000000000000000..2f7fdfeeefd7fc769c082a8182a6418ce9f09e78 --- /dev/null +++ b/data/rug_cup/train/r_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298881c8c8c1b25323c0e5b142d770a8cbad84a7e9deea2a401e99d50c6177ad +size 105050 diff --git a/data/rug_cup/train/r_21.png b/data/rug_cup/train/r_21.png new file mode 100644 index 0000000000000000000000000000000000000000..7140345b34b4262c6827691a777bd0ef98b1d26c --- /dev/null +++ b/data/rug_cup/train/r_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb957a40da7e97fabe4f4c41c449487ee058874896ce809d58bd384b5995951 +size 312244 diff --git a/data/rug_cup/train/r_22.png b/data/rug_cup/train/r_22.png new file mode 100644 index 0000000000000000000000000000000000000000..f3b5d5055d692c3916c491425436e2ca35d5700a --- /dev/null +++ b/data/rug_cup/train/r_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31cf2120b870ddcd2e4374943ec4f3942e361d051b26c35313a48b58b8de7dcc +size 108286 diff --git a/data/rug_cup/train/r_23.png b/data/rug_cup/train/r_23.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ac3e4c44fad5c1debb47e092cd7be0d89109f5 --- /dev/null +++ b/data/rug_cup/train/r_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d6077ddc6d260503a0dda77b2098ecc0df7f71db02554e476fb708e83641b8 +size 214316 diff --git a/data/rug_cup/train/r_24.png b/data/rug_cup/train/r_24.png new file mode 100644 index 0000000000000000000000000000000000000000..62d27cbd96bf707efa93a583e204b08085ea05c1 --- /dev/null +++ b/data/rug_cup/train/r_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a1938db50dd563a476eb11c70e6aad70ec407b0500193ae5d6612ef8a125ba6 +size 114787 diff --git a/data/rug_cup/train/r_25.png b/data/rug_cup/train/r_25.png new file mode 100644 index 0000000000000000000000000000000000000000..3a03f716da5a347194328df0afcf59933fa03b71 --- /dev/null +++ b/data/rug_cup/train/r_25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b924bbc7e7b94868bb17ed35b3d8d605141c40a0a6f28d672372458eb2830eb2 +size 67560 diff --git a/data/rug_cup/train/r_26.png b/data/rug_cup/train/r_26.png new file mode 100644 index 0000000000000000000000000000000000000000..2d92afbd69206c517cc8321cb8f7256157a1a801 --- /dev/null +++ b/data/rug_cup/train/r_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065760d368f1deb39af74d8beb3985430a91014e0ad7f4ac1df3e3ab058ce8c3 +size 378814 diff --git a/data/rug_cup/train/r_27.png b/data/rug_cup/train/r_27.png new file mode 100644 index 0000000000000000000000000000000000000000..3d3acc3d2295306e3311f58c944e41d71b558b9e --- /dev/null +++ b/data/rug_cup/train/r_27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fe1a290e9969e7db3f78b1c9b90aaf6557be8ace395411001c3efac8a5036f5 +size 258848 diff --git a/data/rug_cup/train/r_28.png b/data/rug_cup/train/r_28.png new file mode 100644 index 0000000000000000000000000000000000000000..9165286f4c2f3fafa1b380870e0300be116f03c4 --- /dev/null +++ b/data/rug_cup/train/r_28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28de7f7fe904a0118cd2b42192a3bae14f6fcf0308a21fac6aaaca43f9ed5479 +size 78359 diff --git a/data/rug_cup/train/r_29.png b/data/rug_cup/train/r_29.png new file mode 100644 index 0000000000000000000000000000000000000000..f70333e232d0fb802c2bdf7b5c3a5234b1efc085 --- /dev/null +++ b/data/rug_cup/train/r_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766da544b795ba5e89e0e53d612ab4811c0fbbd2cf830a386cdf90eb4eaba672 +size 275829 diff --git a/data/rug_cup/train/r_3.png b/data/rug_cup/train/r_3.png new file mode 100644 index 0000000000000000000000000000000000000000..1bc62f21c5ee4a4002ed453f5b91fd4eaa38d8f2 --- /dev/null +++ b/data/rug_cup/train/r_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf190d76d49281a19b3f512e82b233b174d872bb8e4cccd88962ded77b1acd5e +size 347649 diff --git a/data/rug_cup/train/r_30.png b/data/rug_cup/train/r_30.png new file mode 100644 index 0000000000000000000000000000000000000000..eb4934f90ce6c31eed4636706134cb29e9fcdcd1 --- /dev/null +++ b/data/rug_cup/train/r_30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25de759e6158513124029569e2cffee000ffe29d0c59a7ca788b305f4dfeb2a3 +size 303356 diff --git a/data/rug_cup/train/r_31.png b/data/rug_cup/train/r_31.png new file mode 100644 index 0000000000000000000000000000000000000000..3e1f8ee80f5b22d8481074f9dd3f9f213ec8f19a --- /dev/null +++ b/data/rug_cup/train/r_31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26178b125291f3737f3e21899f85b3c8c2ff745b64cc809d3ab22db31729e5f +size 74462 diff --git a/data/rug_cup/train/r_32.png b/data/rug_cup/train/r_32.png new file mode 100644 index 0000000000000000000000000000000000000000..dc0ecd09102b62a6f24f4c1ec1cf7ca92ac001ed --- /dev/null +++ b/data/rug_cup/train/r_32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22212b9c6aed785276c46244dcd7f9ff32096f0b7d0fcc95c16ee2a64fee4532 +size 122133 diff --git a/data/rug_cup/train/r_33.png b/data/rug_cup/train/r_33.png new file mode 100644 index 0000000000000000000000000000000000000000..fbf971660e3b4040031854c2729065534692cfe5 --- /dev/null +++ b/data/rug_cup/train/r_33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16a9b8e3ac99a3fc04352f055bc71b935b23a018422076cd68ef4ea3f7659b6 +size 330745 diff --git a/data/rug_cup/train/r_34.png b/data/rug_cup/train/r_34.png new file mode 100644 index 0000000000000000000000000000000000000000..0fbf5424e4607a4341454795bbbfa23a28fb9fa4 --- /dev/null +++ b/data/rug_cup/train/r_34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59defa52eaffe1e092eceb943e437771a0314d7aa7904ebd72cd046e8d00eafa +size 71208 diff --git a/data/rug_cup/train/r_35.png b/data/rug_cup/train/r_35.png new file mode 100644 index 0000000000000000000000000000000000000000..87f7b9571b5b63bdeb3b1d5eb04f7666fc3d8183 --- /dev/null +++ b/data/rug_cup/train/r_35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7037a3c26538ee1d248c3ee5dd636e6c835a307e117a9f1713b317e0d7bbc42d +size 254208 diff --git a/data/rug_cup/train/r_36.png b/data/rug_cup/train/r_36.png new file mode 100644 index 0000000000000000000000000000000000000000..d09a96f0c297783974062d8ca36f1e0fdcb5e790 --- /dev/null +++ b/data/rug_cup/train/r_36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c66f84fe7e3d18ac2b0cc2c70f3d028b73d6ee6310003d1f6f0ccf6d390ece5 +size 58295 diff --git a/data/rug_cup/train/r_37.png b/data/rug_cup/train/r_37.png new file mode 100644 index 0000000000000000000000000000000000000000..f9a995af640c20ee211a69e2b27a027814e760f9 --- /dev/null +++ b/data/rug_cup/train/r_37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a072dec7f04f6f5fd04fea5c5db65cd460721723d514271498ca329dad75a674 +size 191182 diff --git a/data/rug_cup/train/r_38.png b/data/rug_cup/train/r_38.png new file mode 100644 index 0000000000000000000000000000000000000000..4f354f69ceb37efc3623b728cf05c2198fe48430 --- /dev/null +++ b/data/rug_cup/train/r_38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d52246b1569d5e53719769e2953c7fc2cda7fa17632eda4cafdc15c1282913 +size 84787 diff --git a/data/rug_cup/train/r_39.png b/data/rug_cup/train/r_39.png new file mode 100644 index 0000000000000000000000000000000000000000..ceb4d751eb74c04d48b9c44f68c944ee40317090 --- /dev/null +++ b/data/rug_cup/train/r_39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be0efd06b0d01a31d7a7e1a9eebb28463f740189fdab7d7d77b18ea75b68820 +size 226022 diff --git a/data/rug_cup/train/r_4.png b/data/rug_cup/train/r_4.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d016bb871c55a640b5b408e241e3117a87f2ae --- /dev/null +++ b/data/rug_cup/train/r_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e901bb2345432c34a18041f87413c665a37656cb070adfcf82a7c73cc31095 +size 108742 diff --git a/data/rug_cup/train/r_40.png b/data/rug_cup/train/r_40.png new file mode 100644 index 0000000000000000000000000000000000000000..2cdfff21e834722e5722ea54a4b8263c29cb57e3 --- /dev/null +++ b/data/rug_cup/train/r_40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b86109119d9a9291454b7066f5c59ad01bf0f7b92c557dc820effe11460182 +size 329665 diff --git a/data/rug_cup/train/r_41.png b/data/rug_cup/train/r_41.png new file mode 100644 index 0000000000000000000000000000000000000000..72e286acd129b72d7f66954d3b0372e16e7877fd --- /dev/null +++ b/data/rug_cup/train/r_41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea381bd70bf2e18400a044e239479c6e7791108fe5b93cd8b476c8315e18f16 +size 100197 diff --git a/data/rug_cup/train/r_42.png b/data/rug_cup/train/r_42.png new file mode 100644 index 0000000000000000000000000000000000000000..d5b4b0009a15238f51a2fb7fd66eb1645446e694 --- /dev/null +++ b/data/rug_cup/train/r_42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12451689635d5e1d94c0a0f1ed780e70628e1077ae487b8886604e5b730eb7e5 +size 108347 diff --git a/data/rug_cup/train/r_43.png b/data/rug_cup/train/r_43.png new file mode 100644 index 0000000000000000000000000000000000000000..ef1f1cc218f43b8d122ef9622b23febf24703f30 --- /dev/null +++ b/data/rug_cup/train/r_43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d08d012a36c246497cd9e1ca6ba121368c661f1ea481a3a072530042c826ee +size 303109 diff --git a/data/rug_cup/train/r_44.png b/data/rug_cup/train/r_44.png new file mode 100644 index 0000000000000000000000000000000000000000..fbad32f57b9ee5f2b49d76c3a8af7cc4555777e9 --- /dev/null +++ b/data/rug_cup/train/r_44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662adc9986b3f0abb21eab0ecff64f3d97f02a8908350a91e24e8d6f61687e18 +size 70911 diff --git a/data/rug_cup/train/r_45.png b/data/rug_cup/train/r_45.png new file mode 100644 index 0000000000000000000000000000000000000000..84d098ea31e49292686012b401f4a2e73f012ef0 --- /dev/null +++ b/data/rug_cup/train/r_45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21d297267903438e68ac78c6577f8e61c44f1540bcf8e157177450c4c4b4f7b +size 332720 diff --git a/data/rug_cup/train/r_46.png b/data/rug_cup/train/r_46.png new file mode 100644 index 0000000000000000000000000000000000000000..cfa00c10ad0c7110c09898803f4c9dfd3ce2e1f7 --- /dev/null +++ b/data/rug_cup/train/r_46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307c865c926bf1abaf8938790bba0a6eeb48ddc8d72b4d2aedb222743d307564 +size 142302 diff --git a/data/rug_cup/train/r_47.png b/data/rug_cup/train/r_47.png new file mode 100644 index 0000000000000000000000000000000000000000..395d0ac500b2b090e72da189e1e22f2f014a2cd8 --- /dev/null +++ b/data/rug_cup/train/r_47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6fd9334c2a6e1b99135cd920b509d6ca37b3ab174194d8734dc45ed708e2cc7 +size 102557 diff --git a/data/rug_cup/train/r_48.png b/data/rug_cup/train/r_48.png new file mode 100644 index 0000000000000000000000000000000000000000..2c89bfdedcb26fe1905d598bec46b06d695964ee --- /dev/null +++ b/data/rug_cup/train/r_48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:771cb5d38fd716de2948b834963651b65521347a14bc815f9f0d794be073e239 +size 255025 diff --git a/data/rug_cup/train/r_49.png b/data/rug_cup/train/r_49.png new file mode 100644 index 0000000000000000000000000000000000000000..ddd4b87ed23265b9d4060abefb02f576a0d94115 --- /dev/null +++ b/data/rug_cup/train/r_49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82885fbeb1a3e852bdaf01c176cad57fbd0fb53b9103f2c03d9ebce6035f18ec +size 69757 diff --git a/data/rug_cup/train/r_5.png b/data/rug_cup/train/r_5.png new file mode 100644 index 0000000000000000000000000000000000000000..777f9a4b88274d66dee244181ae46cd64a0855d7 --- /dev/null +++ b/data/rug_cup/train/r_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe95b3427665bc3a471f312d05d9a61a872534dfdbfa4dfe94407f86f29aeca +size 301582 diff --git a/data/rug_cup/train/r_50.png b/data/rug_cup/train/r_50.png new file mode 100644 index 0000000000000000000000000000000000000000..b7fae5a1b7579dc86a01bdd484518cf765be419e --- /dev/null +++ b/data/rug_cup/train/r_50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3a9d64c14c08916d4e14460405f79e72bb843d5984030d98dbe1ae5a74c60f +size 118771 diff --git a/data/rug_cup/train/r_51.png b/data/rug_cup/train/r_51.png new file mode 100644 index 0000000000000000000000000000000000000000..11f57722b603837b1c24ee00d5933dd2db811f40 --- /dev/null +++ b/data/rug_cup/train/r_51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ea446aefe2d4797b5ae9a181b49a51c2526fd7c6ced007675c8536bc96574f +size 65834 diff --git a/data/rug_cup/train/r_52.png b/data/rug_cup/train/r_52.png new file mode 100644 index 0000000000000000000000000000000000000000..f91af4307f27c4f60c5c90e762495be816379ee6 --- /dev/null +++ b/data/rug_cup/train/r_52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df04ada6ee1feca4be6c80bdf6596d801c88deff2acde2cd3ee9c58adfa8c24 +size 66504 diff --git a/data/rug_cup/train/r_53.png b/data/rug_cup/train/r_53.png new file mode 100644 index 0000000000000000000000000000000000000000..958eb436336478cd6821be3c3ab3b11df0d2b121 --- /dev/null +++ b/data/rug_cup/train/r_53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb8b6f270f855078281bc10973be53acba08e1298d333e41536a926cb9e90e5e +size 152602 diff --git a/data/rug_cup/train/r_54.png b/data/rug_cup/train/r_54.png new file mode 100644 index 0000000000000000000000000000000000000000..beba519763941df783d4847b72af9fbc607add78 --- /dev/null +++ b/data/rug_cup/train/r_54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f9149f1f104a02b974e837ca39881487ac7c848b15e658efbb309744ade70a +size 168215 diff --git a/data/rug_cup/train/r_55.png b/data/rug_cup/train/r_55.png new file mode 100644 index 0000000000000000000000000000000000000000..acec11fd41fe741ca8dc1118f3479975393fa37a --- /dev/null +++ b/data/rug_cup/train/r_55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea096bc1fed46cf9b216c4fe9380e110b86126232b26eae472cde9945f4af25c +size 57805 diff --git a/data/rug_cup/train/r_56.png b/data/rug_cup/train/r_56.png new file mode 100644 index 0000000000000000000000000000000000000000..744aa94015553d8a19277c262f6448d636fd85b2 --- /dev/null +++ b/data/rug_cup/train/r_56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e30a321f77b9cc0615727cd6b5d286219d9e2e96221b565aaa420169b836c5 +size 89303 diff --git a/data/rug_cup/train/r_57.png b/data/rug_cup/train/r_57.png new file mode 100644 index 0000000000000000000000000000000000000000..7217a16b7f51b0edeac87f22280311c10f02cc84 --- /dev/null +++ b/data/rug_cup/train/r_57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0500d8fa6e177b8f27b0102941e0a122b9ddd3ccefa213180bfca06331a109 +size 94067 diff --git a/data/rug_cup/train/r_58.png b/data/rug_cup/train/r_58.png new file mode 100644 index 0000000000000000000000000000000000000000..af2f7742dea30cab1784adf8f4a8880627c2163b --- /dev/null +++ b/data/rug_cup/train/r_58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e049d226b78ad3182f46f8d85d90d00376781d70b5b91d9e79a074751aa432 +size 391703 diff --git a/data/rug_cup/train/r_59.png b/data/rug_cup/train/r_59.png new file mode 100644 index 0000000000000000000000000000000000000000..e7aeeb50b025e8e7047de5b8afed02967d2ed204 --- /dev/null +++ b/data/rug_cup/train/r_59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cdce16d61d9f91c11f4179773b9de66296072925ab8f128c595bddd2df0166f +size 327461 diff --git a/data/rug_cup/train/r_6.png b/data/rug_cup/train/r_6.png new file mode 100644 index 0000000000000000000000000000000000000000..fd9d5df42cfc8cef25f87395f622240fe94eebec --- /dev/null +++ b/data/rug_cup/train/r_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e849fba5c098f26243ec7dc0d27f4da3b41cba268760e66e3bfe9450929fb4d8 +size 90384 diff --git a/data/rug_cup/train/r_60.png b/data/rug_cup/train/r_60.png new file mode 100644 index 0000000000000000000000000000000000000000..9fa457191f08a9820428fff049b63bb785979f10 --- /dev/null +++ b/data/rug_cup/train/r_60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:997913110002bd99b4f5414763607915760a23811bb6243de115f36b1984b9c4 +size 310410 diff --git a/data/rug_cup/train/r_61.png b/data/rug_cup/train/r_61.png new file mode 100644 index 0000000000000000000000000000000000000000..a049f77ced47d7a56e4c9f4d7cc3e26d99d67343 --- /dev/null +++ b/data/rug_cup/train/r_61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd2c7aeb27b9369633eb0aab375ce49c4b5c3e9cd426734a9d73437805382d3 +size 344574 diff --git a/data/rug_cup/train/r_62.png b/data/rug_cup/train/r_62.png new file mode 100644 index 0000000000000000000000000000000000000000..4ba605b9bd9b6ed63038e787ffb5b5ffe4fd882b --- /dev/null +++ b/data/rug_cup/train/r_62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da361e098e4d1456d0d15fa4c94ee114fdff9a5bd969257cb562f69f779be9a1 +size 318944 diff --git a/data/rug_cup/train/r_63.png b/data/rug_cup/train/r_63.png new file mode 100644 index 0000000000000000000000000000000000000000..46cc3b2ee24e908a1ab270b94063d4b6ba8bdce7 --- /dev/null +++ b/data/rug_cup/train/r_63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713bbeb3b36efebf07c687f20ca6d5d8194e7f953a0419f6ccc5a1367fcf8eb6 +size 213004 diff --git a/data/rug_cup/train/r_64.png b/data/rug_cup/train/r_64.png new file mode 100644 index 0000000000000000000000000000000000000000..f97adce8a19337f94ce290a66427908df2a5e873 --- /dev/null +++ b/data/rug_cup/train/r_64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95f55c96351cb37bd3e19347133e4b0c9fd3959cb77aebf089455e8b3a5b3716 +size 186675 diff --git a/data/rug_cup/train/r_65.png b/data/rug_cup/train/r_65.png new file mode 100644 index 0000000000000000000000000000000000000000..3d96ae5d303b448f80aaa51c22bb4e6dd2685a6b --- /dev/null +++ b/data/rug_cup/train/r_65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce40babcd999c2b150508a9e892237a9399c8c83e267261753a1c9659d137787 +size 383766 diff --git a/data/rug_cup/train/r_66.png b/data/rug_cup/train/r_66.png new file mode 100644 index 0000000000000000000000000000000000000000..14349aaadcef0f9a05bbf6538d689699e39d50f3 --- /dev/null +++ b/data/rug_cup/train/r_66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34fb810b83984fdd1227759e1cf925ad2437c6c94e121e8340f2b0a9ce12ce45 +size 228529 diff --git a/data/rug_cup/train/r_67.png b/data/rug_cup/train/r_67.png new file mode 100644 index 0000000000000000000000000000000000000000..4dc29e95ba8143208090bf6345e7185eb50878c1 --- /dev/null +++ b/data/rug_cup/train/r_67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d27b5598b1426d3e5328ed007a67254d2673b93123faaee3129f61bf655c12 +size 160906 diff --git a/data/rug_cup/train/r_68.png b/data/rug_cup/train/r_68.png new file mode 100644 index 0000000000000000000000000000000000000000..2d6be9b0ac3ddf325b3f6eea80175ad551250e32 --- /dev/null +++ b/data/rug_cup/train/r_68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:281c4bdcf9d3ede323b421c7af234192e3b0f7ef12e99c54ccbc676c0c5c69c1 +size 83637 diff --git a/data/rug_cup/train/r_69.png b/data/rug_cup/train/r_69.png new file mode 100644 index 0000000000000000000000000000000000000000..0574e635ea55fb44102ad4a3542f0a3ef0155f7e --- /dev/null +++ b/data/rug_cup/train/r_69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd323dcfc9273a9f4b78af604394acd0d34e89c39960f1a9f57528541b4097aa +size 74109 diff --git a/data/rug_cup/train/r_7.png b/data/rug_cup/train/r_7.png new file mode 100644 index 0000000000000000000000000000000000000000..4c2be761cb078fab1b6cf0a7c67f0dea47660d44 --- /dev/null +++ b/data/rug_cup/train/r_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e22df564f342f83531d9f34f1beb943cfcc40e3802c6e5b531c2dad13c1a12c +size 287700 diff --git a/data/rug_cup/train/r_70.png b/data/rug_cup/train/r_70.png new file mode 100644 index 0000000000000000000000000000000000000000..56324dae17a83674883c39a15cd2b46a6244ac99 --- /dev/null +++ b/data/rug_cup/train/r_70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6bdce8c6855c9e5f58b87f04f793f8bba2c470a8ce918224a95bfb2ffadb18 +size 67770 diff --git a/data/rug_cup/train/r_71.png b/data/rug_cup/train/r_71.png new file mode 100644 index 0000000000000000000000000000000000000000..2e2a4f1d32a0d21e07d5e730277c5e033d2e4070 --- /dev/null +++ b/data/rug_cup/train/r_71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96722f87d7d58f7cdadc85009e59a4d985c0496a4ed4192d6bedae421e9eb8ed +size 283173 diff --git a/data/rug_cup/train/r_72.png b/data/rug_cup/train/r_72.png new file mode 100644 index 0000000000000000000000000000000000000000..ef19deaffb98b8c095169f8b89faa0c192024b8a --- /dev/null +++ b/data/rug_cup/train/r_72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c978be666d042e62c3bda26a3e62690f5fc8728f130b0b0f4bde4d8e74881ab9 +size 385613 diff --git a/data/rug_cup/train/r_73.png b/data/rug_cup/train/r_73.png new file mode 100644 index 0000000000000000000000000000000000000000..770172b945e2bb6ca9c77a65ac00a3efb3795b21 --- /dev/null +++ b/data/rug_cup/train/r_73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda32945d80bba7e36e73967f09725245aaf8d74bb801309c79a5f2bfbb5102d +size 309764 diff --git a/data/rug_cup/train/r_74.png b/data/rug_cup/train/r_74.png new file mode 100644 index 0000000000000000000000000000000000000000..bcaaaf323ebaff5b59aef0147588a7e3b7f983e6 --- /dev/null +++ b/data/rug_cup/train/r_74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c73fc4a8e35065a6ff511f067f0cf9a56e669ef2ff8e5a4b23c890fc391b76 +size 262159 diff --git a/data/rug_cup/train/r_75.png b/data/rug_cup/train/r_75.png new file mode 100644 index 0000000000000000000000000000000000000000..311fc1da8e02c524ede8b1a5ec4ef18a71f8e437 --- /dev/null +++ b/data/rug_cup/train/r_75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd013e9b0fdce78712b0109491196eb6118e29bdba1a719fbb7af4b1c9a8b05 +size 335340 diff --git a/data/rug_cup/train/r_76.png b/data/rug_cup/train/r_76.png new file mode 100644 index 0000000000000000000000000000000000000000..2a4fb0cd5b56d00aa27ef7e89e2cd394a4312256 --- /dev/null +++ b/data/rug_cup/train/r_76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:350bfa83d02108ff0f628b07830013ea17f9419bca863d0226c74a05492b2f81 +size 360004 diff --git a/data/rug_cup/train/r_77.png b/data/rug_cup/train/r_77.png new file mode 100644 index 0000000000000000000000000000000000000000..edd7b647823b5fa9045f77556e4cf47ae44a19ff --- /dev/null +++ b/data/rug_cup/train/r_77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c63f31cab03a3dacb808d6c602f7a93bb7ca4d621142c36e10397a87957d2b73 +size 60646 diff --git a/data/rug_cup/train/r_78.png b/data/rug_cup/train/r_78.png new file mode 100644 index 0000000000000000000000000000000000000000..f25e835f8740c6bd7048a711ee0854678e87e489 --- /dev/null +++ b/data/rug_cup/train/r_78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe8130b4925298ca2400b82eabcabc5409c13da8f3ad5bc3f3bc4e67ddcd21a +size 108449 diff --git a/data/rug_cup/train/r_79.png b/data/rug_cup/train/r_79.png new file mode 100644 index 0000000000000000000000000000000000000000..25749d41154b4464030ffab9cebf398670749295 --- /dev/null +++ b/data/rug_cup/train/r_79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc7d40db63164afcaa4bf68b701cff6f51a73e6a21bad372b4176a5cb3b4324 +size 52667 diff --git a/data/rug_cup/train/r_8.png b/data/rug_cup/train/r_8.png new file mode 100644 index 0000000000000000000000000000000000000000..57c028dfe439dd2ec6fc1ea35d2ed393f9423c03 --- /dev/null +++ b/data/rug_cup/train/r_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9ca60abe685e13ca9f9989c81c61f31c3be398381cdc8cf4b65971a817d0a5 +size 284033 diff --git a/data/rug_cup/train/r_80.png b/data/rug_cup/train/r_80.png new file mode 100644 index 0000000000000000000000000000000000000000..5905bce0fba858354ea69f7c21422425530e5a3b --- /dev/null +++ b/data/rug_cup/train/r_80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d61066c41ebf12f8868700796706787f990039e14132785ff9b7c3fe15f810 +size 344943 diff --git a/data/rug_cup/train/r_81.png b/data/rug_cup/train/r_81.png new file mode 100644 index 0000000000000000000000000000000000000000..9791a016d95a4d75f03b5a8aef0821e93c2351c3 --- /dev/null +++ b/data/rug_cup/train/r_81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f290badcf065cbed9d4497857cb6eb5f7e28d4af65ec64e3fa1b2cbcab07f76 +size 158382 diff --git a/data/rug_cup/train/r_82.png b/data/rug_cup/train/r_82.png new file mode 100644 index 0000000000000000000000000000000000000000..f701b714c325db9cdd90fa1a131bc6729f3638ec --- /dev/null +++ b/data/rug_cup/train/r_82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b39d7226763937687c7dfd571d39701a8b60265787664db2225a97d9696357f1 +size 282504 diff --git a/data/rug_cup/train/r_83.png b/data/rug_cup/train/r_83.png new file mode 100644 index 0000000000000000000000000000000000000000..e8836d5a2319d03214dc02312af5b47577265832 --- /dev/null +++ b/data/rug_cup/train/r_83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348895d5f611acac58a5c4a49d350123f975de5eb52993a98d2f11ed1e7b6148 +size 57131 diff --git a/data/rug_cup/train/r_84.png b/data/rug_cup/train/r_84.png new file mode 100644 index 0000000000000000000000000000000000000000..2ebd9055539ea03bbed1ce73b8a70c9b77c919af --- /dev/null +++ b/data/rug_cup/train/r_84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0500b49ae1b289ff2125fbcfbcef7c566c3f4603b9ec7f37914ca5fccb7377b2 +size 262974 diff --git a/data/rug_cup/train/r_85.png b/data/rug_cup/train/r_85.png new file mode 100644 index 0000000000000000000000000000000000000000..503a5d6a80d3032de1ae696f5b42bd68989cfc1e --- /dev/null +++ b/data/rug_cup/train/r_85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f27005b36b4c93134ad2978a89138c68d849d818da48e5e809c81f68aa06f10 +size 62748 diff --git a/data/rug_cup/train/r_86.png b/data/rug_cup/train/r_86.png new file mode 100644 index 0000000000000000000000000000000000000000..8cbff0ff81fdbd2a37d61f1720ee8323e4a4b563 --- /dev/null +++ b/data/rug_cup/train/r_86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae51f53c4ad40d6dba9877a4da1010dbb72671bba88c83f3ecabffefae81b374 +size 308687 diff --git a/data/rug_cup/train/r_87.png b/data/rug_cup/train/r_87.png new file mode 100644 index 0000000000000000000000000000000000000000..774d0cd511f40cfed06f80a0d987899a6c2d471c --- /dev/null +++ b/data/rug_cup/train/r_87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57627cfe7711c84734462eb6e6c561f19d343d7362ed1185928dff4cb58cbb8e +size 75545 diff --git a/data/rug_cup/train/r_88.png b/data/rug_cup/train/r_88.png new file mode 100644 index 0000000000000000000000000000000000000000..4c1b007427e58d929d8cecaa67c58b5078087ae4 --- /dev/null +++ b/data/rug_cup/train/r_88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cedf3f4b23b095264601f08aed21f7e92aa2ec5fc54526438ba3c8d93ef35de +size 385971 diff --git a/data/rug_cup/train/r_89.png b/data/rug_cup/train/r_89.png new file mode 100644 index 0000000000000000000000000000000000000000..8744f360978bd5142b16dbe6b3f485ea5becf02e --- /dev/null +++ b/data/rug_cup/train/r_89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf4f54bb8b146894019f01d3ba6fc05d6287ec0ddb1515a28af6a154c602206 +size 95418 diff --git a/data/rug_cup/train/r_9.png b/data/rug_cup/train/r_9.png new file mode 100644 index 0000000000000000000000000000000000000000..90f8d8cbf35f54d881a873625513f3dc16e2b07b --- /dev/null +++ b/data/rug_cup/train/r_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c4fc6c651973a6036cbc8f0ec411af319bfb778c11337990227d91140650dc +size 62750 diff --git a/data/rug_cup/train/r_90.png b/data/rug_cup/train/r_90.png new file mode 100644 index 0000000000000000000000000000000000000000..edc77b56bd7c3d0418a47f379b41dfc6fc602692 --- /dev/null +++ b/data/rug_cup/train/r_90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b397e454924f5f08fb4a697ffba4893da111f90e7e2fb94ed3c9dbf664b31f60 +size 98171 diff --git a/data/rug_cup/train/r_91.png b/data/rug_cup/train/r_91.png new file mode 100644 index 0000000000000000000000000000000000000000..3adad7a2956f510abc702c3ed7c56ceb89100676 --- /dev/null +++ b/data/rug_cup/train/r_91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03852f3e37f35ba6ab8b36d7c0fab071e42d48c6819c59db3b00c77e2aa9b21 +size 87250 diff --git a/data/rug_cup/train/r_92.png b/data/rug_cup/train/r_92.png new file mode 100644 index 0000000000000000000000000000000000000000..71d801a3085adc67e3b81fd53aa5b437f9065d04 --- /dev/null +++ b/data/rug_cup/train/r_92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d37d675eae6b841c5722f4ca9eae843f7ce589c45b0171ccc92e2d88dc5f16 +size 134356 diff --git a/data/rug_cup/train/r_93.png b/data/rug_cup/train/r_93.png new file mode 100644 index 0000000000000000000000000000000000000000..e3b7353e51a97e383877a42bf682e29d5cf73f08 --- /dev/null +++ b/data/rug_cup/train/r_93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e327b78dcb848d1018e63354d798333962e4d7dbc3a178492f18667654dd9b0a +size 99068 diff --git a/data/rug_cup/train/r_94.png b/data/rug_cup/train/r_94.png new file mode 100644 index 0000000000000000000000000000000000000000..b506edd421acf8e7f2fb13dbbf5dbaa91c5b5cd2 --- /dev/null +++ b/data/rug_cup/train/r_94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dae09b52a71f469619c1510bd1d9de991ee3fb07ecd311961591f4c29840d8b +size 246958 diff --git a/data/rug_cup/train/r_95.png b/data/rug_cup/train/r_95.png new file mode 100644 index 0000000000000000000000000000000000000000..c5622d1899298b1968a90a969799259f6299a525 --- /dev/null +++ b/data/rug_cup/train/r_95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94059b54e2a5af33229ffb34297ebce8aa956c36ed30132e2dd6305a5fd031d2 +size 73531 diff --git a/data/rug_cup/train/r_96.png b/data/rug_cup/train/r_96.png new file mode 100644 index 0000000000000000000000000000000000000000..99954253768724e10818ee0a1a4bcbc89bfe69c7 --- /dev/null +++ b/data/rug_cup/train/r_96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4545d61ef29469edfb17ac9313f8909d35191102bf17949d20dfef738ed843c +size 279713 diff --git a/data/rug_cup/train/r_97.png b/data/rug_cup/train/r_97.png new file mode 100644 index 0000000000000000000000000000000000000000..79e1ee08f154337ad8830ca770b3ce2574b3d788 --- /dev/null +++ b/data/rug_cup/train/r_97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638b7aacd75782f96890cff19ee8a2f91856780f011da07236a421b2bd72e384 +size 323554 diff --git a/data/rug_cup/train/r_98.png b/data/rug_cup/train/r_98.png new file mode 100644 index 0000000000000000000000000000000000000000..ac722dbedc78d59e48563633e1429651466fd192 --- /dev/null +++ b/data/rug_cup/train/r_98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c748c4be7b77c681b84bc0f20eddba253cf7a12ccc1f4b8f969b770d70db1d0 +size 364018 diff --git a/data/rug_cup/train/r_99.png b/data/rug_cup/train/r_99.png new file mode 100644 index 0000000000000000000000000000000000000000..4b054dd8a489641d207e6040ce69c9fa3e69dbee --- /dev/null +++ b/data/rug_cup/train/r_99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67ea0f69a132acd9232eac42098037b253982a50ad9d34616fb5eecc5f3dbf5 +size 74735 diff --git a/data/pirate_flag/test/transforms.json b/data/rug_cup/transforms_test.json similarity index 73% rename from data/pirate_flag/test/transforms.json rename to data/rug_cup/transforms_test.json index ef163cf376517dbfa5c975905ba534f669514a80..9dc402e44b027a9da41a11b5fc1ad5ec26e01cfc 100644 --- a/data/pirate_flag/test/transforms.json +++ b/data/rug_cup/transforms_test.json @@ -2,7 +2,7 @@ "camera_angle_x": 0.6911112070083618, "frames": [ { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_0", + "file_path": "test/r_0", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -13,14 +13,14 @@ ], [ 0.0, - -0.7341099381446838, - 0.6790306568145752, + -0.7341099977493286, + 0.6790305972099304, 2.737260103225708 ], [ 0.0, - 0.6790305972099304, - 0.7341099381446838, + 0.6790306568145752, + 0.7341098785400391, 2.959291696548462 ], [ @@ -32,23 +32,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_1", + "file_path": "test/r_1", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9980267286300659, + -0.9980266690254211, 0.04609514772891998, -0.042636688798666, -0.17187398672103882 ], [ - -0.06279052048921585, + -0.06279051303863525, -0.7326614260673523, 0.6776907444000244, 2.731858730316162 ], [ - -3.7252898543727042e-09, + -3.7252896323280993e-09, 0.6790306568145752, 0.7341099381446838, 2.959291696548462 @@ -62,25 +62,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_2", + "file_path": "test/r_2", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9921146631240845, + -0.9921147227287292, 0.09199368208646774, - -0.08512099087238312, + -0.08512099832296371, -0.34313371777534485 ], [ - -0.12533321976661682, + -0.12533323466777802, -0.7282049655914307, - 0.6738020181655884, + 0.6738020777702332, 2.7161829471588135 ], [ 0.0, 0.6791574358940125, - 0.7339926362037659, + 0.7339926958084106, 2.9588191509246826 ], [ @@ -92,25 +92,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_3", + "file_path": "test/r_3", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9822872877120972, + -0.9822872281074524, 0.13747061789035797, - -0.1273326277732849, + -0.1273326426744461, -0.5132942199707031 ], [ - -0.1873813420534134, + -0.1873813271522522, -0.72064608335495, - 0.6675009727478027, + 0.6675010323524475, 2.690782308578491 ], [ - 1.4901159417490817e-08, + 1.4901158529312397e-08, 0.6795374751091003, - 0.7336407899856567, + 0.7336408495903015, 2.9574005603790283 ], [ @@ -122,25 +122,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_4", + "file_path": "test/r_4", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.9685831665992737, 0.18230323493480682, - -0.1691514253616333, + -0.1691514402627945, -0.6818711757659912 ], [ -0.2486899197101593, -0.7100241184234619, - 0.658801257610321, + 0.6588013172149658, 2.655712842941284 ], [ 7.450580152834618e-09, 0.6801700592041016, - 0.7330543398857117, + 0.7330543994903564, 2.9550364017486572 ], [ @@ -152,24 +152,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_5", + "file_path": "test/r_5", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.9510564804077148, - 0.22627250850200653, + 0.22627252340316772, -0.21045726537704468, -0.848380446434021 ], [ -0.30901700258255005, - -0.6963950991630554, + -0.6963951587677002, 0.6477208137512207, 2.611046314239502 ], [ 1.4901159417490817e-08, - 0.6810539960861206, + 0.6810540556907654, 0.7322331070899963, 2.951726198196411 ], @@ -182,25 +182,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_6", + "file_path": "test/r_6", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.9297765493392944, - 0.26916420459747314, - -0.25113001465797424, + 0.26916423439979553, + -0.25112998485565186, -1.0123374462127686 ], [ -0.3681245744228363, - -0.6798312067985535, - 0.6342819929122925, + -0.6798312664031982, + 0.6342819333076477, 2.556872606277466 ], [ 0.0, - 0.6821876168251038, - 0.7311770915985107, + 0.6821876764297485, + 0.731177031993866, 2.9474692344665527 ], [ @@ -212,7 +212,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_7", + "file_path": "test/r_7", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -242,7 +242,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_8", + "file_path": "test/r_8", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -272,7 +272,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_9", + "file_path": "test/r_9", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -302,7 +302,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_10", + "file_path": "test/r_10", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -332,7 +332,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_11", + "file_path": "test/r_11", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -362,25 +362,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_12", + "file_path": "test/r_12", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.7289685010910034, - 0.49280789494514465, - -0.4751264750957489, + -0.7289685606956482, + 0.49280792474746704, + -0.4751265048980713, -1.915296196937561 ], [ - -0.6845471858978271, - -0.5247869491577148, - 0.5059581398963928, + -0.6845472455024719, + -0.5247870087623596, + 0.5059581995010376, 2.0395827293395996 ], [ - -1.4901161193847656e-08, - 0.6940740942955017, - 0.7199034094810486, + -1.4901162970204496e-08, + 0.6940741539001465, + 0.7199034690856934, 2.9020237922668457 ], [ @@ -392,24 +392,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_13", + "file_path": "test/r_13", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.6845470070838928, - 0.5228167176246643, + 0.5228167772293091, -0.5079940557479858, -2.0477898120880127 ], [ -0.7289686799049377, - -0.49095749855041504, - 0.47703805565834045, + -0.4909575283527374, + 0.47703808546066284, 1.9230021238327026 ], [ 0.0, - 0.6968667507171631, + 0.6968668103218079, 0.7172004580497742, 2.891127824783325 ], @@ -422,25 +422,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_14", + "file_path": "test/r_14", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.6374238729476929, 0.5503484010696411, - -0.5392655730247498, + -0.5392656326293945, -2.17384934425354 ], [ -0.7705133557319641, -0.4552876353263855, - 0.44611912965774536, + 0.44611918926239014, 1.7983639240264893 ], [ 0.0, 0.6998783946037292, - 0.7142619490623474, + 0.7142620086669922, 2.879282236099243 ], [ @@ -452,24 +452,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_15", + "file_path": "test/r_15", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.587785005569458, - 0.5752823948860168, + -0.5877850651741028, + 0.5752823352813721, -0.5688223242759705, -2.292996406555176 ], [ - -0.8090171217918396, - -0.41796690225601196, + -0.8090171813964844, + -0.4179668724536896, 0.413273423910141, 1.6659585237503052 ], [ 0.0, - 0.7031030058860779, + 0.7031029462814331, 0.7110879421234131, 2.866487503051758 ], @@ -482,24 +482,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_16", + "file_path": "test/r_16", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.5358266830444336, - 0.5975127816200256, + -0.5358266234397888, + 0.5975128412246704, -0.5965467095375061, -2.404757022857666 ], [ - -0.8443280458450317, - -0.3791930675506592, - 0.37857991456985474, + -0.844327986240387, + -0.37919309735298157, + 0.3785799443721771, 1.5261046886444092 ], [ - -2.980232594040899e-08, - 0.7065343856811523, + -2.9802322387695312e-08, + 0.7065344452857971, 0.7076785564422607, 2.8527438640594482 ], @@ -512,23 +512,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_17", + "file_path": "test/r_17", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.48175346851348877, + -0.4817534387111664, 0.6169499754905701, -0.622323215007782, -2.5086653232574463 ], [ - -0.8763067722320557, + -0.8763067126274109, -0.3391709327697754, 0.34212490916252136, 1.3791497945785522 ], [ - 1.4901161193847656e-08, + 1.4901160305669237e-08, 0.7101660370826721, 0.704034149646759, 2.838052749633789 @@ -542,7 +542,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_18", + "file_path": "test/r_18", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -572,25 +572,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_19", + "file_path": "test/r_19", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.3681242763996124, - 0.6471632719039917, - -0.667580783367157, + -0.3681243062019348, + 0.6471632122993469, + -0.6675808429718018, -2.6911044120788574 ], [ - -0.9297766089439392, - -0.25622984766960144, - 0.2643136978149414, + -0.929776668548584, + -0.25622981786727905, + 0.2643137276172638, 1.06548273563385 ], [ 0.0, - 0.7180013656616211, - 0.6960416436195374, + 0.7180013060569763, + 0.6960417032241821, 2.8058338165283203 ], [ @@ -602,24 +602,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_20", + "file_path": "test/r_20", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.30901673436164856, - 0.6578408479690552, + -0.30901676416397095, + 0.6578409075737, -0.6868434548377991, -2.768754482269287 ], [ - -0.9510565996170044, - -0.21374526619911194, + -0.9510566592216492, + -0.21374528110027313, 0.2231687754392624, 0.8996220827102661 ], [ 0.0, - 0.7221898436546326, + 0.7221899032592773, 0.6916947960853577, 2.788311004638672 ], @@ -632,17 +632,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_21", + "file_path": "test/r_21", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.24868960678577423, + -0.24868962168693542, 0.6655282974243164, -0.7037227153778076, -2.836796998977661 ], [ - -0.9685831665992737, + -0.9685832262039185, -0.17087841033935547, 0.18068505823612213, 0.7283647656440735 @@ -662,7 +662,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_22", + "file_path": "test/r_22", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -672,13 +672,13 @@ -2.8948326110839844 ], [ - -0.9822871685028076, + -0.9822872281074524, -0.12785077095031738, 0.13698837161064148, 0.5522178411483765 ], [ - 7.4505797087454084e-09, + 7.450580152834618e-09, 0.7310687303543091, 0.6823037266731262, 2.7504544258117676 @@ -692,24 +692,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_23", + "file_path": "test/r_23", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.12533289194107056, - 0.6719213724136353, + 0.67192143201828, -0.7299404740333557, -2.9424843788146973 ], [ -0.992114782333374, - -0.0848831757903099, + -0.0848831832408905, 0.09221266955137253, 0.37172117829322815 ], [ -3.725290298461914e-09, - 0.7357420325279236, + 0.7357420921325684, 0.6772617697715759, 2.7301297187805176 ], @@ -722,7 +722,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_24", + "file_path": "test/r_24", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -752,17 +752,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_25", + "file_path": "test/r_25", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 4.013392072010902e-07, + 4.0133917877938075e-07, 0.6664924621582031, -0.7455117106437683, -3.005254030227661 ], [ - -1.0, + -0.9999999403953552, 2.6748955406219466e-07, -2.9920306587882806e-07, -1.206126285069331e-06 @@ -782,25 +782,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_26", + "file_path": "test/r_26", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.06279095262289047, - 0.6594646573066711, - -0.7491084933280945, + 0.6594647169113159, + -0.7491084337234497, -3.0197529792785645 ], [ -0.9980267882347107, - 0.041490282863378525, - -0.04713023453950882, + 0.04149028658866882, + -0.04713023081421852, -0.18998804688453674 ], [ 0.0, - 0.7505896091461182, - 0.6607686281204224, + 0.7505896687507629, + 0.6607685685157776, 2.6636435985565186 ], [ @@ -812,17 +812,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_27", + "file_path": "test/r_27", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.12533368170261383, + 0.12533369660377502, 0.6496580839157104, -0.749823808670044, -3.022636651992798 ], [ - -0.9921146035194397, + -0.9921146631240845, 0.0820712074637413, -0.0947251245379448, -0.3818492293357849 @@ -842,17 +842,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_28", + "file_path": "test/r_28", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.18738175928592682, + 0.187381774187088, 0.6371641755104065, -0.7476027011871338, -3.0136830806732178 ], [ - -0.9822871088981628, + -0.9822871685028076, 0.12154587358236313, -0.14261320233345032, -0.5748922824859619 @@ -872,25 +872,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_29", + "file_path": "test/r_29", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.2486903965473175, 0.6220898032188416, - -0.7423996925354004, + -0.7423997521400452, -2.992709159851074 ], [ -0.9685831069946289, 0.1597258448600769, - -0.19061625003814697, + -0.19061626493930817, -0.7683987617492676 ], [ -7.450581485102248e-09, 0.7664802670478821, - 0.6422677636146545, + 0.6422678232192993, 2.589064359664917 ], [ @@ -902,25 +902,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_30", + "file_path": "test/r_30", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.30901747941970825, 0.6045553088188171, - -0.7341804504394531, + -0.7341805100440979, -2.959576368331909 ], [ -0.9510563015937805, 0.19643229246139526, - -0.2385501265525818, + -0.23855014145374298, -0.9616263508796692 ], [ 0.0, 0.7719632387161255, - 0.6356671452522278, + 0.6356672048568726, 2.5624563694000244 ], [ @@ -932,25 +932,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_31", + "file_path": "test/r_31", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.3681250810623169, - 0.5846945643424988, - -0.7229219675064087, + 0.5846946239471436, + -0.7229219079017639, -2.914191722869873 ], [ -0.9297763109207153, - 0.2314973622560501, - -0.2862255275249481, + 0.2314973771572113, + -0.28622549772262573, -1.153812050819397 ], [ 1.4901161193847656e-08, - 0.7775224447250366, - 0.6288551092147827, + 0.7775225043296814, + 0.6288550496101379, 2.5349960327148438 ], [ @@ -962,7 +962,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_32", + "file_path": "test/r_32", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -992,25 +992,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_33", + "file_path": "test/r_33", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.4817541837692261, 0.5385887622833252, - -0.6912562251091003, + -0.6912561655044556, -2.7865428924560547 ], [ -0.8763064742088318, 0.29609206318855286, - -0.3800218403339386, + -0.3800218105316162, -1.5319170951843262 ], [ -1.4901161193847656e-08, 0.7888293862342834, - 0.6146122813224792, + 0.6146122217178345, 2.477581262588501 ], [ @@ -1022,25 +1022,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_34", + "file_path": "test/r_34", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.5358273983001709, + 0.5358273386955261, 0.5126674771308899, - -0.6708659529685974, + -0.6708658933639526, -2.7043471336364746 ], [ - -0.8443276882171631, + -0.8443275690078735, 0.3253491222858429, - -0.4257450997829437, + -0.42574506998062134, -1.7162333726882935 ], [ - -1.4901162970204496e-08, + -1.4901161193847656e-08, 0.7945564985275269, - 0.6071901917457581, + 0.6071901321411133, 2.447661876678467 ], [ @@ -1052,24 +1052,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_35", + "file_path": "test/r_35", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.5877857804298401, - 0.4850653409957886, + 0.48506537079811096, -0.6474714875221252, -2.610041379928589 ], [ -0.8090166449546814, - 0.3524211049079895, + 0.3524211347103119, -0.47041624784469604, -1.8963086605072021 ], [ 1.4901161193847656e-08, - 0.8003191947937012, + 0.800319254398346, 0.5995739698410034, 2.4169602394104004 ], @@ -1082,17 +1082,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_36", + "file_path": "test/r_36", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.6374245882034302, + 0.637424647808075, 0.4559656083583832, -0.621116042137146, -2.5037992000579834 ], [ - -0.7705127596855164, + -0.7705128192901611, 0.3772081732749939, -0.513832688331604, -2.0713260173797607 @@ -1112,25 +1112,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_37", + "file_path": "test/r_37", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.6845476031303406, + 0.6845475435256958, 0.4255577623844147, - -0.5918574333190918, + -0.591857373714447, -2.3858535289764404 ], [ - -0.7289682030677795, + -0.7289681434631348, 0.39962583780288696, - -0.5557918548583984, + -0.5557917952537537, -2.240468740463257 ], [ - -1.4901162970204496e-08, + -1.4901161193847656e-08, 0.8119112253189087, - 0.5837808847427368, + 0.583780825138092, 2.3532960414886475 ], [ @@ -1142,7 +1142,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_38", + "file_path": "test/r_38", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -1172,7 +1172,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_39", + "file_path": "test/r_39", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -1202,17 +1202,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_40", + "file_path": "test/r_40", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.8090174198150635, + 0.8090173602104187, 0.3284419775009155, -0.48745933175086975, -1.9650115966796875 ], [ - -0.5877846479415894, + -0.5877845883369446, 0.45206233859062195, -0.6709312796592712, -2.704610824584961 @@ -1232,25 +1232,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_41", + "file_path": "test/r_41", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.8443283438682556, 0.2947700619697571, - -0.44745972752571106, + -0.44745978713035583, -1.8037680387496948 ], [ -0.5358261466026306, 0.4644840955734253, - -0.7050849795341492, + -0.705085039138794, -2.8422887325286865 ], [ 0.0, 0.8350839614868164, - 0.5501224398612976, + 0.5501224994659424, 2.2176146507263184 ], [ @@ -1262,7 +1262,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_42", + "file_path": "test/r_42", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -1292,25 +1292,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_43", + "file_path": "test/r_43", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9048274755477905, + 0.9048275351524353, 0.22667117416858673, - -0.36042681336402893, + -0.36042678356170654, -1.4529269933700562 ], [ - -0.42577847838401794, + -0.42577850818634033, 0.48170191049575806, - -0.7659477591514587, + -0.765947699546814, -3.0876340866088867 ], [ - 1.4901161193847656e-08, + 1.4901162970204496e-08, 0.8465124368667603, - 0.5323688387870789, + 0.5323687791824341, 2.146047353744507 ], [ @@ -1322,24 +1322,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_44", + "file_path": "test/r_44", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9297769069671631, - 0.19263477623462677, + 0.19263479113578796, -0.3136987090110779, -1.2645601034164429 ], [ -0.36812373995780945, - 0.4865412414073944, + 0.4865412712097168, -0.7923145890235901, -3.193922519683838 ], [ 1.4901162970204496e-08, - 0.8521556854248047, + 0.8521557450294495, 0.5232881307601929, 2.1094422340393066 ], @@ -1352,25 +1352,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_45", + "file_path": "test/r_45", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.951056718826294, + 0.9510567784309387, 0.1588599979877472, - -0.2650555670261383, + -0.2650555968284607, -1.0684733390808105 ], [ -0.3090161085128784, 0.4889223277568817, - -0.8157597184181213, + -0.8157597780227661, -3.2884328365325928 ], [ 0.0, 0.8577403426170349, - 0.5140831470489502, + 0.514083206653595, 2.072335720062256 ], [ @@ -1382,25 +1382,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_46", + "file_path": "test/r_46", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9685834050178528, - 0.12552891671657562, - -0.21468275785446167, + 0.9685832858085632, + 0.12552893161773682, + -0.21468277275562286, -0.8654139637947083 ], [ - -0.2486889660358429, - 0.48890480399131775, - -0.8361374139785767, + -0.2486889362335205, + 0.48890483379364014, + -0.8361374735832214, -3.3705780506134033 ], [ 0.0, - 0.8632581830024719, - 0.5047626495361328, + 0.8632582426071167, + 0.5047627091407776, 2.0347635746002197 ], [ @@ -1412,25 +1412,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_47", + "file_path": "test/r_47", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9822873473167419, - 0.09281624108552933, - -0.16277757287025452, + 0.9822872877120972, + 0.09281624853610992, + -0.1627775877714157, -0.6561774611473083 ], [ -0.1873803436756134, - 0.4865623414516449, - -0.8533143997192383, + 0.4865623712539673, + -0.8533145189285278, -3.4398207664489746 ], [ 0.0, - 0.8687013387680054, - 0.49533599615097046, + 0.8687013983726501, + 0.49533605575561523, 1.9967634677886963 ], [ @@ -1442,25 +1442,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_48", + "file_path": "test/r_48", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.992114782333374, 0.060888003557920456, - -0.10954825580120087, + -0.10954824835062027, -0.4416031539440155 ], [ -0.12533222138881683, 0.4819820523262024, - -0.8671707510948181, + -0.8671706914901733, -3.4956769943237305 ], [ 0.0, 0.8740628361701965, - 0.48581281304359436, + 0.485812783241272, 1.9583741426467896 ], [ @@ -1472,25 +1472,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_49", + "file_path": "test/r_49", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9980268478393555, - 0.029900547116994858, - -0.05521302670240402, + 0.029900548979640007, + -0.055213022977113724, -0.22257083654403687 ], [ -0.06278950721025467, - 0.4752633273601532, - -0.8776002526283264, + 0.4752633571624756, + -0.8776001930236816, -3.5377197265625 ], [ 0.0, - 0.8793352842330933, - 0.4762030243873596, + 0.879335343837738, + 0.47620299458503723, 1.9196357727050781 ], [ @@ -1502,25 +1502,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_50", + "file_path": "test/r_50", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9999999403953552, - -4.856893269788998e-07, - 9.208630444845767e-07, + -4.856893838223186e-07, + 9.208631013279955e-07, 3.7121180866961367e-06 ], [ 1.0410969935037429e-06, - 0.4665168225765228, - -0.8845121264457703, + 0.4665168523788452, + -0.884512186050415, -3.5655829906463623 ], [ 2.842170943040401e-14, - 0.884512186050415, - 0.4665168225765228, + 0.8845122456550598, + 0.4665168523788452, 1.8805897235870361 ], [ @@ -1532,25 +1532,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_51", + "file_path": "test/r_51", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9980266690254211, -0.028680982068181038, - 0.05585860460996628, + 0.05585860833525658, 0.2251732498407364 ], [ 0.06279158592224121, 0.45586341619491577, - -0.88783198595047, + -0.8878320455551147, -3.578965425491333 ], [ 0.0, 0.8895875811576843, - 0.45676472783088684, + 0.45676475763320923, 1.8412775993347168 ], [ @@ -1562,25 +1562,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_52", + "file_path": "test/r_52", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9921145439147949, - -0.05601910501718521, - 0.11211846768856049, + 0.9921146035194397, + -0.05601910874247551, + 0.11211846023797989, 0.45196399092674255 ], [ - 0.12533430755138397, - 0.4434329867362976, - -0.8875012397766113, + 0.12533432245254517, + 0.44343301653862, + -0.8875011801719666, -3.577631950378418 ], [ - -3.725290076417309e-09, - 0.8945552110671997, - 0.44695743918418884, + -3.725290298461914e-09, + 0.8945552706718445, + 0.44695740938186646, 1.8017430305480957 ], [ @@ -1592,25 +1592,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_53", + "file_path": "test/r_53", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9822870492935181, + 0.9822869896888733, -0.08190595358610153, - 0.16853360831737518, + 0.16853362321853638, 0.6793807744979858 ], [ - 0.18738241493701935, + 0.18738240003585815, 0.4293634593486786, - -0.8834787607192993, + -0.8834788203239441, -3.5614171028137207 ], [ 0.0, 0.8994100093841553, - 0.43710580468177795, + 0.43710583448410034, 1.762030005455017 ], [ @@ -1622,25 +1622,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_54", + "file_path": "test/r_54", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.968582808971405, -0.10624606162309647, - 0.2248532623052597, + 0.22485323250293732, 0.9064124822616577 ], [ 0.24869097769260406, 0.41379907727241516, - -0.8757414221763611, + -0.8757413029670715, -3.530226707458496 ], [ 7.450580152834618e-09, 0.9041471481323242, - 0.4272211194038391, + 0.42722105979919434, 1.7221834659576416 ], [ @@ -1652,24 +1652,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_55", + "file_path": "test/r_55", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9510562419891357, - -0.12895776331424713, + -0.12895777821540833, 0.28082388639450073, 1.1320374011993408 ], [ 0.3090181052684784, - 0.3968896269798279, + 0.39688965678215027, -0.8642836809158325, -3.484039306640625 ], [ 0.0, - 0.9087619781494141, + 0.9087620377540588, 0.4173146188259125, 1.6822491884231567 ], @@ -1682,24 +1682,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_56", + "file_path": "test/r_56", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9297760725021362, - -0.14997358620166779, + -0.14997360110282898, 0.33619099855422974, 1.355229377746582 ], [ 0.36812567710876465, - 0.3787887394428253, + 0.3787887692451477, -0.8491185903549194, -3.4229068756103516 ], [ 0.0, - 0.9132506847381592, + 0.913250744342804, 0.4073978066444397, 1.642273187637329 ], @@ -1712,17 +1712,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_57", + "file_path": "test/r_57", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9048265814781189, + 0.9048265218734741, -0.16924017667770386, 0.39070022106170654, 1.574963092803955 ], [ - 0.42578041553497314, + 0.42578038573265076, 0.3596525490283966, -0.8302776217460632, -3.346956491470337 @@ -1742,7 +1742,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_58", + "file_path": "test/r_58", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -1772,17 +1772,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_59", + "file_path": "test/r_59", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.8443272709846497, + 0.8443272113800049, -0.20238345861434937, 0.4961375296115875, 1.9999942779541016 ], [ - 0.5358279347419739, + 0.5358278751373291, 0.31890439987182617, -0.7817854285240173, -3.151477813720703 @@ -1802,25 +1802,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_60", + "file_path": "test/r_60", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.8090162873268127, -0.21622391045093536, - 0.5465710163116455, + 0.5465710759162903, 2.203298568725586 ], [ 0.5877863168716431, 0.29760587215423584, - -0.7522884607315063, + -0.7522885203361511, -3.032572031021118 ], [ 0.0, 0.929880678653717, - 0.3678613603115082, + 0.36786139011383057, 1.4828966856002808 ], [ @@ -1832,24 +1832,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_61", + "file_path": "test/r_61", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.7705124020576477, - -0.2282421886920929, + -0.2282421737909317, 0.5951606035232544, 2.3991692066192627 ], [ 0.6374250054359436, - 0.27589666843414307, + 0.2758966386318207, -0.7194236516952515, -2.9000895023345947 ], [ 0.0, - 0.9336950778961182, + 0.9336950182914734, 0.3580690920352936, 1.4434226751327515 ], @@ -1862,7 +1862,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_62", + "file_path": "test/r_62", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -1892,25 +1892,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_63", + "file_path": "test/r_63", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.6845461130142212, - -0.24688586592674255, - 0.6858890652656555, + -0.24688589572906494, + 0.6858891248703003, 2.7649075984954834 ], [ 0.7289695143699646, - 0.23184065520763397, - -0.644091010093689, + 0.23184068500995636, + -0.6440910696983337, -2.596414089202881 ], [ - -1.4901160305669237e-08, - 0.9409022927284241, - 0.33867788314819336, + -1.4901159417490817e-08, + 0.9409024119377136, + 0.33867791295051575, 1.365254282951355 ], [ @@ -1922,25 +1922,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_64", + "file_path": "test/r_64", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.637423038482666, -0.2535783052444458, - 0.7275917530059814, + 0.7275918126106262, 2.933016300201416 ], [ 0.7705140113830566, 0.20977771282196045, - -0.6019147634506226, + -0.6019148230552673, -2.426396369934082 ], [ -1.4901161193847656e-08, 0.9442941546440125, - 0.3291027247905731, + 0.3291027545928955, 1.326655626296997 ], [ @@ -1952,25 +1952,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_65", + "file_path": "test/r_65", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.5877843499183655, + 0.5877842903137207, -0.2585811913013458, - 0.7665802240371704, + 0.7665802836418152, 3.090183973312378 ], [ - 0.8090176582336426, + 0.8090175986289978, 0.18786977231502533, - -0.5569517612457275, + -0.5569518208503723, -2.2451446056365967 ], [ 0.0, 0.9475446343421936, - 0.31962358951568604, + 0.3196236193180084, 1.2884440422058105 ], [ @@ -1982,25 +1982,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_66", + "file_path": "test/r_66", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.535825788974762, + 0.5358257293701172, -0.2619548439979553, - 0.802664577960968, + 0.8026644587516785, 3.2356443405151367 ], [ - 0.8443286418914795, + 0.8443285822868347, 0.1662411391735077, - -0.5093850493431091, + -0.5093849897384644, -2.053396701812744 ], [ 0.0, 0.9506543278694153, - 0.31025218963623047, + 0.3102521598339081, 1.250666618347168 ], [ @@ -2012,23 +2012,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_67", + "file_path": "test/r_67", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.4817526042461395, + 0.48175257444381714, -0.26376858353614807, 0.8356676697731018, 3.3686842918395996 ], [ - 0.8763073682785034, + 0.8763073086738586, 0.14500756561756134, -0.4594108462333679, -1.8519444465637207 ], [ - 1.4901162970204496e-08, + 1.4901161193847656e-08, 0.9536240696907043, 0.30100005865097046, 1.2133702039718628 @@ -2042,23 +2042,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_68", + "file_path": "test/r_68", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.42577821016311646, + 0.42577818036079407, -0.26409995555877686, 0.8654270768165588, 3.4886484146118164 ], [ - 0.9048275947570801, + 0.9048275351524353, 0.12427560240030289, -0.4072377681732178, -1.6416280269622803 ], [ - 7.450581485102248e-09, + 7.450580596923828e-09, 0.9564552903175354, 0.29187870025634766, 1.1766008138656616 @@ -2072,7 +2072,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_69", + "file_path": "test/r_69", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -2102,7 +2102,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_70", + "file_path": "test/r_70", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -2132,25 +2132,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_71", + "file_path": "test/r_71", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.24868857860565186, - -0.25707268714904785, - 0.9338455200195312, + -0.25707265734672546, + 0.933845579624176, 3.7644519805908203 ], [ 0.9685834646224976, - 0.0660046860575676, - -0.23976944386959076, + 0.066004678606987, + -0.23976945877075195, -0.966541588306427 ], [ -3.725290076417309e-09, - 0.9641354084014893, - 0.2654109299182892, + 0.9641353487968445, + 0.2654109597206116, 1.0699057579040527 ], [ @@ -2162,24 +2162,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_72", + "file_path": "test/r_72", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.18737998604774475, - -0.25237277150154114, + -0.2523728013038635, 0.9493138194084167, 3.8268063068389893 ], [ 0.9822874665260315, - 0.04814233258366585, + 0.048142336308956146, -0.18108996748924255, -0.7299969792366028 ], [ -3.725290076417309e-09, - 0.9664316773414612, + 0.966431736946106, 0.2569235563278198, 1.0356919765472412 ], @@ -2192,7 +2192,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_73", + "file_path": "test/r_73", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -2222,7 +2222,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_74", + "file_path": "test/r_74", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -2252,25 +2252,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_75", + "file_path": "test/r_75", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -1.442436200704833e-06, - -0.2326129525899887, - 0.9725692868232727, + -1.4424363143916707e-06, + -0.2326129674911499, + 0.9725692272186279, 3.9205524921417236 ], [ - 0.9999999403953552, - -3.3552933587088773e-07, + 1.0, + -3.3552936429259717e-07, 1.4028692021383904e-06, 5.6551471061538905e-06 ], [ - -2.842170943040401e-14, - 0.9725692272186279, - 0.2326129525899887, + -2.8421712818535796e-14, + 0.9725692868232727, + 0.23261293768882751, 0.9376928806304932 ], [ @@ -2282,24 +2282,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_76", + "file_path": "test/r_76", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.06279198825359344, - -0.22448265552520752, + -0.06279198080301285, + -0.2244826704263687, 0.9724528193473816, 3.9200830459594727 ], [ - 0.9980267286300659, - -0.01412358321249485, + 0.9980266690254211, + -0.014123584143817425, 0.06118297949433327, 0.2466364949941635 ], [ - 9.31322685637781e-10, - 0.9743756651878357, + 9.313225746154785e-10, + 0.9743757247924805, 0.22492650151252747, 0.906707763671875 ], @@ -2312,25 +2312,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_77", + "file_path": "test/r_77", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.1253347247838974, - -0.2157496064901352, - 0.9683713912963867, + -0.2157496213912964, + 0.9683714509010315, 3.903630256652832 ], [ 0.9921145439147949, - -0.027255842462182045, - 0.12233522534370422, + -0.027255844324827194, + 0.12233523279428482, 0.4931491017341614 ], [ 1.862645371275562e-09, - 0.9760681390762329, - 0.217464417219162, + 0.9760681986808777, + 0.21746443212032318, 0.8766271471977234 ], [ @@ -2342,25 +2342,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_78", + "file_path": "test/r_78", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.1873828023672104, + -0.18738281726837158, -0.20651188492774963, - 0.960333526134491, + 0.9603334665298462, 3.8712282180786133 ], [ - 0.9822869300842285, + 0.9822869896888733, -0.039394576102495193, - 0.18319493532180786, + 0.18319492042064667, 0.7384824156761169 ], [ 0.0, 0.9776507616043091, - 0.21023578941822052, + 0.21023577451705933, 0.8474875688552856 ], [ @@ -2372,25 +2372,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_79", + "file_path": "test/r_79", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.2486913949251175, - -0.19686377048492432, - 0.9483654499053955, + -0.1968637853860855, + 0.9483655095100403, 3.822983741760254 ], [ 0.9685827493667603, - -0.05054635554552078, - 0.24350044131278992, + -0.05054635927081108, + 0.2435004562139511, 0.9815817475318909 ], [ 3.725290298461914e-09, - 0.9791269302368164, - 0.20324929058551788, + 0.9791269898414612, + 0.20324930548667908, 0.8193241357803345 ], [ @@ -2402,13 +2402,13 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_80", + "file_path": "test/r_80", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.30901849269866943, -0.18689529597759247, - 0.9325113296508789, + 0.9325113892555237, 3.7590739727020264 ], [ @@ -2420,7 +2420,7 @@ [ 0.0, 0.980501115322113, - 0.19651339948177338, + 0.19651341438293457, 0.7921710014343262 ], [ @@ -2432,17 +2432,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_81", + "file_path": "test/r_81", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.3681260347366333, + -0.3681260645389557, -0.17669110000133514, - 0.9128326177597046, + 0.9128325581550598, 3.679746150970459 ], [ - 0.9297758936882019, + 0.9297759532928467, -0.06995727866888046, 0.361417680978775, 1.4569213390350342 @@ -2450,7 +2450,7 @@ [ 0.0, 0.9817770719528198, - 0.19003620743751526, + 0.19003619253635406, 0.7660605311393738 ], [ @@ -2462,25 +2462,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_82", + "file_path": "test/r_82", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.4257807731628418, -0.16633009910583496, - 0.8894070386886597, + 0.8894070982933044, 3.5853147506713867 ], [ 0.9048263430595398, -0.0782693400979042, - 0.41852495074272156, + 0.41852498054504395, 1.6871281862258911 ], [ 7.450580596923828e-09, 0.9829588532447815, - 0.18382541835308075, + 0.18382543325424194, 0.7410240173339844 ], [ @@ -2492,7 +2492,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_83", + "file_path": "test/r_83", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -2522,7 +2522,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_84", + "file_path": "test/r_84", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -2552,7 +2552,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_85", + "file_path": "test/r_85", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -2582,24 +2582,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_86", + "file_path": "test/r_86", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.6374253630638123, - -0.1246599406003952, + -0.1246599480509758, 0.7603609561920166, 3.0651133060455322 ], [ 0.7705122232437134, - -0.10312803089618683, + -0.10312803834676743, 0.6290274858474731, 2.535691022872925 ], [ -7.450581485102248e-09, - 0.9868253469467163, + 0.9868254065513611, 0.1617884337902069, 0.652190089225769 ], @@ -2612,24 +2612,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_87", + "file_path": "test/r_87", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.6845484375953674, - -0.11445745080709457, + -0.11445745825767517, 0.719925582408905, 2.902113199234009 ], [ 0.7289674282073975, - -0.10748308151960373, + -0.10748308897018433, 0.6760575175285339, 2.7252752780914307 ], [ 0.0, - 0.9875964522361755, + 0.9875965118408203, 0.15701310336589813, 0.6329401135444641 ], @@ -2642,25 +2642,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_88", + "file_path": "test/r_88", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.7289698123931885, + -0.7289697527885437, -0.1044226810336113, - 0.6765344142913818, + 0.6765344738960266, 2.7271976470947266 ], [ - 0.6845458149909973, + 0.6845457553863525, -0.11119923740625381, - 0.7204384803771973, + 0.720438539981842, 2.9041807651519775 ], [ - -7.450580596923828e-09, + -7.450580152834618e-09, 0.9882968068122864, - 0.15254297852516174, + 0.15254299342632294, 0.6149204969406128 ], [ @@ -2672,23 +2672,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_89", + "file_path": "test/r_89", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.7705143690109253, + -0.7705144286155701, -0.09458284825086594, 0.630366325378418, 2.5410878658294678 ], [ - 0.6374226212501526, + 0.6374226808547974, -0.1143314316868782, 0.7619847059249878, 3.0716586112976074 ], [ - 7.450580596923828e-09, + 7.450581485102248e-09, 0.9889299273490906, 0.1483832597732544, 0.5981520414352417 @@ -2702,7 +2702,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_90", + "file_path": "test/r_90", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -2732,25 +2732,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_91", + "file_path": "test/r_91", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.8443289399147034, -0.07555866986513138, - 0.5304710268974304, + 0.5304710865020752, 2.138397455215454 ], [ 0.535825252532959, -0.11906188726425171, - 0.8358919620513916, + 0.8358920216560364, 3.369588613510132 ], [ 0.0, 0.9900076389312744, - 0.14101362228393555, + 0.14101363718509674, 0.5684441328048706 ], [ @@ -2762,24 +2762,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_92", + "file_path": "test/r_92", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.8763076066970825, - -0.06639131158590317, + -0.06639131903648376, 0.47715529799461365, 1.923474669456482 ], [ 0.48175206780433655, - -0.12076587975025177, + -0.12076588720083237, 0.8679460883140564, 3.498802900314331 ], [ -3.725290742551124e-09, - 0.9904583096504211, + 0.9904583692550659, 0.13781219720840454, 0.5555387735366821 ], @@ -2792,25 +2792,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_93", + "file_path": "test/r_93", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.9048278331756592, -0.05745357647538185, - 0.42188340425491333, + 0.42188337445259094, 1.7006664276123047 ], [ 0.4257775545120239, -0.12209566682577133, - 0.896552324295044, + 0.8965522646903992, 3.6141180992126465 ], [ 0.0, 0.990854024887085, - 0.13493800163269043, + 0.13493798673152924, 0.543952465057373 ], [ @@ -2822,24 +2822,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_94", + "file_path": "test/r_94", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.929777204990387, - -0.048737335950136185, + -0.04873733967542648, 0.3648822009563446, 1.4708871841430664 ], [ 0.36812272667884827, - -0.12309716641902924, + -0.12309717386960983, 0.9215924739837646, 3.7150580883026123 ], [ 0.0, - 0.9911969900131226, + 0.9911970496177673, 0.13239426910877228, 0.5336983799934387 ], @@ -2852,7 +2852,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_95", + "file_path": "test/r_95", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -2882,24 +2882,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_96", + "file_path": "test/r_96", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.9685837030410767, - -0.031909000128507614, - 0.24663233757019043, + -0.031908996403217316, + 0.24663235247135162, 0.9942068457603455 ], [ 0.2486879974603653, - -0.12427837401628494, - 0.9605773687362671, + -0.12427836656570435, + 0.9605774283409119, 3.8722116947174072 ], [ 3.725290742551124e-09, - 0.9917341470718384, + 0.9917340874671936, 0.12830936908721924, 0.5172316431999207 ], @@ -2912,25 +2912,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_97", + "file_path": "test/r_97", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9822876453399658, - -0.023754598572850227, - 0.1858675181865692, + -0.9822877049446106, + -0.023754600435495377, + 0.18586750328540802, 0.7492559552192688 ], [ - 0.18737933039665222, - -0.12452733516693115, - 0.974362313747406, + 0.18737934529781342, + -0.12452734261751175, + 0.9743622541427612, 3.9277801513671875 ], [ 0.0, - 0.9919317364692688, - 0.12677279114723206, + 0.9919317960739136, + 0.12677277624607086, 0.5110374689102173 ], [ @@ -2942,25 +2942,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_98", + "file_path": "test/r_98", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9921149611473083, - -0.015738578513264656, - 0.12433909624814987, + -0.9921149015426636, + -0.015738580375909805, + 0.12433910369873047, 0.5012269616127014 ], [ - 0.12533122301101685, - -0.12458571791648865, - 0.9842613339424133, + 0.12533120810985565, + -0.12458572536706924, + 0.9842613935470581, 3.967684507369995 ], [ 0.0, - 0.9920839667320251, - 0.12557588517665863, + 0.9920840263366699, + 0.12557590007781982, 0.5062126517295837 ], [ @@ -2972,25 +2972,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_99", + "file_path": "test/r_99", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9980269074440002, - -0.007830976508557796, - 0.06229820474982262, + -0.9980268478393555, + -0.007830975577235222, + 0.062298208475112915, 0.2511321008205414 ], [ - 0.0627884641289711, - -0.12447391450405121, - 0.9902341961860657, + 0.0627884566783905, + -0.12447390705347061, + 0.9902342557907104, 3.9917616844177246 ], [ - 4.656612873077393e-10, - 0.9921919703483582, - 0.1247200071811676, + 4.6566125955216364e-10, + 0.9921919107437134, + 0.1247200146317482, 0.5027624368667603 ], [ @@ -3002,25 +3002,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_100", + "file_path": "test/r_100", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9999999403953552, - 2.58621213333754e-07, - -2.0660702375607798e-06, + -1.0, + 2.5862118491204455e-07, + -2.0660704649344552e-06, -8.328596777573694e-06 ], [ - -2.0821939870074857e-06, - -0.12420611083507538, - 0.9922564029693604, + -2.082194214381161e-06, + -0.12420610338449478, + 0.9922564625740051, 3.9999136924743652 ], [ - -2.8421707736338113e-14, - 0.9922564625740051, - 0.12420609593391418, + -2.842170943040401e-14, + 0.9922564029693604, + 0.12420610338449478, 0.5006908178329468 ], [ @@ -3032,24 +3032,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_101", + "file_path": "test/r_101", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9980266094207764, - 0.007788465358316898, + -0.9980265498161316, + 0.007788465823978186, -0.06230772286653519, -0.25117048621177673 ], [ - -0.06279262155294418, - -0.1237899586558342, + -0.06279261410236359, + -0.1237899661064148, 0.9903196692466736, 3.9921064376831055 ], [ 0.0, - 0.9922778010368347, + 0.9922778606414795, 0.12403472512960434, 0.5 ], @@ -3062,25 +3062,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_102", + "file_path": "test/r_102", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.9921144247055054, - 0.015567414462566376, - -0.12436478585004807, + 0.015567413531243801, + -0.12436479330062866, -0.501330554485321 ], [ -0.12533533573150635, - -0.12322667241096497, - 0.984431803226471, + -0.12322666496038437, + 0.9844318628311157, 3.968372106552124 ], [ 0.0, - 0.9922564625740051, - 0.12420608848333359, + 0.9922564029693604, + 0.12420609593391418, 0.5006908178329468 ], [ @@ -3092,25 +3092,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_103", + "file_path": "test/r_103", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9822868704795837, + -0.9822869300842285, 0.023370463401079178, - -0.18592031300067902, + -0.1859203279018402, -0.7494688034057617 ], [ - -0.18738342821598053, + -0.18738344311714172, -0.12251083552837372, - 0.974617063999176, + 0.9746171236038208, 3.928807258605957 ], [ - -1.862645149230957e-09, + -1.862645371275562e-09, 0.9921919703483582, - 0.124719999730587, + 0.1247200071811676, 0.5027624368667603 ], [ @@ -3122,25 +3122,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_104", + "file_path": "test/r_104", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.9685826301574707, - 0.031229721382260323, - -0.24672335386276245, + 0.031229723244905472, + -0.24672336876392365, -0.994573712348938 ], [ -0.24869202077388763, - -0.12163062393665314, - 0.9609152674674988, + -0.12163063138723373, + 0.9609153270721436, 3.8735735416412354 ], [ 0.0, - 0.9920839667320251, - 0.12557588517665863, + 0.9920840263366699, + 0.12557590007781982, 0.5062126517295837 ], [ @@ -3152,7 +3152,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_105", + "file_path": "test/r_105", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -3163,13 +3163,13 @@ ], [ -0.3090191185474396, - -0.12056799978017807, - 0.9433824419975281, + -0.12056800723075867, + 0.9433825016021729, 3.80289626121521 ], [ 0.0, - 0.9919317364692688, + 0.9919317960739136, 0.12677279114723206, 0.5110374689102173 ], @@ -3182,24 +3182,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_106", + "file_path": "test/r_106", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.9297757148742676, - 0.047234103083610535, + 0.047234099358320236, -0.3650837242603302, -1.4716997146606445 ], [ -0.36812663078308105, - -0.11929894238710403, + -0.11929893493652344, 0.9220902323722839, 3.71706485748291 ], [ 3.725290742551124e-09, - 0.9917341470718384, + 0.9917340874671936, 0.12830936908721924, 0.5172316431999207 ], @@ -3212,23 +3212,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_107", + "file_path": "test/r_107", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9048260450363159, + -0.9048261046409607, 0.05542988330125809, - -0.42215782403945923, + -0.4221578538417816, -1.7017728090286255 ], [ - -0.42578133940696716, + -0.42578136920928955, -0.11779380589723587, - 0.8971257209777832, + 0.897125780582428, 3.6164300441741943 ], [ - -3.725290298461914e-09, + -3.725290742551124e-09, 0.991489827632904, 0.1301838904619217, 0.5247880816459656 @@ -3242,24 +3242,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_108", + "file_path": "test/r_108", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.8763056397438049, - 0.06378167122602463, + -0.8763055801391602, + 0.06378167867660522, -0.4775148034095764, -1.9249238967895508 ], [ - -0.48175570368766785, - -0.11601782590150833, + -0.48175567388534546, + -0.11601783335208893, 0.8685915470123291, 3.5014047622680664 ], [ - -7.450580596923828e-09, - 0.9911971092224121, + -7.450580152834618e-09, + 0.9911971688270569, 0.13239425420761108, 0.5336983799934387 ], @@ -3272,25 +3272,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_109", + "file_path": "test/r_109", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.8443267345428467, + -0.8443266749382019, 0.0723036676645279, - -0.5309280753135681, + -0.5309280157089233, -2.1402394771575928 ], [ - -0.5358287692070007, + -0.535828709602356, -0.11393176764249802, - 0.8366044759750366, + 0.8366043567657471, 3.3724606037139893 ], [ 0.0, 0.990854024887085, - 0.13493800163269043, + 0.13493798673152924, 0.543952465057373 ], [ @@ -3302,24 +3302,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_110", + "file_path": "test/r_110", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.809015691280365, - 0.08100424706935883, + -0.8090156316757202, + 0.08100425451993942, -0.5821786522865295, -2.3468375205993652 ], [ - -0.5877872109413147, - -0.11149222403764725, + -0.5877871513366699, + -0.11149223148822784, 0.8012961745262146, 3.230128526687622 ], [ - 7.450581485102248e-09, - 0.9904583096504211, + 7.450580596923828e-09, + 0.9904583692550659, 0.13781219720840454, 0.5555387735366821 ], @@ -3332,17 +3332,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_111", + "file_path": "test/r_111", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.7705117464065552, + -0.7705116868019104, 0.08988573402166367, -0.6310563683509827, -2.543869733810425 ], [ - -0.6374258399009705, + -0.6374257802963257, -0.10865266621112823, 0.7628124356269836, 3.074995517730713 @@ -3362,25 +3362,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_112", + "file_path": "test/r_112", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.728967010974884, 0.09894376993179321, - -0.6773604154586792, + -0.677360475063324, -2.730527400970459 ], [ -0.6845487952232361, -0.10536391288042068, - 0.7213121652603149, + 0.7213122248649597, 2.907702684402466 ], [ 0.0, 0.9894990921020508, - 0.14453865587711334, + 0.14453867077827454, 0.5826539993286133 ], [ @@ -3392,7 +3392,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_113", + "file_path": "test/r_113", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -3422,7 +3422,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_114", + "file_path": "test/r_114", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -3432,7 +3432,7 @@ -3.0696940422058105 ], [ - -0.7705147862434387, + -0.770514726638794, -0.09723426401615143, 0.6299622058868408, 2.539458990097046 @@ -3452,25 +3452,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_115", + "file_path": "test/r_115", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.5877832174301147, - 0.1270264983177185, - -0.7989837527275085, + 0.1270265132188797, + -0.7989838123321533, -3.220806837081909 ], [ -0.8090184926986694, - -0.09228967130184174, - 0.5804926156997681, + -0.09228967875242233, + 0.5804926753044128, 2.340040922164917 ], [ 7.450580596923828e-09, - 0.9875964522361755, - 0.15701310336589813, + 0.9875965118408203, + 0.15701311826705933, 0.6329401135444641 ], [ @@ -3482,25 +3482,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_116", + "file_path": "test/r_116", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.535824716091156, - 0.1366027146577835, - -0.8332054615020752, + -0.5358246564865112, + 0.1366027295589447, + -0.8332055807113647, -3.3587591648101807 ], [ - -0.844329297542572, - -0.08669023960828781, - 0.5287653803825378, + -0.8443292379379272, + -0.08669024705886841, + 0.5287654399871826, 2.131521701812744 ], [ 0.0, - 0.9868253469467163, - 0.1617884337902069, + 0.9868254065513611, + 0.1617884486913681, 0.652190089225769 ], [ @@ -3512,7 +3512,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_117", + "file_path": "test/r_117", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -3542,17 +3542,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_118", + "file_path": "test/r_118", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.42577698826789856, + -0.42577701807022095, 0.15584054589271545, -0.8913066387176514, -3.5929722785949707 ], [ - -0.9048280715942383, + -0.9048281311988831, -0.07333251088857651, 0.41941431164741516, 1.6907132863998413 @@ -3572,23 +3572,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_119", + "file_path": "test/r_119", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.3681221306324005, + -0.3681221008300781, 0.16539661586284637, -0.9149481058120728, -3.6882739067077637 ], [ - -0.9297774434089661, + -0.9297773838043213, -0.0654846578836441, 0.3622508645057678, 1.460279941558838 ], [ - 3.725290298461914e-09, + 3.725290076417309e-09, 0.9840505719184875, 0.1778884083032608, 0.7170910835266113 @@ -3602,13 +3602,13 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_120", + "file_path": "test/r_120", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.30901458859443665, 0.17482852935791016, - -0.9348500967025757, + -0.9348501563072205, -3.7685017585754395 ], [ @@ -3632,23 +3632,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_121", + "file_path": "test/r_121", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.24868734180927277, + -0.24868732690811157, 0.18406599760055542, -0.9509333372116089, -3.8333351612091064 ], [ - -0.9685838222503662, + -0.9685837626457214, -0.047259602695703506, 0.24415552616119385, 0.9842224717140198 ], [ - -3.725290298461914e-09, + -3.725290076417309e-09, 0.9817770719528198, 0.19003620743751526, 0.7660605311393738 @@ -3662,25 +3662,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_122", + "file_path": "test/r_122", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.18737871944904327, + -0.18737870454788208, 0.19303272664546967, - -0.963134229183197, + -0.9631341695785522, -3.8825182914733887 ], [ - -0.9822878241539001, + -0.9822877645492554, -0.03682243078947067, - 0.1837250292301178, + 0.1837250143289566, 0.7406193017959595 ], [ 0.0, 0.980501115322113, - 0.19651342928409576, + 0.19651341438293457, 0.7921710014343262 ], [ @@ -3692,24 +3692,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_123", + "file_path": "test/r_123", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.1253305822610855, - 0.20164667069911957, + 0.20164668560028076, -0.9714065790176392, -3.915865421295166 ], [ -0.9921150803565979, - -0.025473352521657944, + -0.025473354384303093, 0.12271454930305481, 0.49467819929122925 ], [ -1.862645149230957e-09, - 0.9791269302368164, + 0.9791269898414612, 0.20324929058551788, 0.8193241357803345 ], @@ -3722,25 +3722,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_124", + "file_path": "test/r_124", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.06278783082962036, 0.20982098579406738, - -0.9757215976715088, + -0.9757217168807983, -3.933259963989258 ], [ -0.998026967048645, -0.013200248591601849, - 0.06138455495238304, + 0.06138456240296364, 0.2474490851163864 ], [ 0.0, 0.9776507616043091, - 0.21023575961589813, + 0.21023578941822052, 0.8474875688552856 ], [ @@ -3752,25 +3752,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_125", + "file_path": "test/r_125", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 2.721951886996976e-06, - 0.217464417219162, - -0.9760681390762329, + 2.7219521143706515e-06, + 0.21746443212032318, + -0.9760681986808777, -3.934656858444214 ], [ - -0.9999999403953552, - 5.919276873100898e-07, - -2.6568106932245428e-06, + -1.0, + 5.919277441535087e-07, + -2.6568109205982182e-06, -1.0709947673603892e-05 ], [ 0.0, - 0.9760681390762329, - 0.217464417219162, + 0.9760681986808777, + 0.21746443212032318, 0.8766271471977234 ], [ @@ -3782,25 +3782,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_126", + "file_path": "test/r_126", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.06279326230287552, - 0.22448262572288513, - -0.9724527597427368, + 0.06279325485229492, + 0.22448264062404633, + -0.9724528193473816, -3.9200828075408936 ], [ - -0.9980266690254211, - 0.014123869128525257, - -0.061184223741292953, + -0.9980266094207764, + 0.014123870059847832, + -0.06118422746658325, -0.24664151668548584 ], [ 0.0, - 0.9743756651878357, - 0.22492650151252747, + 0.9743757247924805, + 0.22492651641368866, 0.906707763671875 ], [ @@ -3812,24 +3812,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_127", + "file_path": "test/r_127", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.12533597648143768, - 0.23077863454818726, + 0.23077864944934845, -0.964900016784668, -3.889636516571045 ], [ -0.9921143054962158, - 0.029154770076274872, + 0.02915477193892002, -0.12189793586730957, -0.4913863241672516 ], [ 0.0, - 0.9725692272186279, + 0.9725692868232727, 0.2326129525899887, 0.9376928806304932 ], @@ -3842,17 +3842,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_128", + "file_path": "test/r_128", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.18738356232643127, 0.23625418543815613, - -0.9534522294998169, + -0.9534521698951721, -3.843489170074463 ], [ - -0.9822866916656494, + -0.9822867512702942, 0.04506846144795418, -0.18188302218914032, -0.7331939935684204 @@ -3860,7 +3860,7 @@ [ 0.0, 0.9706454873085022, - 0.24051444232463837, + 0.24051442742347717, 0.9695447683334351 ], [ @@ -3872,17 +3872,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_129", + "file_path": "test/r_129", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.24869213998317719, + 0.248692125082016, 0.24081023037433624, -0.9381698369979858, -3.781883716583252 ], [ - -0.9685826301574707, + -0.9685825705528259, 0.061830151826143265, -0.24088339507579803, -0.9710320830345154 @@ -3902,24 +3902,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_130", + "file_path": "test/r_130", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.3090192973613739, - 0.24434863030910492, + 0.3090192675590515, + 0.2443486452102661, -0.9191303849220276, -3.7051334381103516 ], [ - -0.9510558843612671, - 0.07939432561397552, + -0.9510558247566223, + 0.07939433306455612, -0.2986459732055664, -1.2038805484771729 ], [ - 7.450581485102248e-09, - 0.9664316773414612, + 7.450580596923828e-09, + 0.966431736946106, 0.25692352652549744, 1.0356919765472412 ], @@ -3932,24 +3932,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_131", + "file_path": "test/r_131", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.3681268095970154, - 0.2467726320028305, + 0.2467726171016693, -0.8964295387268066, -3.6136231422424316 ], [ -0.929775595664978, - 0.09770487993955612, + 0.09770487248897552, -0.3549240529537201, -1.4307446479797363 ], [ -7.450580596923828e-09, - 0.9641354084014893, + 0.9641353487968445, 0.2654109597206116, 1.0699057579040527 ], @@ -3962,25 +3962,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_132", + "file_path": "test/r_132", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.4257815182209015, + 0.4257814884185791, 0.2479885369539261, - -0.8701791167259216, + -0.8701791763305664, -3.5078043937683105 ], [ - -0.9048260450363159, + -0.9048259854316711, 0.11669528484344482, - -0.4094778001308441, + -0.4094778299331665, -1.6506578922271729 ], [ - -7.450580596923828e-09, + -7.450580152834618e-09, 0.9617089033126831, - 0.27407312393188477, + 0.27407315373420715, 1.104824185371399 ], [ @@ -3992,7 +3992,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_133", + "file_path": "test/r_133", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -4022,25 +4022,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_134", + "file_path": "test/r_134", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.5358289480209351, + 0.5358288884162903, 0.24644097685813904, - -0.8075605630874634, + -0.8075606226921082, -3.2553811073303223 ], [ - -0.8443266153335571, + -0.8443265557289124, 0.15639705955982208, - -0.5124963521957397, + -0.5124964118003845, -2.06593918800354 ], [ 0.0, 0.9564552903175354, - 0.29187870025634766, + 0.29187873005867004, 1.1766008138656616 ], [ @@ -4052,7 +4052,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_135", + "file_path": "test/r_135", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -4082,7 +4082,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_136", + "file_path": "test/r_136", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -4112,25 +4112,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_137", + "file_path": "test/r_137", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.6845490336418152, + 0.6845489740371704, 0.23299503326416016, - -0.6907285451889038, + -0.6907286047935486, -2.7844159603118896 ], [ - -0.7289668917655945, + -0.7289668321609497, 0.21879804134368896, - -0.6486406326293945, + -0.6486406922340393, -2.6147541999816895 ], [ 0.0, 0.9475446343421936, - 0.31962358951568604, + 0.3196236193180084, 1.2884440422058105 ], [ @@ -4142,25 +4142,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_138", + "file_path": "test/r_138", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.7289704084396362, 0.22528575360774994, - -0.6464119553565979, + -0.6464120149612427, -2.6057701110839844 ], [ -0.6845452189445496, 0.2399061918258667, - -0.6883623600006104, + -0.6883624196052551, -2.7748777866363525 ], [ 0.0, 0.9442941546440125, - 0.3291027247905731, + 0.3291027545928955, 1.326655626296997 ], [ @@ -4172,25 +4172,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_139", + "file_path": "test/r_139", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.7705147862434387, - 0.21588072180747986, - -0.599751889705658, + 0.21588075160980225, + -0.5997518301010132, -2.417677164077759 ], [ -0.6374219655990601, - 0.2609563171863556, - -0.7249792814254761, + 0.260956346988678, + -0.7249792218208313, -2.922484874725342 ], [ -1.4901160305669237e-08, - 0.9409022331237793, - 0.33867791295051575, + 0.9409023523330688, + 0.33867788314819336, 1.365254282951355 ], [ @@ -4202,25 +4202,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_140", + "file_path": "test/r_140", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.809018611907959, + 0.8090184926986694, 0.20474675297737122, - -0.5509698390960693, + -0.5509697794914246, -2.2210304737091064 ], [ - -0.58778315782547, + -0.5877830982208252, 0.28181129693984985, - -0.7583491206169128, + -0.7583490610122681, -3.0570030212402344 ], [ 0.0, 0.9373692274093628, - 0.3483372628688812, + 0.34833723306655884, 1.4041924476623535 ], [ @@ -4232,25 +4232,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_141", + "file_path": "test/r_141", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.844329297542572, - 0.19186222553253174, - -0.5002967715263367, + 0.19186221063137054, + -0.5002967119216919, -2.01676082611084 ], [ -0.5358245968818665, - 0.3023282587528229, - -0.7883461117744446, + 0.3023282289505005, + -0.7883460521697998, -3.177924871444702 ], [ 1.4901161193847656e-08, - 0.9336950778961182, - 0.3580690920352936, + 0.9336950182914734, + 0.3580690622329712, 1.4434226751327515 ], [ @@ -4262,25 +4262,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_142", + "file_path": "test/r_142", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.8763079643249512, 0.17721770703792572, - -0.4479711949825287, + -0.4479712247848511, -1.8058297634124756 ], [ -0.48175135254859924, 0.3223598599433899, - -0.8148617148399353, + -0.8148617744445801, -3.2848129272460938 ], [ 1.4901161193847656e-08, 0.9298806190490723, - 0.3678613603115082, + 0.36786139011383057, 1.4828966856002808 ], [ @@ -4292,25 +4292,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_143", + "file_path": "test/r_143", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9048281908035278, 0.16081689298152924, - -0.39423829317092896, + -0.39423835277557373, -1.5892254114151 ], [ -0.425776869058609, 0.3417556881904602, - -0.8378048539161682, + -0.8378049731254578, -3.3772995471954346 ], [ 0.0, 0.9259271025657654, - 0.3777022659778595, + 0.3777023255825043, 1.522566556930542 ], [ @@ -4322,25 +4322,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_144", + "file_path": "test/r_144", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9297775030136108, + 0.9297774434089661, 0.1426766961812973, - -0.3393481373786926, + -0.339348167181015, -1.3679561614990234 ], [ - -0.36812204122543335, + -0.36812201142311096, 0.36036309599876404, - -0.8571023941040039, + -0.8571024537086487, -3.4550905227661133 ], [ - 7.450580596923828e-09, + 7.450580152834618e-09, 0.9218361377716064, - 0.38757988810539246, + 0.38757991790771484, 1.5623846054077148 ], [ @@ -4352,25 +4352,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_145", + "file_path": "test/r_145", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9510573744773865, + 0.9510573148727417, 0.12282776832580566, - -0.2835546135902405, + -0.28355464339256287, -1.1430453062057495 ], [ - -0.30901437997817993, + -0.30901435017585754, 0.3780284821987152, - -0.872699499130249, + -0.8726995587348938, -3.5179643630981445 ], [ - -7.450580596923828e-09, + -7.450580152834618e-09, 0.9176097512245178, - 0.39748233556747437, + 0.39748236536979675, 1.6023026704788208 ], [ @@ -4382,24 +4382,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_146", + "file_path": "test/r_146", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9685838222503662, - 0.10131460428237915, + 0.9685837626457214, + 0.10131461173295975, -0.2271137684583664, -0.9155248403549194 ], [ - -0.24868716299533844, - 0.39459890127182007, + -0.24868714809417725, + 0.39459893107414246, -0.8845599889755249, -3.565775156021118 ], [ 0.0, - 0.913250744342804, + 0.9132508039474487, 0.4073978364467621, 1.642273187637329 ], @@ -4412,24 +4412,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_147", + "file_path": "test/r_147", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9822878241539001, - 0.07819581776857376, + 0.07819582521915436, -0.1702825278043747, -0.686430811882019 ], [ -0.18737855553627014, - 0.4099230468273163, + 0.40992307662963867, -0.8926658630371094, -3.5984511375427246 ], [ -7.450580596923828e-09, - 0.9087619781494141, + 0.9087620377540588, 0.41731464862823486, 1.6822491884231567 ], @@ -4442,25 +4442,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_148", + "file_path": "test/r_148", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9921150803565979, 0.053543806076049805, - -0.11331713199615479, + -0.11331713944673538, -0.4567960202693939 ], [ -0.12533041834831238, 0.42385250329971313, - -0.8970178961753845, + -0.8970179557800293, -3.615995168685913 ], [ 0.0, 0.9041471481323242, - 0.42722105979919434, + 0.4272210896015167, 1.7221834659576416 ], [ @@ -4472,25 +4472,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_149", + "file_path": "test/r_149", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.998026967048645, + 0.9980269074440002, 0.027444856241345406, - -0.05647185444831848, + -0.05647185817360878, -0.22764535248279572 ], [ - -0.06278767436742783, + -0.06278766691684723, 0.4362433850765228, - -0.8976353406906128, + -0.8976354002952576, -3.6184842586517334 ], [ 0.0, 0.8994100689888, - 0.43710577487945557, + 0.43710580468177795, 1.762030005455017 ], [ @@ -4502,24 +4502,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_150", + "file_path": "test/r_150", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9999999403953552, - -1.289415308747266e-06, + 1.0, + -1.2894154224341037e-06, 2.5806778012338327e-06, 1.0403045962448232e-05 ], [ - 2.8848726287833415e-06, - 0.44695743918418884, + 2.884872856157017e-06, + 0.44695746898651123, -0.8945551514625549, -3.606067419052124 ], [ - -1.1368683094535245e-13, - 0.8945552110671997, + -1.1368683772161603e-13, + 0.8945552706718445, 0.44695740938186646, 1.8017430305480957 ], @@ -4532,25 +4532,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_151", + "file_path": "test/r_151", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9980266094207764, -0.02868182212114334, - 0.0558602400124073, + 0.0558602437376976, 0.22517985105514526 ], [ 0.06279342621564865, 0.455863356590271, - -0.8878318667411804, + -0.8878319263458252, -3.578964948654175 ], [ -1.862645149230957e-09, 0.8895875811576843, - 0.45676472783088684, + 0.45676475763320923, 1.8412775993347168 ], [ @@ -4562,25 +4562,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_152", + "file_path": "test/r_152", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9921143651008606, - -0.058471422642469406, - 0.11086134612560272, + 0.9921143054962158, + -0.058471426367759705, + 0.11086136102676392, 0.44689643383026123 ], [ - 0.125336155295372, - 0.4628380239009857, - -0.877537190914154, + 0.12533614039421082, + 0.4628380537033081, + -0.8775373101234436, -3.537466049194336 ], [ - 3.725290742551124e-09, - 0.884512186050415, - 0.4665168225765228, + 3.725290298461914e-09, + 0.8845122456550598, + 0.4665168821811676, 1.8805897235870361 ], [ @@ -4592,24 +4592,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_153", + "file_path": "test/r_153", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.9822866320610046, - -0.08923293650150299, + -0.08923294395208359, 0.1647735834121704, 0.6642235517501831 ], [ 0.1873842179775238, - 0.4677678644657135, + 0.4677678942680359, -0.8637593984603882, -3.4819254875183105 ], [ 0.0, - 0.8793352842330933, + 0.879335343837738, 0.4762030243873596, 1.9196357727050781 ], @@ -4622,7 +4622,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_154", + "file_path": "test/r_154", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -4652,25 +4652,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_155", + "file_path": "test/r_155", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9510555267333984, + 0.9510555863380432, -0.1530686616897583, - 0.2684459388256073, + 0.2684459686279297, 1.082140326499939 ], [ - 0.3090197741985321, + 0.3090198040008545, 0.4710921347141266, - -0.8261833190917969, + -0.8261833786964417, -3.330451726913452 ], [ 0.0, 0.8687013983726501, - 0.49533602595329285, + 0.49533605575561523, 1.9967634677886963 ], [ @@ -4682,24 +4682,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_156", + "file_path": "test/r_156", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.9297753572463989, - -0.18581698834896088, + 0.9297752976417542, + -0.18581700325012207, 0.3177889287471771, 1.28104829788208 ], [ - 0.36812740564346313, - 0.46931594610214233, - -0.8026359677314758, + 0.36812737584114075, + 0.4693159759044647, + -0.8026360273361206, -3.235529661178589 ], [ - -1.4901161193847656e-08, - 0.8632580637931824, + -1.4901160305669237e-08, + 0.8632581233978271, 0.5047626495361328, 2.0347635746002197 ], @@ -4712,23 +4712,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_157", + "file_path": "test/r_157", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.904825747013092, + 0.9048256874084473, -0.21888744831085205, 0.3652104139328003, 1.47221040725708 ], [ - 0.42578208446502686, + 0.42578205466270447, 0.4651557505130768, -0.7761054039001465, -3.1285812854766846 ], [ - 1.4901161193847656e-08, + 1.4901160305669237e-08, 0.8577403426170349, 0.5140831470489502, 2.072335720062256 @@ -4742,17 +4742,17 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_158", + "file_path": "test/r_158", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.8763052821159363, + 0.8763052225112915, -0.25209739804267883, 0.4105314314365387, 1.6549052000045776 ], [ - 0.48175638914108276, + 0.4817563593387604, 0.45856013894081116, -0.7467484474182129, -3.010239601135254 @@ -4772,7 +4772,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_159", + "file_path": "test/r_159", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -4802,25 +4802,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_160", + "file_path": "test/r_160", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.8090152740478516, + 0.8090152144432068, -0.31817907094955444, - 0.49422308802604675, + 0.49422311782836914, 1.9922771453857422 ], [ - 0.5877878069877625, + 0.5877877473831177, 0.4379331171512604, - -0.6802352666854858, + -0.6802353262901306, -2.7421162128448486 ], [ - -2.980232594040899e-08, + -2.9802322387695312e-08, 0.8408190011978149, - 0.5413162708282471, + 0.5413163304328918, 2.1821160316467285 ], [ @@ -4832,25 +4832,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_161", + "file_path": "test/r_161", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.7705113291740417, + 0.7705112099647522, -0.35066258907318115, - 0.532304584980011, + 0.5323045253753662, 2.1457884311676025 ], [ - 0.6374264359474182, + 0.6374263763427734, 0.4238755702972412, - -0.6434416174888611, + -0.6434415578842163, -2.5937960147857666 ], [ 0.0, 0.8350839018821716, - 0.5501224994659424, + 0.5501224398612976, 2.2176146507263184 ], [ @@ -4862,25 +4862,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_162", + "file_path": "test/r_162", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.728966474533081, + 0.7289664149284363, -0.3825121521949768, - 0.5677079558372498, + 0.5677080154418945, 2.288504123687744 ], [ - 0.6845494508743286, + 0.6845493912696838, 0.4073314666748047, - -0.6045436859130859, + -0.6045437455177307, -2.4369938373565674 ], [ - -1.4901161193847656e-08, + -1.4901160305669237e-08, 0.8293163776397705, - 0.5587793588638306, + 0.5587794184684753, 2.252511978149414 ], [ @@ -4892,7 +4892,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_163", + "file_path": "test/r_163", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -4922,7 +4922,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_164", + "file_path": "test/r_164", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -4952,7 +4952,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_165", + "file_path": "test/r_165", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -4982,23 +4982,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_166", + "file_path": "test/r_166", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.5358240604400635, + 0.5358240008354187, -0.49964818358421326, 0.6806204319000244, 2.743669033050537 ], [ - 0.8443297147750854, + 0.8443296551704407, 0.31708410382270813, - -0.431931734085083, + -0.4319317042827606, -1.7411726713180542 ], [ - -1.4901162970204496e-08, + -1.4901161193847656e-08, 0.8061075210571289, 0.5917689800262451, 2.3854973316192627 @@ -5012,24 +5012,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_167", + "file_path": "test/r_167", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.4817507863044739, - -0.5254116654396057, + 0.4817507266998291, + -0.5254117250442505, 0.7013263702392578, 2.827136993408203 ], [ - 0.876308262348175, - 0.2888452708721161, + 0.8763081431388855, + 0.2888453006744385, -0.38555440306663513, -1.5542194843292236 ], [ - -2.9802322387695312e-08, - 0.8003191947937012, + -2.9802318834981634e-08, + 0.800319254398346, 0.5995740294456482, 2.4169602394104004 ], @@ -5042,7 +5042,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_168", + "file_path": "test/r_168", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -5072,25 +5072,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_169", + "file_path": "test/r_169", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.3681214153766632, -0.5714529156684875, - 0.7334359288215637, + 0.733435869216919, 2.9565749168395996 ], [ 0.9297778010368347, 0.22625195980072021, - -0.2903849482536316, + -0.2903849184513092, -1.170579195022583 ], [ 1.4901161193847656e-08, 0.7888293862342834, - 0.6146122813224792, + 0.6146122217178345, 2.477581262588501 ], [ @@ -5102,7 +5102,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_170", + "file_path": "test/r_170", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -5132,24 +5132,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_171", + "file_path": "test/r_171", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.24868656694889069, - -0.6090989112854004, + -0.6090989708900452, 0.753095805644989, 3.0358264446258545 ], [ 0.9685839414596558, - 0.1563878208398819, + 0.1563878357410431, -0.1933594048023224, -0.7794567346572876 ], [ -7.450580152834618e-09, - 0.7775224447250366, + 0.7775225043296814, 0.6288550496101379, 2.5349960327148438 ], @@ -5162,23 +5162,23 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_172", + "file_path": "test/r_172", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.1873779594898224, + 0.1873779445886612, -0.6244082450866699, 0.7582900524139404, 3.056765079498291 ], [ - 0.9822880029678345, + 0.9822879433631897, 0.11911001801490784, -0.14464886486530304, -0.5830982327461243 ], [ - 7.450581485102248e-09, + 7.450580596923828e-09, 0.7719632387161255, 0.6356672048568726, 2.5624563694000244 @@ -5192,25 +5192,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_173", + "file_path": "test/r_173", "rotation": 0.031415926535897934, "transform_matrix": [ [ 0.12532976269721985, -0.6372037529945374, - 0.7604367136955261, + 0.7604367733001709, 3.065418243408203 ], [ 0.9921150803565979, 0.08049529790878296, - -0.0960628092288971, + -0.09606281667947769, -0.38724154233932495 ], [ 0.0, 0.7664802670478821, - 0.6422678232192993, + 0.6422678828239441, 2.589064359664917 ], [ @@ -5222,25 +5222,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_174", + "file_path": "test/r_174", "rotation": 0.031415926535897934, "transform_matrix": [ [ - 0.0627870187163353, + 0.0627870112657547, -0.6473738551139832, - 0.7595819234848022, + 0.7595820426940918, 3.0619730949401855 ], [ - 0.998026967048645, + 0.9980269074440002, 0.040727030485868454, - -0.0477861724793911, + -0.047786179929971695, -0.192632257938385 ], [ - 3.725290298461914e-09, + 3.725290076417309e-09, 0.7610836625099182, - 0.6486536264419556, + 0.6486536860466003, 2.614806652069092 ], [ @@ -5252,13 +5252,13 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_175", + "file_path": "test/r_175", "rotation": 0.031415926535897934, "transform_matrix": [ [ -3.524630528772832e-06, -0.6548215746879578, - 0.7557834386825562, + 0.7557834982872009, 3.0466606616973877 ], [ @@ -5282,25 +5282,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_176", + "file_path": "test/r_176", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.06279407441616058, - -0.6594645977020264, - 0.7491082549095154, + -0.06279406696557999, + -0.6594646573066711, + 0.7491083145141602, 3.019752264022827 ], [ - 0.9980266094207764, - -0.04149235039949417, - 0.047132570296525955, + 0.9980265498161316, + -0.04149235412478447, + 0.047132574021816254, 0.18999747931957245 ], [ 0.0, - 0.7505896091461182, - 0.6607685685157776, + 0.7505896687507629, + 0.6607686281204224, 2.6636435985565186 ], [ @@ -5312,7 +5312,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_177", + "file_path": "test/r_177", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -5342,25 +5342,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_178", + "file_path": "test/r_178", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.18738484382629395, + -0.18738485872745514, -0.660087525844574, - 0.7274415493011475, + 0.7274416089057922, 2.932410955429077 ], [ - 0.9822865128517151, + 0.9822865724563599, -0.12592089176177979, - 0.13876961171627045, + 0.13876962661743164, 0.5593982338905334 ], [ 0.0, 0.7405593991279602, - 0.6719908118247986, + 0.6719908714294434, 2.7088818550109863 ], [ @@ -5372,25 +5372,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_179", + "file_path": "test/r_179", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.24869337677955627, - -0.6559837460517883, - 0.7126266360282898, + -0.24869336187839508, + -0.6559838056564331, + 0.7126266956329346, 2.872690200805664 ], [ - 0.968582272529602, - -0.16843052208423615, - 0.182974174618721, + 0.9685822129249573, + -0.16843053698539734, + 0.1829741895198822, 0.7375925779342651 ], [ - -1.4901161193847656e-08, - 0.7357420325279236, - 0.6772617697715759, + -1.4901160305669237e-08, + 0.7357420921325684, + 0.6772618293762207, 2.7301297187805176 ], [ @@ -5402,24 +5402,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_180", + "file_path": "test/r_180", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.309020459651947, - -0.6489087343215942, + -0.30902042984962463, + -0.648908793926239, 0.6952868700027466, 2.802791118621826 ], [ - 0.9510554075241089, - -0.21084584295749664, + 0.9510553479194641, + -0.21084585785865784, 0.22591520845890045, 0.910693347454071 ], [ - -1.4901161193847656e-08, - 0.7310686707496643, + -1.4901160305669237e-08, + 0.7310687303543091, 0.682303786277771, 2.7504544258117676 ], @@ -5432,7 +5432,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_181", + "file_path": "test/r_181", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -5462,24 +5462,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_182", + "file_path": "test/r_182", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.4257826805114746, - -0.6258630156517029, + -0.6258630752563477, 0.6534557342529297, 2.634164571762085 ], [ 0.9048255681991577, - -0.294511616230011, + -0.2945116460323334, 0.3074958920478821, 1.2395557165145874 ], [ 0.0, - 0.7221898436546326, + 0.7221899032592773, 0.6916947364807129, 2.788311004638672 ], @@ -5492,24 +5492,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_183", + "file_path": "test/r_183", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.48175695538520813, - -0.609944760799408, + -0.6099447011947632, 0.6291880011558533, 2.5363380908966064 ], [ 0.8763049840927124, - -0.33532288670539856, + -0.33532285690307617, 0.34590205550193787, 1.3943759202957153 ], [ 0.0, - 0.7180013656616211, + 0.7180013060569763, 0.6960416436195374, 2.8058338165283203 ], @@ -5522,25 +5522,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_184", + "file_path": "test/r_184", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.5358299612998962, - -0.5911591649055481, - 0.6028409004211426, + -0.5911591053009033, + 0.6028409600257874, 2.4301295280456543 ], [ 0.8443259000778198, - -0.37516412138938904, - 0.3825776278972626, + -0.37516409158706665, + 0.38257765769958496, 1.542219877243042 ], [ 1.4901159417490817e-08, - 0.7139907479286194, - 0.7001550793647766, + 0.7139906883239746, + 0.7001551389694214, 2.822415590286255 ], [ @@ -5552,25 +5552,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_185", + "file_path": "test/r_185", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.5877882838249207, + -0.5877883434295654, -0.5695741176605225, - 0.5745347738265991, + 0.5745347142219543, 2.316023826599121 ], [ - 0.8090146780014038, + 0.8090147376060486, -0.41382312774658203, - 0.41742730140686035, + 0.41742727160453796, 1.6827032566070557 ], [ - -1.4901160305669237e-08, + -1.4901161193847656e-08, 0.7101660370826721, - 0.7040342092514038, + 0.704034149646759, 2.838052749633789 ], [ @@ -5582,24 +5582,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_186", + "file_path": "test/r_186", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.6374268531799316, - -0.5452739596366882, + -0.6374269127845764, + -0.545274019241333, 0.5443923473358154, 2.1945159435272217 ], [ - 0.7705107927322388, - -0.4510933458805084, + 0.7705109119415283, + -0.4510933756828308, 0.45036399364471436, 1.8154754638671875 ], [ 0.0, - 0.7065343856811523, + 0.7065344452857971, 0.7076785564422607, 2.8527438640594482 ], @@ -5612,24 +5612,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_187", + "file_path": "test/r_187", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.6845499277114868, - -0.5183590054512024, + -0.5183589458465576, 0.5125381946563721, 2.0661075115203857 ], [ 0.7289659976959229, - -0.4867752194404602, + -0.4867751896381378, 0.48130908608436584, 1.9402190446853638 ], [ -1.4901161193847656e-08, - 0.7031030058860779, + 0.7031029462814331, 0.7110880017280579, 2.866487503051758 ], @@ -5642,24 +5642,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_188", + "file_path": "test/r_188", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.7289712429046631, - -0.48894399404525757, + -0.48894402384757996, 0.4790976941585541, 1.931304693222046 ], [ 0.6845442652702332, - -0.5206764936447144, + -0.5206765532493591, 0.5101911425590515, 2.0566465854644775 ], [ 0.0, - 0.6998783349990845, + 0.6998783946037292, 0.7142619490623474, 2.879282236099243 ], @@ -5672,25 +5672,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_189", + "file_path": "test/r_189", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.7705157995223999, - -0.457158625125885, - 0.44419747591018677, + -0.7705156803131104, + -0.4571586549282074, + 0.44419750571250916, 1.7906174659729004 ], [ - 0.6374210119247437, - -0.5526142716407776, - 0.5369468331336975, + 0.6374209523200989, + -0.5526143312454224, + 0.5369468927383423, 2.1645021438598633 ], [ 0.0, - 0.6968668699264526, - 0.7172004580497742, + 0.6968669295310974, + 0.717200517654419, 2.891127824783325 ], [ @@ -5702,25 +5702,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_190", + "file_path": "test/r_190", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.8090193271636963, - -0.4231462776660919, - 0.4079643189907074, + -0.8090192675590515, + -0.4231463074684143, + 0.4079643487930298, 1.6445568799972534 ], [ - 0.5877820253372192, - -0.582415759563446, - 0.5615193843841553, + 0.5877819657325745, + -0.5824158191680908, + 0.5615194439888, 2.263557195663452 ], [ 0.0, - 0.6940740942955017, - 0.7199034094810486, + 0.6940741539001465, + 0.7199034690856934, 2.9020237922668457 ], [ @@ -5732,24 +5732,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_191", + "file_path": "test/r_191", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.8443300724029541, - -0.38706323504447937, + -0.8443300127983093, + -0.387063205242157, 0.3705250024795532, 1.4936342239379883 ], [ - 0.5358234643936157, - -0.6099194288253784, + 0.535823404788971, + -0.6099193692207336, 0.5838590860366821, 2.353611469268799 ], [ 0.0, - 0.6915057301521301, + 0.6915056705474854, 0.7223708033561707, 2.9119701385498047 ], @@ -5762,25 +5762,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_192", + "file_path": "test/r_192", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.8763085603713989, + -0.8763084411621094, -0.3490775227546692, - 0.33200621604919434, + 0.3320062458515167, 1.3383599519729614 ], [ - 0.4817502498626709, + 0.4817501902580261, -0.6349755525588989, - 0.6039226651191711, + 0.6039227247238159, 2.434490442276001 ], [ 0.0, 0.6891667246818542, - 0.7246026992797852, + 0.7246027588844299, 2.9209671020507812 ], [ @@ -5792,24 +5792,24 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_193", + "file_path": "test/r_193", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.904828667640686, - -0.3093682527542114, + -0.9048287272453308, + -0.30936822295188904, 0.29253408312797546, 1.179242730140686 ], [ - 0.4257756471633911, - -0.6574478149414062, + 0.4257756769657135, + -0.6574477553367615, 0.6216729879379272, 2.5060441493988037 ], [ - 1.4901160305669237e-08, - 0.687061607837677, + 1.4901161193847656e-08, + 0.6870615482330322, 0.7265990972518921, 2.9290149211883545 ], @@ -5822,7 +5822,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_194", + "file_path": "test/r_194", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -5852,7 +5852,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_195", + "file_path": "test/r_195", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -5882,7 +5882,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_196", + "file_path": "test/r_196", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -5912,25 +5912,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_197", + "file_path": "test/r_197", "rotation": 0.031415926535897934, "transform_matrix": [ [ - -0.9822879433631897, - -0.1372038722038269, - 0.12761405110359192, + -0.9822878837585449, + -0.1372038871049881, + 0.1276140660047531, 0.5144287347793579 ], [ 0.18737728893756866, - -0.7192638516426086, - 0.6689911484718323, + -0.7192639112472534, + 0.668991208076477, 2.6967897415161133 ], [ 0.0, - 0.6810539960861206, - 0.7322331070899963, + 0.6810540556907654, + 0.7322331666946411, 2.951726198196411 ], [ @@ -5942,7 +5942,7 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_198", + "file_path": "test/r_198", "rotation": 0.031415926535897934, "transform_matrix": [ [ @@ -5972,25 +5972,25 @@ ] }, { - "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/test/r_199", + "file_path": "test/r_199", "rotation": 0.031415926535897934, "transform_matrix": [ [ -0.9980270266532898, -0.0460626520216465, - 0.04266569763422012, + 0.04266570135951042, 0.17199094593524933 ], [ 0.06278638541698456, -0.7321932911872864, - 0.6781966686248779, + 0.6781967282295227, 2.733898401260376 ], [ 0.0, 0.6795374751091003, - 0.733640730381012, + 0.7336407899856567, 2.9574005603790283 ], [ diff --git a/data/rug_cup/transforms_train.json b/data/rug_cup/transforms_train.json new file mode 100644 index 0000000000000000000000000000000000000000..e6b0c34e6d8a4cce28a4a1996ba228fc0a80b5f4 --- /dev/null +++ b/data/rug_cup/transforms_train.json @@ -0,0 +1,3005 @@ +{ + "camera_angle_x": 0.6911112070083618, + "frames": [ + { + "file_path": "train/r_0", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.13734106719493866, + 0.8654732704162598, + -0.4817606806755066, + -1.9420394897460938 + ], + [ + -0.9905237555503845, + -0.12000220268964767, + 0.06679853051900864, + 0.2692735195159912 + ], + [ + 0.0, + 0.48636969923973083, + 0.8737530708312988, + 3.5222115516662598 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_1", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.525169312953949, + -0.614478588104248, + 0.5887386202812195, + 2.373281478881836 + ], + [ + 0.8509975671768188, + -0.3792082369327545, + 0.36332353949546814, + 1.464604139328003 + ], + [ + 1.4901159417490817e-08, + 0.6918215751647949, + 0.7220683693885803, + 2.9107508659362793 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_2", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.607813835144043, + 0.15637080371379852, + -0.7785309553146362, + -3.1383585929870605 + ], + [ + -0.794079601764679, + -0.11969120800495148, + 0.5959124565124512, + 2.4021999835968018 + ], + [ + 0.0, + 0.9804192781448364, + 0.19692085683345795, + 0.7938133478164673 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_3", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9774482846260071, + -0.19654272496700287, + 0.07723786681890488, + 0.3113558292388916 + ], + [ + 0.2111746221780777, + 0.9097227454185486, + -0.357505202293396, + -1.4411497116088867 + ], + [ + 0.0, + 0.36575350165367126, + 0.9307116270065308, + 3.751818895339966 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_4", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9999985098838806, + -0.0007257564575411379, + 0.0015867332695052028, + 0.00639632623642683 + ], + [ + 0.0017448338912799954, + 0.41594526171684265, + -0.9093879461288452, + -3.665860176086426 + ], + [ + 0.0, + 0.9093893766403198, + 0.4159458577632904, + 1.6767313480377197 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_5", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7675433158874512, + 0.5415223836898804, + -0.3429735004901886, + -1.382570505142212 + ], + [ + -0.640997052192688, + 0.6484302878379822, + -0.41068366169929504, + -1.655518889427185 + ], + [ + 1.4901159417490817e-08, + 0.5350625514984131, + 0.8448123931884766, + 3.405547857284546 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_6", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.6672967076301575, + -0.27136415243148804, + 0.6935968399047852, + 2.795978546142578 + ], + [ + 0.7447920441627502, + 0.24312879145145416, + -0.6214283108711243, + -2.5050578117370605 + ], + [ + 1.4901161193847656e-08, + 0.9312625527381897, + 0.364348828792572, + 1.468737244606018 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_7", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7432610392570496, + 0.5464593768119812, + -0.38593408465385437, + -1.5557501316070557 + ], + [ + -0.6690015196800232, + 0.60711669921875, + -0.4287729859352112, + -1.7284393310546875 + ], + [ + 1.4901162970204496e-08, + 0.5768807530403137, + 0.8168282508850098, + 3.2927403450012207 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_8", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6205964684486389, + -0.6305495500564575, + 0.4661192297935486, + 1.8789868354797363 + ], + [ + 0.7841299176216125, + -0.49904587864875793, + 0.3689081370830536, + 1.4871163368225098 + ], + [ + 1.4901159417490817e-08, + 0.594441294670105, + 0.8041389584541321, + 3.2415881156921387 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_9", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9645611047744751, + 0.06432398408651352, + -0.25589895248413086, + -1.0315616130828857 + ], + [ + -0.26385951042175293, + 0.2351418435573578, + -0.9354605078697205, + -3.7709619998931885 + ], + [ + 0.0, + 0.9698301553726196, + 0.2437811940908432, + 0.9827134013175964 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_10", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.8987805247306824, + 0.284455806016922, + -0.33358439803123474, + -1.344721794128418 + ], + [ + -0.43839895725250244, + 0.583175003528595, + -0.6838956475257874, + -2.7568717002868652 + ], + [ + 0.0, + 0.7609151601791382, + 0.6488512754440308, + 2.615603446960449 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_11", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.7966591715812683, + -0.24114730954170227, + 0.5542400479316711, + 2.234213352203369 + ], + [ + 0.6044286489486694, + -0.3178409934043884, + 0.7305086851119995, + 2.944774866104126 + ], + [ + 1.4901160305669237e-08, + 0.916965126991272, + 0.3989672362804413, + 1.6082885265350342 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_12", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.25688305497169495, + -0.9472749829292297, + 0.1915234625339508, + 0.7720557451248169 + ], + [ + 0.9664425253868103, + 0.25178828835487366, + -0.05090746283531189, + -0.20521454513072968 + ], + [ + 0.0, + 0.19817356765270233, + 0.9801669120788574, + 3.951179265975952 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_13", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9280179142951965, + 0.34259989857673645, + -0.14631448686122894, + -0.5898125767707825 + ], + [ + -0.3725353479385376, + -0.8534460663795471, + 0.3644820749759674, + 1.4692742824554443 + ], + [ + 0.0, + 0.39275333285331726, + 0.9196438193321228, + 3.707202911376953 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_14", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9985275268554688, + -0.01763954386115074, + 0.051301028579473495, + 0.20680105686187744 + ], + [ + 0.05424896627664566, + 0.3246803283691406, + -0.9442667365074158, + -3.8064608573913574 + ], + [ + 0.0, + 0.9456592202186584, + 0.32515913248062134, + 1.310758352279663 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_15", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9960392713546753, + 0.0687718465924263, + -0.05635831505060196, + -0.2271876335144043 + ], + [ + -0.08891471475362778, + -0.770395040512085, + 0.6313363909721375, + 2.5449984073638916 + ], + [ + 3.725290298461914e-09, + 0.6338468790054321, + 0.7734585404396057, + 3.1179111003875732 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_16", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9413341879844666, + -0.24557547271251678, + 0.2314794659614563, + 0.9331235289573669 + ], + [ + 0.3374760150909424, + -0.6849926114082336, + 0.6456741094589233, + 2.6027956008911133 + ], + [ + 0.0, + 0.6859138607978821, + 0.7276827096939087, + 2.933382749557495 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_17", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.7317613363265991, + 0.5972513556480408, + -0.3283537030220032, + -1.3236360549926758 + ], + [ + -0.6815608739852905, + -0.6412419676780701, + 0.3525386452674866, + 1.421128749847412 + ], + [ + 1.4901160305669237e-08, + 0.48176708817481995, + 0.876299262046814, + 3.532475233078003 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_18", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9857252836227417, + -0.04018745198845863, + 0.1634950041770935, + 0.6590694785118103 + ], + [ + 0.16836167871952057, + 0.2352898269891739, + -0.9572319388389587, + -3.8587255477905273 + ], + [ + 0.0, + 0.971094012260437, + 0.23869715631008148, + 0.9622190594673157 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_19", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.3995574116706848, + 0.74452143907547, + -0.5348287224769592, + -2.15596342086792 + ], + [ + -0.9167081713676453, + 0.3245079219341278, + -0.23311102390289307, + -0.9397006034851074 + ], + [ + 1.4901161193847656e-08, + 0.5834230184555054, + 0.8121684193611145, + 3.2739555835723877 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_20", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.710158109664917, + 0.2946339547634125, + -0.6394264101982117, + -2.577610492706299 + ], + [ + -0.7040421366691589, + 0.29719340801239014, + -0.6449810862541199, + -2.6000020503997803 + ], + [ + -1.4901161193847656e-08, + 0.9082217812538147, + 0.4184890389442444, + 1.686983346939087 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_21", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6612812876701355, + -0.654507577419281, + 0.36650630831718445, + 1.4774341583251953 + ], + [ + 0.7501379251480103, + -0.5769786834716797, + 0.3230922520160675, + 1.3024265766143799 + ], + [ + 0.0, + 0.48858514428138733, + 0.8725162148475647, + 3.5172252655029297 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_22", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6856005191802979, + 0.3135499954223633, + -0.656991720199585, + -2.648418664932251 + ], + [ + -0.7279778718948364, + -0.2952975034713745, + 0.6187466979026794, + 2.4942479133605957 + ], + [ + 0.0, + 0.902488648891449, + 0.43071359395980835, + 1.7362622022628784 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_23", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.6748334169387817, + 0.4901435673236847, + -0.5516874194145203, + -2.2239232063293457 + ], + [ + -0.7379699349403381, + 0.448209673166275, + -0.5044881701469421, + -2.0336568355560303 + ], + [ + 1.4901161193847656e-08, + 0.7475742697715759, + 0.6641781330108643, + 2.6773877143859863 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_24", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.49756282567977905, + -0.3889828026294708, + 0.7753216028213501, + 3.1254215240478516 + ], + [ + 0.8674280643463135, + -0.22312325239181519, + 0.44472989439964294, + 1.7927637100219727 + ], + [ + 0.0, + 0.8938167691230774, + 0.4484323561191559, + 1.8076887130737305 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_25", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9965693950653076, + -0.018657701089978218, + 0.08063071221113205, + 0.3250328004360199 + ], + [ + 0.0827612355351448, + -0.22466671466827393, + 0.9709147214889526, + 3.9138824939727783 + ], + [ + 0.0, + 0.9742569923400879, + 0.225440114736557, + 0.908778190612793 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_26", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6832142472267151, + 0.7168062329292297, + -0.13930943608283997, + -0.5615742802619934 + ], + [ + -0.7302178740501404, + -0.6706659197807312, + 0.13034218549728394, + 0.5254261493682861 + ], + [ + 0.0, + 0.19077759981155396, + 0.9816332459449768, + 3.957090139389038 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_27", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7682247757911682, + 0.47898340225219727, + -0.4247417151927948, + -1.712188720703125 + ], + [ + -0.6401801705360413, + 0.5747865438461304, + -0.5096957087516785, + -2.0546493530273438 + ], + [ + 2.9802322387695312e-08, + 0.6634721755981445, + 0.7482008934020996, + 3.016094446182251 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_28", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8990151882171631, + -0.13579244911670685, + 0.41633155941963196, + 1.6782863140106201 + ], + [ + 0.4379172921180725, + -0.27877292037010193, + 0.8547011017799377, + 3.4454104900360107 + ], + [ + 7.450580152834618e-09, + 0.9507082104682922, + 0.3100869059562683, + 1.2500004768371582 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_29", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.6181617379188538, + 0.6229991316795349, + -0.4793204367160797, + -1.9322025775909424 + ], + [ + -0.7860508561134338, + 0.4899355471134186, + -0.37694451212882996, + -1.5195120573043823 + ], + [ + 1.4901160305669237e-08, + 0.6097829937934875, + 0.7925683259963989, + 3.1949453353881836 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_30", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9459950923919678, + -0.27176666259765625, + 0.17673814296722412, + 0.7124543190002441 + ], + [ + 0.32418128848075867, + -0.7930436730384827, + 0.5157404541969299, + 2.0790164470672607 + ], + [ + 0.0, + 0.5451831221580505, + 0.8383169174194336, + 3.379363775253296 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_31", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.966070830821991, + 0.07873083651065826, + -0.24598491191864014, + -0.9915968179702759 + ], + [ + -0.25827720761299133, + 0.2944880723953247, + -0.9200922250747681, + -3.709010124206543 + ], + [ + -7.450580152834618e-09, + 0.9524065256118774, + 0.30483072996139526, + 1.2288119792938232 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_32", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9963690042495728, + -0.03832915425300598, + 0.07602337002754211, + 0.30646002292633057 + ], + [ + 0.08513916283845901, + 0.4485594630241394, + -0.8896884322166443, + -3.586449146270752 + ], + [ + 0.0, + 0.8929306864738464, + 0.4501940906047821, + 1.8147904872894287 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_33", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9521675109863281, + -0.2711222767829895, + 0.14096038043498993, + 0.5682295560836792 + ], + [ + 0.30557671189308167, + 0.8448085188865662, + -0.4392281174659729, + -1.770585298538208 + ], + [ + -7.450580596923828e-09, + 0.46129298210144043, + 0.8872478008270264, + 3.576610565185547 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_34", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.2420681267976761, + -0.16699598729610443, + 0.9557799100875854, + 3.852872371673584 + ], + [ + 0.9702592492103577, + 0.041663508862257004, + -0.23845569789409637, + -0.9612457156181335 + ], + [ + 0.0, + 0.9850767850875854, + 0.1721148043870926, + 0.6938170194625854 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_35", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9910454750061035, + 0.09859699010848999, + -0.09004007279872894, + -0.36296314001083374 + ], + [ + -0.13352368772029877, + 0.731810986995697, + -0.6682994365692139, + -2.6940011978149414 + ], + [ + 0.0, + 0.6743376851081848, + 0.7384230494499207, + 2.9766783714294434 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_36", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.19597330689430237, + -0.21500617265701294, + 0.9567479491233826, + 3.8567745685577393 + ], + [ + 0.9806092381477356, + -0.042968668043613434, + 0.19120466709136963, + 0.7707707285881042 + ], + [ + 0.0, + 0.9756669402122498, + 0.21925774216651917, + 0.8838562965393066 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_37", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.884371280670166, + -0.280295193195343, + 0.3732585310935974, + 1.5046532154083252 + ], + [ + 0.4667840301990509, + 0.5310486555099487, + -0.7071774005889893, + -2.8507232666015625 + ], + [ + -1.4901160305669237e-08, + 0.7996384501457214, + 0.6004816889762878, + 2.420619010925293 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_38", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.8970420360565186, + -0.0693732500076294, + 0.4364665150642395, + 1.7594529390335083 + ], + [ + 0.4419453740119934, + 0.14081087708473206, + -0.8859212398529053, + -3.571263074874878 + ], + [ + 3.725290742551124e-09, + 0.987602949142456, + 0.15697245299816132, + 0.6327762603759766 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_39", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.6394097208976746, + -0.5175405144691467, + 0.5686008930206299, + 2.2921037673950195 + ], + [ + 0.7688663005828857, + 0.430400550365448, + -0.4728637635707855, + -1.906174898147583 + ], + [ + 0.0, + 0.7395316958427429, + 0.6731215715408325, + 2.713440179824829 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_40", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.909176766872406, + 0.37405717372894287, + -0.1829719841480255, + -0.7375836372375488 + ], + [ + -0.4164102375507355, + -0.8167044520378113, + 0.3994951546192169, + 1.6104165315628052 + ], + [ + 0.0, + 0.43940311670303345, + 0.8982899188995361, + 3.6211225986480713 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_41", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.7413240671157837, + -0.2595895826816559, + 0.6189117431640625, + 2.494913339614868 + ], + [ + 0.6711471676826477, + -0.286732941865921, + 0.6836267709732056, + 2.7557878494262695 + ], + [ + 0.0, + 0.9221699237823486, + 0.3867848515510559, + 1.5591797828674316 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_42", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9703965187072754, + 0.10056592524051666, + -0.21958383917808533, + -0.8851708173751831 + ], + [ + -0.24151723086833954, + 0.40406566858291626, + -0.8822699189186096, + -3.556544065475464 + ], + [ + 0.0, + 0.909184992313385, + 0.4163922965526581, + 1.6785311698913574 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_43", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.43340951204299927, + 0.7607114315032959, + -0.48319169878959656, + -1.947807788848877 + ], + [ + -0.9011971354484558, + 0.3658462166786194, + -0.23237964510917664, + -0.936752200126648 + ], + [ + 1.4901161193847656e-08, + 0.5361664891242981, + 0.8441123366355896, + 3.4027252197265625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_44", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.31781402230262756, + 0.14412103593349457, + -0.9371356964111328, + -3.777714967727661 + ], + [ + -0.9481531381607056, + 0.048308324068784714, + -0.3141210377216339, + -1.2662625312805176 + ], + [ + 3.725290298461914e-09, + 0.9883802533149719, + 0.15200185775756836, + 0.6127391457557678 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_45", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9864119291305542, + 0.14818625152111053, + -0.0709383562207222, + -0.28596168756484985 + ], + [ + -0.1642906218767166, + -0.88972008228302, + 0.4259186387062073, + 1.716933012008667 + ], + [ + 7.450580152834618e-09, + 0.43178582191467285, + 0.9019761085510254, + 3.6359822750091553 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_46", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7645497918128967, + -0.3198084235191345, + 0.5596304535865784, + 2.2559425830841064 + ], + [ + 0.6445647478103638, + 0.37934038043022156, + -0.6638050079345703, + -2.6758835315704346 + ], + [ + 0.0, + 0.8682299256324768, + 0.49616187810897827, + 2.0000925064086914 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_47", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9923074841499329, + 0.04867749288678169, + -0.11382655054330826, + -0.4588494896888733 + ], + [ + -0.12379816174507141, + 0.3901757299900055, + -0.912379801273346, + -3.6779205799102783 + ], + [ + -3.725290742551124e-09, + 0.9194527268409729, + 0.39320048689842224, + 1.585041880607605 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_48", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.5159497261047363, + 0.6386572122573853, + -0.5708877444267273, + -2.3013224601745605 + ], + [ + -0.8566190004348755, + -0.3846692740917206, + 0.34385108947753906, + 1.386108160018921 + ], + [ + 0.0, + 0.6664432287216187, + 0.7455557584762573, + 3.005431652069092 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_49", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9083549380302429, + 0.08775276690721512, + -0.40888965129852295, + -1.648287057876587 + ], + [ + -0.4182000756263733, + 0.19060412049293518, + -0.8881321549415588, + -3.5801753997802734 + ], + [ + 0.0, + 0.9777368903160095, + 0.20983442664146423, + 0.8458696603775024 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_50", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7723121047019958, + -0.27833089232444763, + 0.5710218548774719, + 2.3018627166748047 + ], + [ + 0.63524329662323, + 0.3383873403072357, + -0.6942332983016968, + -2.798543930053711 + ], + [ + 1.4901162970204496e-08, + 0.8989024758338928, + 0.43814852833747864, + 1.766233205795288 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_51", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9130167961120605, + 0.09213119000196457, + -0.39738160371780396, + -1.6018965244293213 + ], + [ + -0.4079219400882721, + -0.20620936155319214, + 0.8894252777099609, + 3.585387945175171 + ], + [ + 0.0, + 0.9741609692573547, + 0.22585493326187134, + 0.9104503393173218 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_52", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.009716315194964409, + 0.15028458833694458, + -0.9885949492454529, + -3.985153913497925 + ], + [ + -0.9999527931213379, + -0.0014602814335376024, + 0.009605953469872475, + 0.03872283920645714 + ], + [ + 0.0, + 0.9886416792869568, + 0.15029166638851166, + 0.6058451533317566 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_53", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9996910691261292, + -0.01323472149670124, + 0.021036459133028984, + 0.08480067551136017 + ], + [ + 0.024853376671671867, + 0.5323475003242493, + -0.8461610674858093, + -3.4109842777252197 + ], + [ + 0.0, + 0.8464224934577942, + 0.5325119495391846, + 2.1466243267059326 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_54", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.2763310670852661, + -0.5531052350997925, + 0.7859488725662231, + 3.1682612895965576 + ], + [ + 0.9610625505447388, + 0.15903249382972717, + -0.22598125040531158, + -0.9109595417976379 + ], + [ + 0.0, + 0.8177916407585144, + 0.5755143761634827, + 2.3199727535247803 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_55", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.039113599807024, + 0.31248739361763, + -0.9491162300109863, + -3.826010227203369 + ], + [ + -0.9992348551750183, + 0.012231865897774696, + -0.03715177997946739, + -0.14976362884044647 + ], + [ + -9.31322685637781e-10, + 0.949843168258667, + 0.31272661685943604, + 1.2606414556503296 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_56", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.3310481011867523, + 0.3763582408428192, + -0.8653100728988647, + -3.4881768226623535 + ], + [ + -0.9436139464378357, + 0.13203775882720947, + -0.3035767376422882, + -1.2237571477890015 + ], + [ + 0.0, + 0.9170171618461609, + 0.39884769916534424, + 1.60780668258667 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_57", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.20831438899040222, + 0.40705201029777527, + -0.8893333077430725, + -3.585017204284668 + ], + [ + -0.9780619740486145, + 0.08669673651456833, + -0.1894163340330124, + -0.7635616660118103 + ], + [ + 0.0, + 0.9092810750007629, + 0.4161823093891144, + 1.6776845455169678 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_58", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7944692373275757, + -0.6062259674072266, + 0.036176130175590515, + 0.1458306610584259 + ], + [ + 0.6073044538497925, + 0.7930583953857422, + -0.04732523113489151, + -0.1907741278409958 + ], + [ + 0.0, + 0.059569258242845535, + 0.9982241988182068, + 4.023970603942871 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_59", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8675149083137512, + 0.44796228408813477, + -0.21621209383010864, + -0.8715788125991821 + ], + [ + -0.4974111318588257, + -0.7812731266021729, + 0.377086877822876, + 1.5200858116149902 + ], + [ + 0.0, + 0.43467482924461365, + 0.9005874395370483, + 3.6303842067718506 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_60", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9670849442481995, + 0.21641112864017487, + -0.13383978605270386, + -0.5395254492759705 + ], + [ + -0.2544540762901306, + 0.8224979043006897, + -0.5086750388145447, + -2.050534725189209 + ], + [ + 0.0, + 0.5259881615638733, + 0.8504919409751892, + 3.4284424781799316 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_61", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9350115060806274, + 0.3283851742744446, + -0.13385309278964996, + -0.5395791530609131 + ], + [ + -0.3546173870563507, + -0.8658456206321716, + 0.35292738676071167, + 1.4226958751678467 + ], + [ + 0.0, + 0.3774578273296356, + 0.9260267019271851, + 3.732933282852173 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_62", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.23203067481517792, + 0.8489894866943359, + -0.47474056482315063, + -1.9137403964996338 + ], + [ + -0.9727085828781128, + -0.20251862704753876, + 0.11324498802423477, + 0.45650514960289 + ], + [ + 0.0, + 0.48806050419807434, + 0.8728097677230835, + 3.51840877532959 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_63", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.906843900680542, + -0.2719287872314453, + 0.32200759649276733, + 1.2980540990829468 + ], + [ + 0.4214666783809662, + 0.5850923657417297, + -0.6928439140319824, + -2.792943239212036 + ], + [ + 1.4901161193847656e-08, + 0.7640167474746704, + 0.6451963782310486, + 2.60086989402771 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_64", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9884533882141113, + -0.09164947271347046, + 0.12066596746444702, + 0.48642003536224365 + ], + [ + 0.15152525901794434, + 0.5978623032569885, + -0.7871472239494324, + -3.1730918884277344 + ], + [ + -7.450580596923828e-09, + 0.7963422536849976, + 0.604846179485321, + 2.4382128715515137 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_65", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6538179516792297, + -0.7495444416999817, + 0.10346575081348419, + 0.4170837998390198 + ], + [ + 0.7566519975662231, + -0.6476763486862183, + 0.08940406143665314, + 0.3603993356227875 + ], + [ + 7.450581485102248e-09, + 0.13674169778823853, + 0.9906066656112671, + 3.9932634830474854 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_66", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9739534258842468, + -0.1556519716978073, + 0.16488546133041382, + 0.6646745800971985 + ], + [ + 0.2267482578754425, + -0.6685730814933777, + 0.7082337737083435, + 2.8549816608428955 + ], + [ + 0.0, + 0.7271741032600403, + 0.6864529848098755, + 2.7671804428100586 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_67", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.06665084511041641, + 0.582084596157074, + -0.8103919625282288, + -3.2667946815490723 + ], + [ + -0.9977763891220093, + -0.038882892578840256, + 0.05413367971777916, + 0.21821986138820648 + ], + [ + -3.725290298461914e-09, + 0.8121980428695679, + 0.5833817720413208, + 2.351687431335449 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_68", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.050022684037685394, + -0.3762056231498718, + 0.9251847267150879, + 3.729539394378662 + ], + [ + 0.9987480640411377, + 0.018842404708266258, + -0.04633823782205582, + -0.1867954283952713 + ], + [ + 0.0, + 0.9263445138931274, + 0.37667715549468994, + 1.5184344053268433 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_69", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.6995700597763062, + -0.21727487444877625, + 0.6807300448417664, + 2.744110584259033 + ], + [ + 0.7145641446113586, + 0.21271567046642303, + -0.6664459109306335, + -2.6865293979644775 + ], + [ + 0.0, + 0.9526507258415222, + 0.30406635999679565, + 1.2257306575775146 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_70", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.36302992701530457, + -0.18114851415157318, + 0.913999080657959, + 3.684448480606079 + ], + [ + 0.9317774176597595, + -0.07057730853557587, + 0.3561033308506012, + 1.435498595237732 + ], + [ + 0.0, + 0.9809200167655945, + 0.1944117695093155, + 0.7836989760398865 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_71", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9456927180290222, + -0.2528000771999359, + 0.2043461948633194, + 0.8237459063529968 + ], + [ + 0.3250618875026703, + 0.735463559627533, + -0.5944981575012207, + -2.396498918533325 + ], + [ + 0.0, + 0.6286377310752869, + 0.7776980996131897, + 3.1350016593933105 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_72", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9935104846954346, + -0.11331494897603989, + 0.009830805473029613, + 0.039629243314266205 + ], + [ + 0.11374059319496155, + -0.98979252576828, + 0.08587091416120529, + 0.3461567163467407 + ], + [ + -9.313225191043273e-10, + 0.08643147349357605, + 0.9962577819824219, + 4.016043663024902 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_73", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.8529440760612488, + 0.44996073842048645, + -0.2646159827709198, + -1.0667011737823486 + ], + [ + -0.5220021605491638, + 0.7352294325828552, + -0.43237876892089844, + -1.7429745197296143 + ], + [ + 0.0, + 0.506925106048584, + 0.8619900941848755, + 3.4747931957244873 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_74", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.47911742329597473, + 0.6678298711776733, + -0.5696049928665161, + -2.2961511611938477 + ], + [ + -0.8777508735656738, + -0.3645327389240265, + 0.3109170198440552, + 1.253346562385559 + ], + [ + 1.4901161193847656e-08, + 0.648936927318573, + 0.7608420848846436, + 3.0670526027679443 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_75", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9995903372764587, + -0.026026856154203415, + 0.011902356520295143, + 0.0479799322783947 + ], + [ + 0.028619280084967613, + 0.9090443253517151, + -0.4157155454158783, + -1.6758029460906982 + ], + [ + -9.313225191043273e-10, + 0.4158859848976135, + 0.9094167947769165, + 3.6659762859344482 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_76", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8883686065673828, + 0.43911993503570557, + -0.13407078385353088, + -0.5404565930366516 + ], + [ + -0.45913103222846985, + -0.8496493697166443, + 0.25941237807273865, + 1.0457247495651245 + ], + [ + -7.450580596923828e-09, + 0.2920098304748535, + 0.9564152956008911, + 3.855433464050293 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_77", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.4179227352142334, + -0.24971166253089905, + 0.8734897971153259, + 3.521150588989258 + ], + [ + 0.9084826111793518, + 0.11487305164337158, + -0.4018252193927765, + -1.6198095083236694 + ], + [ + 7.450580596923828e-09, + 0.9614822864532471, + 0.2748667001724243, + 1.1080232858657837 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_78", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.8936077356338501, + -0.18154653906822205, + 0.410494863986969, + 1.6547577381134033 + ], + [ + 0.4488487243652344, + 0.36143890023231506, + -0.8172494769096375, + -3.294438123703003 + ], + [ + 1.4901161193847656e-08, + 0.9145506024360657, + 0.4044714868068695, + 1.630476713180542 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_79", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.1718229204416275, + 0.21822063624858856, + -0.9606542587280273, + -3.872521162033081 + ], + [ + -0.985127866268158, + 0.03806136175990105, + -0.1675543189048767, + -0.6754330396652222 + ], + [ + 0.0, + 0.9751569032669067, + 0.22151505947113037, + 0.8929557800292969 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_80", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9603833556175232, + 0.26053109765052795, + -0.09893100708723068, + -0.3988036513328552 + ], + [ + -0.27868226170539856, + 0.8978314995765686, + -0.3409319519996643, + -1.3743406534194946 + ], + [ + 0.0, + 0.3549957871437073, + 0.9348679780960083, + 3.76857328414917 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_81", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.5817694067955017, + -0.4447491466999054, + 0.6809863448143005, + 2.7451438903808594 + ], + [ + 0.8133537173271179, + 0.31811678409576416, + -0.48709070682525635, + -1.963525652885437 + ], + [ + 0.0, + 0.837257444858551, + 0.5468088984489441, + 2.2042574882507324 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_82", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9886860847473145, + 0.11763529479503632, + -0.09306918829679489, + -0.3751738965511322 + ], + [ + -0.14999981224536896, + -0.775363564491272, + 0.6134422421455383, + 2.472864866256714 + ], + [ + 0.0, + 0.62046217918396, + 0.7842363715171814, + 3.161357879638672 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_83", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.5239472985267639, + 0.2413756102323532, + -0.81683349609375, + -3.2927613258361816 + ], + [ + -0.8517506718635559, + -0.14848019182682037, + 0.5024682879447937, + 2.025514602661133 + ], + [ + 0.0, + 0.9590055346488953, + 0.28338757157325745, + 1.1423720121383667 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_84", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7633424401283264, + -0.48092415928840637, + 0.4313005805015564, + 1.7386282682418823 + ], + [ + 0.6459938883781433, + 0.5682868361473083, + -0.5096487998962402, + -2.054460048675537 + ], + [ + -1.4901160305669237e-08, + 0.6676540970802307, + 0.7444716095924377, + 3.001060962677002 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_85", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9717633724212646, + 0.05724044516682625, + -0.2289092242717743, + -0.9227626323699951 + ], + [ + -0.23595742881298065, + -0.23573815822601318, + 0.9427361488342285, + 3.8002912998199463 + ], + [ + -3.725290298461914e-09, + 0.9701294302940369, + 0.24258798360824585, + 0.9779034852981567 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_86", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7578750252723694, + -0.5546501278877258, + 0.34349462389945984, + 1.3846710920333862 + ], + [ + 0.6523995399475098, + 0.6443222165107727, + -0.399028480052948, + -1.6085352897644043 + ], + [ + -1.4901158529312397e-08, + 0.5265095233917236, + 0.8501691818237305, + 3.4271416664123535 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_87", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.3277105391025543, + 0.12198483198881149, + -0.9368700385093689, + -3.776643991470337 + ], + [ + -0.9447781443595886, + 0.04231227934360504, + -0.32496750354766846, + -1.309985876083374 + ], + [ + 3.725290298461914e-09, + 0.9916296005249023, + 0.1291147917509079, + 0.520478367805481 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_88", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.05340086296200752, + 0.9970571994781494, + -0.05500370264053345, + -0.22172698378562927 + ], + [ + -0.9985732436180115, + 0.053319789469242096, + -0.0029414419550448656, + -0.011857330799102783 + ], + [ + 0.0, + 0.055082228034734726, + 0.9984818696975708, + 4.025008678436279 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_89", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9256971478462219, + -0.1392616182565689, + 0.35169705748558044, + 1.417736291885376 + ], + [ + 0.37826526165008545, + -0.3408033847808838, + 0.8606789708137512, + 3.469508171081543 + ], + [ + 7.4505797087454084e-09, + 0.9297630786895752, + 0.3681585192680359, + 1.4840946197509766 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_90", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.8168125748634338, + 0.22478756308555603, + -0.5313075184822083, + -2.1417694091796875 + ], + [ + -0.5769031047821045, + 0.3182671368122101, + -0.7522556781768799, + -3.032440185546875 + ], + [ + -1.4901161193847656e-08, + 0.9209650754928589, + 0.38964512944221497, + 1.5707099437713623 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_91", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9155477285385132, + 0.05443828925490379, + -0.3985081911087036, + -1.6064379215240479 + ], + [ + -0.40220925211906433, + 0.12391771376132965, + -0.9071229696273804, + -3.6567296981811523 + ], + [ + 3.725290076417309e-09, + 0.9907981157302856, + 0.13534817099571228, + 0.5456059575080872 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_92", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9641278386116028, + -0.12633119523525238, + 0.2334478795528412, + 0.9410585165023804 + ], + [ + 0.2654382586479187, + 0.4588615298271179, + -0.8479319214820862, + -3.4181230068206787 + ], + [ + 0.0, + 0.87948077917099, + 0.47593429684638977, + 1.9185525178909302 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_93", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.394783616065979, + -0.37425532937049866, + 0.8390939831733704, + 3.3824961185455322 + ], + [ + 0.9187741875648499, + 0.16081197559833527, + -0.3605462312698364, + -1.4534083604812622 + ], + [ + -1.4901162970204496e-08, + 0.9132755994796753, + 0.4073420464992523, + 1.6420483589172363 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_94", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.03731812909245491, + -0.7349131107330322, + 0.6771336197853088, + 2.7296128273010254 + ], + [ + 0.99930340051651, + 0.02744470350444317, + -0.025286976248025894, + -0.10193505883216858 + ], + [ + -1.8626450382086546e-09, + 0.6776055097579956, + 0.7354255318641663, + 2.964595079421997 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_95", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9126620888710022, + -0.08376051485538483, + 0.4000401198863983, + 1.6126132011413574 + ], + [ + 0.40871497988700867, + -0.18703754246234894, + 0.8932911157608032, + 3.6009714603424072 + ], + [ + 0.0, + 0.9787752628326416, + 0.20493626594543457, + 0.8261244893074036 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_96", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.18085825443267822, + -0.7751240134239197, + 0.6053702235221863, + 2.4403254985809326 + ], + [ + 0.9835091829299927, + -0.1425381451845169, + 0.11132199317216873, + 0.448753297328949 + ], + [ + 0.0, + 0.6155205965042114, + 0.7881207466125488, + 3.177016258239746 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_97", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6628919243812561, + -0.6726369261741638, + 0.32883697748184204, + 1.3255844116210938 + ], + [ + 0.7487151026725769, + -0.5955343842506409, + 0.2911432683467865, + 1.1736361980438232 + ], + [ + 0.0, + 0.4392017722129822, + 0.8983883857727051, + 3.6215195655822754 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_98", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7465668320655823, + 0.6418735384941101, + -0.17503224313259125, + -0.7055776119232178 + ], + [ + -0.6653103828430176, + 0.7202675938606262, + -0.19640949368476868, + -0.7917520403862 + ], + [ + 0.0, + 0.2630835771560669, + 0.9647729396820068, + 3.8891243934631348 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "train/r_99", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8963321447372437, + -0.1317376047372818, + 0.42336004972457886, + 1.7066189050674438 + ], + [ + 0.44338303804397583, + -0.2663174867630005, + 0.8558542132377625, + 3.450058698654175 + ], + [ + 0.0, + 0.9548404216766357, + 0.297119140625, + 1.197725534439087 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + } + ] +} \ No newline at end of file diff --git a/data/rug_cup/transforms_val.json b/data/rug_cup/transforms_val.json new file mode 100644 index 0000000000000000000000000000000000000000..d00ee4dbf28dba1ac8c8e2a9973f45b4320cf807 --- /dev/null +++ b/data/rug_cup/transforms_val.json @@ -0,0 +1,3005 @@ +{ + "camera_angle_x": 0.6911112070083618, + "frames": [ + { + "file_path": "val/r_0", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6420233845710754, + -0.33369165658950806, + 0.6902577877044678, + 2.7825183868408203 + ], + [ + 0.7666850090026855, + -0.279433935880661, + 0.5780230164527893, + 2.330085515975952 + ], + [ + -1.4901160305669237e-08, + 0.9003147482872009, + 0.4352394938468933, + 1.7545065879821777 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_1", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.3685115575790405, + 0.7313242554664612, + -0.5739024877548218, + -2.3134751319885254 + ], + [ + -0.9296232461929321, + -0.2899039387702942, + 0.22750045359134674, + 0.917083740234375 + ], + [ + 0.0, + 0.6173496246337891, + 0.7866888642311096, + 3.1712443828582764 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_2", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7540309429168701, + 0.15911728143692017, + -0.6372745037078857, + -2.5689358711242676 + ], + [ + -0.6568387150764465, + 0.18266183137893677, + -0.7315718531608582, + -2.9490606784820557 + ], + [ + 0.0, + 0.9702146053314209, + 0.242247074842453, + 0.9765292406082153 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_3", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6195905208587646, + -0.3684111535549164, + 0.6930949687957764, + 2.7939553260803223 + ], + [ + 0.7849251627922058, + -0.2908099889755249, + 0.547103226184845, + 2.205443859100342 + ], + [ + 1.4901161193847656e-08, + 0.8830077648162842, + 0.46935829520225525, + 1.892043948173523 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_4", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8693377375602722, + -0.21374553442001343, + 0.4456060826778412, + 1.7962955236434937 + ], + [ + 0.49421852827072144, + -0.37598156929016113, + 0.7838277220726013, + 3.159710645675659 + ], + [ + 0.0, + 0.901637852191925, + 0.43249189853668213, + 1.7434306144714355 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_5", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9376246333122253, + -0.3474541902542114, + 0.011640266515314579, + 0.04692341387271881 + ], + [ + 0.34764906764030457, + 0.937099039554596, + -0.03139430284500122, + -0.1265544891357422 + ], + [ + 0.0, + 0.03348297253251076, + 0.9994392991065979, + 4.028868675231934 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_6", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9987809658050537, + -0.04213542863726616, + 0.025713995099067688, + 0.10365644097328186 + ], + [ + 0.049361974000930786, + -0.8525604605674744, + 0.5202921628952026, + 2.097365140914917 + ], + [ + 1.862645371275562e-09, + 0.520927369594574, + 0.8536009192466736, + 3.4409756660461426 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_7", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9918919801712036, + 0.030148619785904884, + -0.12345601618289948, + -0.4976671636104584 + ], + [ + -0.1270839422941208, + -0.2353103756904602, + 0.9635758996009827, + 3.8842990398406982 + ], + [ + 1.862645149230957e-09, + 0.971452534198761, + 0.23723387718200684, + 0.9563204050064087 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_8", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.012159571051597595, + 0.7897173762321472, + -0.6133502721786499, + -2.47249436378479 + ], + [ + -0.9999260902404785, + 0.009603334590792656, + -0.007458627223968506, + -0.03006669133901596 + ], + [ + 0.0, + 0.6133956909179688, + 0.7897756099700928, + 3.183687686920166 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_9", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.7270243167877197, + -0.6245560646057129, + 0.28524601459503174, + 1.149863600730896 + ], + [ + 0.6866115927696228, + -0.6613163352012634, + 0.3020350933074951, + 1.2175425291061401 + ], + [ + 0.0, + 0.4154401123523712, + 0.909620463848114, + 3.666797637939453 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_10", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8010538220405579, + -0.5910102128982544, + 0.09497161954641342, + 0.38284286856651306 + ], + [ + 0.598592221736908, + -0.7909073829650879, + 0.1270938366651535, + 0.5123317241668701 + ], + [ + -7.450580152834618e-09, + 0.15865840017795563, + 0.9873334765434265, + 3.9800686836242676 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_11", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.738511323928833, + -0.4971509277820587, + 0.45545798540115356, + 1.8360100984573364 + ], + [ + 0.6742411255836487, + -0.5445404648780823, + 0.4988732933998108, + 2.0110228061676025 + ], + [ + -1.4901161193847656e-08, + 0.6755121946334839, + 0.7373487949371338, + 2.972348213195801 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_12", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.6147017478942871, + -0.7818600535392761, + 0.10409874469041824, + 0.41963547468185425 + ], + [ + 0.7887595891952515, + 0.6093247532844543, + -0.08112697303295135, + -0.32703328132629395 + ], + [ + -7.450580596923828e-09, + 0.1319778710603714, + 0.9912526607513428, + 3.9958672523498535 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_13", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.5893339514732361, + 0.10845449566841125, + -0.8005768060684204, + -3.2272279262542725 + ], + [ + -0.8078895211219788, + -0.07911467552185059, + 0.583999514579773, + 2.3541769981384277 + ], + [ + 0.0, + 0.9909482598304749, + 0.13424421846866608, + 0.5411556959152222 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_14", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.05008459463715553, + -0.8549945950508118, + 0.5162128806114197, + 2.080920934677124 + ], + [ + 0.9987449645996094, + 0.04287587106227875, + -0.02588680386543274, + -0.10435305535793304 + ], + [ + -1.8626450382086546e-09, + 0.516861617565155, + 0.8560689091682434, + 3.4509243965148926 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_15", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.1544184684753418, + -0.410498708486557, + 0.8986911177635193, + 3.622739791870117 + ], + [ + 0.9880054593086243, + -0.0641581267118454, + 0.14045925438404083, + 0.5662093758583069 + ], + [ + -3.725290076417309e-09, + 0.9096013307571411, + 0.41548216342926025, + 1.6748621463775635 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_16", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.2823107838630676, + 0.8226176500320435, + -0.49355942010879517, + -1.9896016120910645 + ], + [ + -0.959322988986969, + 0.242080956697464, + -0.1452452838420868, + -0.5855024456977844 + ], + [ + 7.450580596923828e-09, + 0.5144872069358826, + 0.8574979901313782, + 3.4566850662231445 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_17", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.2930782437324524, + 0.7944903373718262, + -0.5318742990493774, + -2.1440539360046387 + ], + [ + -0.9560885429382324, + 0.2435421347618103, + -0.1630401313304901, + -0.6572358012199402 + ], + [ + -1.4901162970204496e-08, + 0.5563023090362549, + 0.8309798836708069, + 3.3497869968414307 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_18", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.3192499279975891, + -0.2968806326389313, + 0.8999673128128052, + 3.62788462638855 + ], + [ + 0.9476706385612488, + -0.10001271963119507, + 0.30317968130111694, + 1.2221565246582031 + ], + [ + 0.0, + 0.9496627449989319, + 0.3132740557193756, + 1.2628482580184937 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_19", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.7963466048240662, + 0.4809844493865967, + -0.36672326922416687, + -1.478308916091919 + ], + [ + -0.6048404574394226, + -0.6332749724388123, + 0.48283612728118896, + 1.9463748931884766 + ], + [ + 1.4901160305669237e-08, + 0.6063141226768494, + 0.7952251434326172, + 3.205655574798584 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_20", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9039504528045654, + -0.33908703923225403, + 0.26056405901908875, + 1.0503674745559692 + ], + [ + 0.42763736844062805, + 0.716770589351654, + -0.5507867932319641, + -2.220292806625366 + ], + [ + 1.4901162970204496e-08, + 0.6093109250068665, + 0.792931318283081, + 3.19640851020813 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_21", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.994170606136322, + 0.06378341466188431, + -0.08692846447229385, + -0.35041987895965576 + ], + [ + -0.10781875997781754, + -0.5881313681602478, + 0.8015463352203369, + 3.2311367988586426 + ], + [ + 3.725290298461914e-09, + 0.806246280670166, + 0.5915799140930176, + 2.384735107421875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_22", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9449211955070496, + -0.13249695301055908, + 0.2992801070213318, + 1.2064368724822998 + ], + [ + 0.327298104763031, + 0.38252338767051697, + -0.8640322089195251, + -3.483025550842285 + ], + [ + -7.450581485102248e-09, + 0.9143961668014526, + 0.40482038259506226, + 1.6318832635879517 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_23", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9840222597122192, + 0.09701180458068848, + -0.14929437637329102, + -0.6018248796463013 + ], + [ + -0.17804519832134247, + 0.5361658930778503, + -0.8251218199729919, + -3.326172351837158 + ], + [ + -7.450580152834618e-09, + 0.8385194540023804, + 0.5448716878890991, + 2.1964480876922607 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_24", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6857627034187317, + -0.4639882445335388, + 0.5607534050941467, + 2.260469436645508 + ], + [ + 0.7278252840042114, + -0.43717339634895325, + 0.5283462405204773, + 2.1298320293426514 + ], + [ + 2.980232594040899e-08, + 0.7704507112503052, + 0.6374995112419128, + 2.569843053817749 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_25", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.5502443909645081, + -0.3019985854625702, + 0.7784779071807861, + 3.1381449699401855 + ], + [ + 0.835003674030304, + -0.1990087479352951, + 0.5129954814910889, + 2.067951202392578 + ], + [ + 0.0, + 0.932304859161377, + 0.36167335510253906, + 1.4579520225524902 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_26", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.2661738991737366, + -0.8686304688453674, + 0.41789060831069946, + 1.6845709085464478 + ], + [ + 0.9639250636100769, + 0.2398596853017807, + -0.11539442092180252, + -0.4651697874069214 + ], + [ + 0.0, + 0.4335302710533142, + 0.9011390209197998, + 3.6326076984405518 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_27", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8891260027885437, + -0.18850110471248627, + 0.4170399606227875, + 1.681141972541809 + ], + [ + 0.4576626121997833, + -0.3662113547325134, + 0.8102061748504639, + 3.2660458087921143 + ], + [ + 0.0, + 0.9112389087677002, + 0.41187793016433716, + 1.6603331565856934 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_28", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.37930917739868164, + 0.9224705100059509, + -0.07192329317331314, + -0.28993210196495056 + ], + [ + -0.9252700805664062, + -0.3781614899635315, + 0.029484543949365616, + 0.11885600537061691 + ], + [ + 1.862645149230957e-09, + 0.07773149758577347, + 0.9969742298126221, + 4.018931865692139 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_29", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6489023566246033, + -0.4936405122280121, + 0.5790032148361206, + 2.3340365886688232 + ], + [ + 0.7608716487884521, + -0.420996755361557, + 0.49379757046699524, + 1.9905617237091064 + ], + [ + -1.4901159417490817e-08, + 0.7609736323356628, + 0.6487827897071838, + 2.6153271198272705 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_30", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.4520088732242584, + -0.4585496783256531, + 0.7651275992393494, + 3.0843279361724854 + ], + [ + 0.8920135498046875, + 0.23236027359962463, + -0.3877120912075043, + -1.5629174709320068 + ], + [ + -1.4901162970204496e-08, + 0.8577533960342407, + 0.5140613317489624, + 2.0722475051879883 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_31", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.236971914768219, + -0.6839715242385864, + 0.6899473071098328, + 2.781266689300537 + ], + [ + 0.971516489982605, + 0.1668340563774109, + -0.16829167306423187, + -0.6784054636955261 + ], + [ + 7.4505797087454084e-09, + 0.7101756930351257, + 0.7040244936943054, + 2.8380136489868164 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_32", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.687861442565918, + 0.18659581243991852, + -0.7014474272727966, + -2.827625274658203 + ], + [ + -0.7258419394493103, + 0.17683196067810059, + -0.6647433638572693, + -2.679666519165039 + ], + [ + 0.0, + 0.9663914442062378, + 0.25707492232322693, + 1.0363023281097412 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_33", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.8678098917007446, + -0.18601389229297638, + 0.46076563000679016, + 1.8574057817459106 + ], + [ + 0.4968965947628021, + 0.32486578822135925, + -0.8047086000442505, + -3.243884325027466 + ], + [ + 0.0, + 0.9272868633270264, + 0.3743513524532318, + 1.5090587139129639 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_34", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9943200945854187, + 0.07921313494443893, + -0.07108389586210251, + -0.286548376083374 + ], + [ + -0.10643140226602554, + -0.7400373220443726, + 0.6640911102294922, + 2.677037239074707 + ], + [ + 0.0, + 0.6678847670555115, + 0.7442646622657776, + 3.0002269744873047 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_35", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9996656179428101, + 0.011812310665845871, + -0.023003198206424713, + -0.0927288606762886 + ], + [ + -0.0258588045835495, + -0.4566476047039032, + 0.8892717957496643, + 3.5847692489624023 + ], + [ + 0.0, + 0.8895692229270935, + 0.45680034160614014, + 1.841421127319336 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_36", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9909951686859131, + 0.04636329039931297, + -0.12561391294002533, + -0.506365954875946 + ], + [ + -0.13389702141284943, + 0.3431427776813507, + -0.9296905398368835, + -3.7477025985717773 + ], + [ + -3.7252898543727042e-09, + 0.9381383657455444, + 0.3462607264518738, + 1.3958218097686768 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_37", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.31089547276496887, + 0.6776195764541626, + -0.6664649844169617, + -2.6866064071655273 + ], + [ + -0.9504440426826477, + 0.22165310382843018, + -0.21800437569618225, + -0.8788037896156311 + ], + [ + 0.0, + 0.7012143135070801, + 0.7129504680633545, + 2.873995542526245 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_38", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7424619197845459, + -0.1062844768166542, + 0.6614029407501221, + 2.6662003993988037 + ], + [ + 0.6698882579803467, + 0.11779902130365372, + -0.7330573797225952, + -2.9550487995147705 + ], + [ + 0.0, + 0.987333357334137, + 0.15865999460220337, + 0.6395788788795471 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_39", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9835176467895508, + -0.168929323554039, + 0.06446699053049088, + 0.25987476110458374 + ], + [ + 0.18081234395503998, + 0.9188805818557739, + -0.3506641983985901, + -1.4135725498199463 + ], + [ + 0.0, + 0.35654085874557495, + 0.9342796802520752, + 3.766201972961426 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_40", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.35893917083740234, + 0.542414665222168, + -0.7595715522766113, + -3.0619311332702637 + ], + [ + -0.9333609938621521, + 0.20859438180923462, + -0.2921055853366852, + -1.1775153875350952 + ], + [ + 1.4901161193847656e-08, + 0.8138026595115662, + 0.5811412930488586, + 2.342655658721924 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_41", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.7564025521278381, + -0.5387284159660339, + 0.3709809482097626, + 1.4954720735549927 + ], + [ + 0.6541063189506531, + -0.622980535030365, + 0.4289989471435547, + 1.7293500900268555 + ], + [ + -1.4901160305669237e-08, + 0.5671569108963013, + 0.8236097693443298, + 3.3200771808624268 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_42", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.998526394367218, + 0.037546783685684204, + -0.03918213024735451, + -0.15794822573661804 + ], + [ + -0.05426785722374916, + -0.690859317779541, + 0.720949649810791, + 2.906240940093994 + ], + [ + 1.8626450382086546e-09, + 0.7220136523246765, + 0.6918788552284241, + 2.789052963256836 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_43", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.38398367166519165, + -0.7991681694984436, + 0.4624789357185364, + 1.8643121719360352 + ], + [ + 0.9233399629592896, + 0.3323450982570648, + -0.19232824444770813, + -0.7752999663352966 + ], + [ + 1.4901162970204496e-08, + 0.500876247882843, + 0.8655189275741577, + 3.489018440246582 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_44", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6485649943351746, + -0.23513047397136688, + 0.723931610584259, + 2.918262004852295 + ], + [ + 0.761159360408783, + -0.2003488540649414, + 0.6168441772460938, + 2.4865787029266357 + ], + [ + 1.4901162970204496e-08, + 0.951090931892395, + 0.30891096591949463, + 1.2452600002288818 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_45", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.0493306964635849, + -0.27774447202682495, + 0.9593875408172607, + 3.867414951324463 + ], + [ + 0.9987825155258179, + 0.013718031346797943, + -0.047384947538375854, + -0.19101482629776 + ], + [ + -9.313225746154785e-10, + 0.9605569839477539, + 0.27808305621147156, + 1.1209886074066162 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_46", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.020595448091626167, + 0.518561065196991, + -0.8547924160957336, + -3.4457786083221436 + ], + [ + -0.9997879862785339, + 0.010682263411581516, + -0.01760856620967388, + -0.07098241150379181 + ], + [ + 9.31322685637781e-10, + 0.8549737930297852, + 0.5186710953712463, + 2.0908303260803223 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_47", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.034901607781648636, + 0.7679140567779541, + -0.6396013498306274, + -2.578315496444702 + ], + [ + -0.9993908405303955, + 0.026817770674824715, + -0.022336721420288086, + -0.09004220366477966 + ], + [ + 0.0, + 0.639991283416748, + 0.76838219165802, + 3.097447633743286 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_48", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8243990540504456, + -0.2272324562072754, + 0.5183932781219482, + 2.0897104740142822 + ], + [ + 0.5660091042518616, + -0.3309668004512787, + 0.7550460696220398, + 3.0436882972717285 + ], + [ + 0.0, + 0.9158745408058167, + 0.4014643132686615, + 1.6183545589447021 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_49", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.5187234282493591, + -0.746091902256012, + 0.41745999455451965, + 1.6828351020812988 + ], + [ + 0.8549420237541199, + -0.4526802599430084, + 0.2532877027988434, + 1.0210354328155518 + ], + [ + 0.0, + 0.4882904291152954, + 0.872681200504303, + 3.517890453338623 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_50", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6493801474571228, + -0.3327910304069519, + 0.683780312538147, + 2.756406784057617 + ], + [ + 0.7604640126228333, + -0.2841789722442627, + 0.5838978886604309, + 2.3537678718566895 + ], + [ + 0.0, + 0.8991621136665344, + 0.4376157224178314, + 1.7640855312347412 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_51", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.3472277820110321, + 0.8766120076179504, + -0.33314278721809387, + -1.3429415225982666 + ], + [ + -0.9377808570861816, + 0.3245790898799896, + -0.12335124611854553, + -0.49724477529525757 + ], + [ + 0.0, + 0.3552459180355072, + 0.9347728490829468, + 3.7681899070739746 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_52", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9083150625228882, + -0.3138803541660309, + 0.27648335695266724, + 1.1145401000976562 + ], + [ + 0.41828691959381104, + 0.6815949082374573, + -0.600386917591095, + -2.4202370643615723 + ], + [ + 0.0, + 0.6609898209571838, + 0.7503948211669922, + 3.0249383449554443 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_53", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.5963184833526611, + 0.36750829219818115, + -0.7136819362640381, + -2.876944065093994 + ], + [ + -0.8027480244636536, + 0.2730022370815277, + -0.5301560759544373, + -2.137127637863159 + ], + [ + 0.0, + 0.8890486359596252, + 0.4578127861022949, + 1.845502495765686 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_54", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9957006573677063, + 0.018600624054670334, + -0.0907428190112114, + -0.3657959997653961 + ], + [ + -0.09262959659099579, + -0.19994314014911652, + 0.9754191637039185, + 3.9320404529571533 + ], + [ + 0.0, + 0.9796309471130371, + 0.20080648362636566, + 0.8094768524169922 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_55", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7474499940872192, + -0.6616082191467285, + 0.05994216725230217, + 0.2416345775127411 + ], + [ + 0.6643180847167969, + 0.7444010376930237, + -0.06744325160980225, + -0.2718724012374878 + ], + [ + -3.7252898543727042e-09, + 0.09023158252239227, + 0.9959208965301514, + 4.014685153961182 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_56", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.956197202205658, + 0.12904077768325806, + -0.2627454996109009, + -1.0591609477996826 + ], + [ + -0.2927229106426239, + 0.42151960730552673, + -0.8582741618156433, + -3.4598138332366943 + ], + [ + 7.4505797087454084e-09, + 0.8975909352302551, + 0.4408291280269623, + 1.7770390510559082 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_57", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9297996759414673, + -0.1510840803384781, + 0.33562856912612915, + 1.3529620170593262 + ], + [ + 0.36806654930114746, + 0.3816644549369812, + -0.8478556871414185, + -3.417815685272217 + ], + [ + 0.0, + 0.911869466304779, + 0.4104803502559662, + 1.6546992063522339 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_58", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9823369383811951, + 0.06052517518401146, + -0.17706182599067688, + -0.7137591242790222 + ], + [ + -0.18712079524993896, + -0.31774187088012695, + 0.9295299053192139, + 3.7470550537109375 + ], + [ + 3.725290298461914e-09, + 0.9462435245513916, + 0.3234550952911377, + 1.303889274597168 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_59", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.7841745018959045, + 0.5127298831939697, + -0.34954023361206055, + -1.4090418815612793 + ], + [ + -0.6205403804779053, + 0.6479347944259644, + -0.4417126774787903, + -1.780600905418396 + ], + [ + -1.4901161193847656e-08, + 0.5632836818695068, + 0.8262634873390198, + 3.3307747840881348 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_60", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.15274623036384583, + -0.8310781121253967, + 0.53476881980896, + 2.1557223796844482 + ], + [ + 0.9882654547691345, + 0.1284513622522354, + -0.08265383541584015, + -0.3331882953643799 + ], + [ + 7.450580596923828e-09, + 0.5411185026168823, + 0.8409461379051208, + 3.389962673187256 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_61", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9364116191864014, + 0.3027879297733307, + -0.17734934389591217, + -0.7149180769920349 + ], + [ + -0.35090360045433044, + -0.8080114722251892, + 0.473269522190094, + 1.9078104496002197 + ], + [ + -1.4901161193847656e-08, + 0.5054075717926025, + 0.8628807067871094, + 3.4783833026885986 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_62", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.964139461517334, + 0.20550420880317688, + -0.167938232421875, + -0.67698073387146 + ], + [ + -0.265396386384964, + -0.7465614676475525, + 0.6100907325744629, + 2.4593546390533447 + ], + [ + 0.0, + 0.6327827572822571, + 0.7743291854858398, + 3.1214213371276855 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_63", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.252810537815094, + 0.7292448878288269, + -0.6358369588851929, + -2.563141107559204 + ], + [ + -0.9675158262252808, + 0.19055067002773285, + -0.16614331305027008, + -0.6697452068328857 + ], + [ + 0.0, + 0.6571851372718811, + 0.7537290453910828, + 3.038379192352295 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_64", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.3767697811126709, + 0.8500786423683167, + -0.36798223853111267, + -1.4833838939666748 + ], + [ + -0.9263070225715637, + -0.3457643389701843, + 0.14967454969882965, + 0.6033574342727661 + ], + [ + 1.4901162970204496e-08, + 0.3972572684288025, + 0.9177072048187256, + 3.6993961334228516 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_65", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9953416585922241, + -0.07582611590623856, + 0.05954283848404884, + 0.2400248497724533 + ], + [ + 0.09641031175851822, + -0.7828300595283508, + 0.6147211790084839, + 2.478020191192627 + ], + [ + 3.7252896323280993e-09, + 0.6175981163978577, + 0.7864938378334045, + 3.1704578399658203 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_66", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.12624670565128326, + 0.5273463726043701, + -0.8402186632156372, + -3.3870298862457275 + ], + [ + -0.9919988512992859, + -0.06711272895336151, + 0.10693040490150452, + 0.43105024099349976 + ], + [ + -3.725290298461914e-09, + 0.8469955325126648, + 0.5315998792648315, + 2.1429476737976074 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_67", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.8733046054840088, + -0.15598826110363007, + 0.4615266025066376, + 1.8604732751846313 + ], + [ + 0.4871746599674225, + 0.27962303161621094, + -0.8273281455039978, + -3.335066318511963 + ], + [ + 0.0, + 0.9473534226417542, + 0.32018962502479553, + 1.2907257080078125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_68", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.05731966719031334, + -0.5689171552658081, + 0.8203948140144348, + 3.307117223739624 + ], + [ + 0.9983558654785156, + 0.032663844525814056, + -0.047102198004722595, + -0.1898750364780426 + ], + [ + 0.0, + 0.821745753288269, + 0.5698540806770325, + 2.2971553802490234 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_69", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.22988486289978027, + -0.9718549847602844, + 0.05148770660161972, + 0.20755359530448914 + ], + [ + 0.973217785358429, + -0.2295629382133484, + 0.012161968275904655, + 0.04902646690607071 + ], + [ + 0.0, + 0.052903808653354645, + 0.9985995292663574, + 4.02548360824585 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_70", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.21874921023845673, + -0.6888280510902405, + 0.6911328434944153, + 2.786045789718628 + ], + [ + 0.9757812023162842, + -0.15442046523094177, + 0.15493714809417725, + 0.624571681022644 + ], + [ + 0.0, + 0.7082868218421936, + 0.7059246897697449, + 2.8456737995147705 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_71", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.6561901569366455, + -0.11718466877937317, + 0.7454409599304199, + 3.0049686431884766 + ], + [ + 0.7545955777168274, + 0.10190282016992569, + -0.6482293605804443, + -2.613096237182617 + ], + [ + 7.450580596923828e-09, + 0.9878681898117065, + 0.15529465675354004, + 0.6260128021240234 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_72", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.4427814185619354, + 0.5560711026191711, + -0.7033701539039612, + -2.8353757858276367 + ], + [ + -0.8966296315193176, + 0.27460387349128723, + -0.34734436869621277, + -1.400189995765686 + ], + [ + 0.0, + 0.7844600677490234, + 0.6201792359352112, + 2.5000224113464355 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_73", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9404151439666748, + -0.3397460877895355, + 0.013852113857865334, + 0.0558396577835083 + ], + [ + 0.340028315782547, + 0.9396345615386963, + -0.03831074386835098, + -0.15443554520606995 + ], + [ + 0.0, + 0.0407375767827034, + 0.9991698265075684, + 4.027782440185547 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_74", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9328540563583374, + 0.2136237770318985, + -0.29008302092552185, + -1.1693620681762695 + ], + [ + -0.3602544665336609, + -0.553164005279541, + 0.7511499524116516, + 3.027982234954834 + ], + [ + 1.4901161193847656e-08, + 0.8052169680595398, + 0.5929802656173706, + 2.3903799057006836 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_75", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9878551363945007, + 0.1550530642271042, + -0.010038395412266254, + -0.0404660664498806 + ], + [ + -0.15537765622138977, + -0.9857914447784424, + 0.06382178515195847, + 0.2572738528251648 + ], + [ + -9.313224080820248e-10, + 0.06460557132959366, + 0.9979109168052673, + 4.022707462310791 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_76", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.11015978455543518, + 0.7479586005210876, + -0.6545400023460388, + -2.638535499572754 + ], + [ + -0.993914008140564, + 0.08289948105812073, + -0.07254549115896225, + -0.292440265417099 + ], + [ + 3.725290742551124e-09, + 0.6585479974746704, + 0.7525386214256287, + 3.0335805416107178 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_77", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.5171759128570557, + -0.37744179368019104, + 0.7681578993797302, + 3.096543788909912 + ], + [ + 0.8558790683746338, + 0.2280740737915039, + -0.46416932344436646, + -1.8711265325546265 + ], + [ + 0.0, + 0.8975075483322144, + 0.44099897146224976, + 1.777723789215088 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_78", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.2862909436225891, + 0.4935559928417206, + -0.8212428689002991, + -3.3105361461639404 + ], + [ + -0.9581427574157715, + 0.14747343957424164, + -0.2453855574131012, + -0.989180862903595 + ], + [ + 0.0, + 0.8571196794509888, + 0.5151172876358032, + 2.0765044689178467 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_79", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.5667765736579895, + 0.4734231233596802, + -0.6742660999298096, + -2.7180535793304443 + ], + [ + -0.8238714337348938, + 0.32568812370300293, + -0.46385663747787476, + -1.869865894317627 + ], + [ + 0.0, + 0.8184117078781128, + 0.5746322870254517, + 2.3164167404174805 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_80", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.8690336346626282, + 0.46832841634750366, + -0.15952768921852112, + -0.6430767178535461 + ], + [ + -0.4947530925273895, + 0.8226187229156494, + -0.28021034598350525, + -1.1295641660690308 + ], + [ + -1.4901161193847656e-08, + 0.3224390745162964, + 0.9465901255607605, + 3.8158271312713623 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_81", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.6193701028823853, + -0.631864607334137, + 0.46596962213516235, + 1.878383755683899 + ], + [ + 0.7850991487503052, + -0.498482346534729, + 0.36760663986206055, + 1.4818699359893799 + ], + [ + 0.0, + 0.593517005443573, + 0.8048213720321655, + 3.2443389892578125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_82", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.6529385447502136, + -0.22318035364151, + 0.7237828969955444, + 2.9176623821258545 + ], + [ + 0.7574108839035034, + 0.19239631295204163, + -0.6239489912986755, + -2.51521897315979 + ], + [ + 0.0, + 0.9556013941764832, + 0.2946621775627136, + 1.187821388244629 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_83", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.218410924077034, + -0.16879510879516602, + 0.9611476063728333, + 3.8745102882385254 + ], + [ + 0.9758569002151489, + -0.037778791040182114, + 0.21511876583099365, + 0.8671715259552002 + ], + [ + 0.0, + 0.9849269390106201, + 0.17297112941741943, + 0.6972689628601074 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_84", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8752904534339905, + 0.14293375611305237, + -0.46199193596839905, + -1.8623491525650024 + ], + [ + -0.4835975766181946, + -0.2587038576602936, + 0.8361851572990417, + 3.3707704544067383 + ], + [ + -1.4901161193847656e-08, + 0.9553231000900269, + 0.29556336998939514, + 1.1914541721343994 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_85", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9500736594200134, + 0.2401180863380432, + -0.19925712049007416, + -0.8032311201095581 + ], + [ + -0.312025785446167, + 0.7311249375343323, + -0.6067092418670654, + -2.445723295211792 + ], + [ + -1.4901161193847656e-08, + 0.6385918855667114, + 0.7695456147193909, + 3.102137565612793 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_86", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.6374995112419128, + -0.5433120131492615, + 0.5462658405303955, + 2.2020680904388428 + ], + [ + 0.7704506516456604, + 0.44955652952194214, + -0.45200061798095703, + -1.8220727443695068 + ], + [ + 0.0, + 0.7090210914611816, + 0.7051872611045837, + 2.842700719833374 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_87", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9824022650718689, + 0.1558997482061386, + -0.1028643399477005, + -0.41465941071510315 + ], + [ + -0.18677742779254913, + -0.8199934363365173, + 0.5410405397415161, + 2.181004285812378 + ], + [ + 0.0, + 0.5507322549819946, + 0.8346819877624512, + 3.364710807800293 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_88", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.9321951866149902, + 0.33672818541526794, + -0.13276392221450806, + -0.5351885557174683 + ], + [ + -0.3619559407234192, + -0.8672226071357727, + 0.3419252932071686, + 1.378345012664795 + ], + [ + 7.450580152834618e-09, + 0.3667958676815033, + 0.9303013682365417, + 3.7501649856567383 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_89", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.5365737676620483, + 0.7448800206184387, + -0.39653804898262024, + -1.5984959602355957 + ], + [ + -0.8438534140586853, + 0.47364041209220886, + -0.2521432042121887, + -1.0164217948913574 + ], + [ + 0.0, + 0.4699133038520813, + 0.8827124834060669, + 3.5583279132843018 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_90", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.995624303817749, + -0.0679357573390007, + 0.06416353583335876, + 0.2586514949798584 + ], + [ + 0.09344638139009476, + -0.7238214015960693, + 0.6836302280426025, + 2.7558016777038574 + ], + [ + 3.725290298461914e-09, + 0.6866347789764404, + 0.7270025014877319, + 2.930640935897827 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_91", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.36127522587776184, + -0.7409045696258545, + 0.5661629438400269, + 2.282276153564453 + ], + [ + 0.9324592351913452, + 0.28705862164497375, + -0.21935613453388214, + -0.8842529058456421 + ], + [ + 0.0, + 0.607171893119812, + 0.7945704460144043, + 3.2030160427093506 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_92", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8558264374732971, + 0.5141639113426208, + -0.05653863400220871, + -0.22791454195976257 + ], + [ + -0.5172631144523621, + -0.850698709487915, + 0.09354476630687714, + 0.37709105014801025 + ], + [ + 0.0, + 0.10930319130420685, + 0.9940083622932434, + 4.006976127624512 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_93", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9950621128082275, + -0.02995014190673828, + 0.0946284756064415, + 0.38145962357521057 + ], + [ + 0.0992550477385521, + 0.3002593219280243, + -0.9486793875694275, + -3.824249267578125 + ], + [ + 0.0, + 0.9533873200416565, + 0.3017493188381195, + 1.2163904905319214 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_94", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.24495911598205566, + 0.7579105496406555, + -0.6046211123466492, + -2.4373059272766113 + ], + [ + -0.9695334434509277, + -0.19149117171764374, + 0.1527615636587143, + 0.6158016324043274 + ], + [ + -7.450580596923828e-09, + 0.6236208081245422, + 0.7817268967628479, + 3.151242256164551 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_95", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.841446042060852, + 0.48544636368751526, + -0.23729822039604187, + -0.9565798044204712 + ], + [ + -0.5403412580490112, + 0.755961000919342, + -0.3695324659347534, + -1.4896330833435059 + ], + [ + 0.0, + 0.4391636252403259, + 0.898406982421875, + 3.6215946674346924 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_96", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9994816184043884, + 0.02963550016283989, + -0.012579136528074741, + -0.05070812627673149 + ], + [ + -0.03219468146562576, + 0.9200319647789001, + -0.3905183672904968, + -1.5742299556732178 + ], + [ + 9.313225746154785e-10, + 0.390720933675766, + 0.9205090403556824, + 3.710690975189209 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_97", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.2861267924308777, + -0.23401060700416565, + 0.9291773438453674, + 3.745633602142334 + ], + [ + 0.9581918120384216, + -0.06987817585468292, + 0.2774627208709717, + 1.1184879541397095 + ], + [ + 0.0, + 0.969719648361206, + 0.244221031665802, + 0.98448646068573 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_98", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.27060601115226746, + 0.7718122005462646, + -0.5753939151763916, + -2.3194873332977295 + ], + [ + -0.9626901745796204, + 0.21695144474506378, + -0.1617395281791687, + -0.6519929766654968 + ], + [ + 0.0, + 0.5976938605308533, + 0.801724374294281, + 3.2318546772003174 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "val/r_99", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9795770645141602, + 0.18440544605255127, + -0.08014628291130066, + -0.32308000326156616 + ], + [ + -0.2010691612958908, + 0.8983941078186035, + -0.39045998454093933, + -1.573994517326355 + ], + [ + 0.0, + 0.398600697517395, + 0.9171245694160461, + 3.697047472000122 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + } + ] +} \ No newline at end of file diff --git a/data/rug_cup/val/r_0.png b/data/rug_cup/val/r_0.png new file mode 100644 index 0000000000000000000000000000000000000000..f7e8d55839c5ccd8ded726e17cdd05dfc156469e --- /dev/null +++ b/data/rug_cup/val/r_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5392c4bb77eaed91090614e8fd08be58bfd9265911b1972a9d27b9b4f0615e3 +size 113983 diff --git a/data/rug_cup/val/r_1.png b/data/rug_cup/val/r_1.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a1a2e7e9f058edd929ac6668e194e0a1d36317 --- /dev/null +++ b/data/rug_cup/val/r_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca477ef0f400ae4167abfd0e12aef1d9f7290d899689a465ba5e6c1a0c48db8 +size 274881 diff --git a/data/rug_cup/val/r_10.png b/data/rug_cup/val/r_10.png new file mode 100644 index 0000000000000000000000000000000000000000..d60d13cdcaad37fb63a07d1ac0d3ad8a0f904591 --- /dev/null +++ b/data/rug_cup/val/r_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469fd67963ebd953a3ed6cb5edf1eac1b3693f6d5cca917cd55d462584b1609a +size 381258 diff --git a/data/rug_cup/val/r_11.png b/data/rug_cup/val/r_11.png new file mode 100644 index 0000000000000000000000000000000000000000..800b7a7e5bca490027b2c5c8ac0f42acb10d22b8 --- /dev/null +++ b/data/rug_cup/val/r_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c715de57634541108bc80ed433ce6b619db1964ba3e0ffced4ae9c4689711111 +size 254530 diff --git a/data/rug_cup/val/r_12.png b/data/rug_cup/val/r_12.png new file mode 100644 index 0000000000000000000000000000000000000000..00ff0dbbba3726ca1e7270d9e7f1241aea0f5396 --- /dev/null +++ b/data/rug_cup/val/r_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e71db97c36179149621a8b51efecb24900b96e83fb6038586a1bf96bcef7216 +size 385657 diff --git a/data/rug_cup/val/r_13.png b/data/rug_cup/val/r_13.png new file mode 100644 index 0000000000000000000000000000000000000000..c77b8067f5287e027a6d45aadb55a7eaa54b336d --- /dev/null +++ b/data/rug_cup/val/r_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90839769308f6616a5237e9baa8b2476bd0aa071d7dbedc057f212d58d57d184 +size 77296 diff --git a/data/rug_cup/val/r_14.png b/data/rug_cup/val/r_14.png new file mode 100644 index 0000000000000000000000000000000000000000..149cfd8fc0114dab0a5fe4387e3a7da9f6669a3d --- /dev/null +++ b/data/rug_cup/val/r_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce1d3f6ec6faa0ab2cf4cb3b09140c24a02676d39e7a80aaf7b4c8d9f9ddc6f8 +size 308000 diff --git a/data/rug_cup/val/r_15.png b/data/rug_cup/val/r_15.png new file mode 100644 index 0000000000000000000000000000000000000000..1e1b5618bfd24532c6ee27797f8f9cbee71e26c0 --- /dev/null +++ b/data/rug_cup/val/r_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c8f9c1242d28e6013fe7d9000326d70423d3d5c014a8049433bf47a18c6575e +size 100090 diff --git a/data/rug_cup/val/r_16.png b/data/rug_cup/val/r_16.png new file mode 100644 index 0000000000000000000000000000000000000000..f5950f617abdf99eb5bb5e6ce446c217e13b1f3e --- /dev/null +++ b/data/rug_cup/val/r_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6126a90d5fe79e77de93073c2d50abfd89c54ab5f349d25ccde38cab10817a4b +size 310569 diff --git a/data/rug_cup/val/r_17.png b/data/rug_cup/val/r_17.png new file mode 100644 index 0000000000000000000000000000000000000000..24112211e1186716d7508517495b9783a04f264b --- /dev/null +++ b/data/rug_cup/val/r_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934b33101fd4f9a148fbdf1eece9449e01c569326b5edce2a650c3ea7aa15fa0 +size 298317 diff --git a/data/rug_cup/val/r_18.png b/data/rug_cup/val/r_18.png new file mode 100644 index 0000000000000000000000000000000000000000..b63fdbcb796500f681403d195b505faf55a33d25 --- /dev/null +++ b/data/rug_cup/val/r_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0cf1cb6f0abdddb40758d694acc2c73b2b57d9ecb962ec51b05674652b76458 +size 70460 diff --git a/data/rug_cup/val/r_19.png b/data/rug_cup/val/r_19.png new file mode 100644 index 0000000000000000000000000000000000000000..5face1c71659bb9ec8ecdc831d41a4c697108dbe --- /dev/null +++ b/data/rug_cup/val/r_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1feffb1dcb655096af86e30edbc04a1b6f215040498ae5825bc3cfedf14837 +size 281788 diff --git a/data/rug_cup/val/r_2.png b/data/rug_cup/val/r_2.png new file mode 100644 index 0000000000000000000000000000000000000000..ec8c8c258312f02f0e6f140c138c5dd9273e7488 --- /dev/null +++ b/data/rug_cup/val/r_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec07d8f088b9280dfe1f93062b6323cc4b7c8b922ddea1bb120ab6952ebcb6a +size 57695 diff --git a/data/rug_cup/val/r_20.png b/data/rug_cup/val/r_20.png new file mode 100644 index 0000000000000000000000000000000000000000..1486e74ec9d7d251c82350b874825db7b636c472 --- /dev/null +++ b/data/rug_cup/val/r_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e45c86b6a2060bb44e8e23fd1b272f7785a243d9683b4c92bb92f6c54fbeb060 +size 289286 diff --git a/data/rug_cup/val/r_21.png b/data/rug_cup/val/r_21.png new file mode 100644 index 0000000000000000000000000000000000000000..ae413e1f3c40aa03a866399b8f2c0bdda80b810d --- /dev/null +++ b/data/rug_cup/val/r_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf15215a3239aae06f5a3e9a663f781ea63e3247a87907afcdf80c01737ec416 +size 179897 diff --git a/data/rug_cup/val/r_22.png b/data/rug_cup/val/r_22.png new file mode 100644 index 0000000000000000000000000000000000000000..479b01edaaa3c5e3907fb090b992be46dd9ab7be --- /dev/null +++ b/data/rug_cup/val/r_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f662d4ceab42035fc5ae8ede151a31bcd04ebf2abb9add4e7ce142d5179a5b +size 108305 diff --git a/data/rug_cup/val/r_23.png b/data/rug_cup/val/r_23.png new file mode 100644 index 0000000000000000000000000000000000000000..6ceb0c853c1d4c5800ada836e6e9ac4e9de7195d --- /dev/null +++ b/data/rug_cup/val/r_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c9c1b02ce1ffba35336de7a6dce5a793c1e986a7b50f1be7b0dda4cdc47e861 +size 158159 diff --git a/data/rug_cup/val/r_24.png b/data/rug_cup/val/r_24.png new file mode 100644 index 0000000000000000000000000000000000000000..ec8b4f43f09eba1e056e17c0a0834023ecc3bb55 --- /dev/null +++ b/data/rug_cup/val/r_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e408b7a6fc47f2ef23bc44296a95f5901d1ee36d918b4ff1809fdb2aaa729a2 +size 205671 diff --git a/data/rug_cup/val/r_25.png b/data/rug_cup/val/r_25.png new file mode 100644 index 0000000000000000000000000000000000000000..6384ac852093b975a32082ee87e1296ce017cf4b --- /dev/null +++ b/data/rug_cup/val/r_25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:821ec4cbf53c8811c43040dfec10387308bc723fdcecabb57e82a15069567768 +size 86936 diff --git a/data/rug_cup/val/r_26.png b/data/rug_cup/val/r_26.png new file mode 100644 index 0000000000000000000000000000000000000000..979ce7ffd13265004112f0f520692bdd1c13b0d2 --- /dev/null +++ b/data/rug_cup/val/r_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033060ead7eb27a5a8fd130d7939e767759844077e54a9a923ed5c679587498e +size 332122 diff --git a/data/rug_cup/val/r_27.png b/data/rug_cup/val/r_27.png new file mode 100644 index 0000000000000000000000000000000000000000..d90d2f5ce83b1da71824da5c2695322dbf3088c2 --- /dev/null +++ b/data/rug_cup/val/r_27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e91e215a48259480eb8efe954d8a84733c7fda9cf61c7a76f58311fbf1efcf2 +size 109338 diff --git a/data/rug_cup/val/r_28.png b/data/rug_cup/val/r_28.png new file mode 100644 index 0000000000000000000000000000000000000000..23e4a16bd09c72ef824bf97cfa8d82972e961996 --- /dev/null +++ b/data/rug_cup/val/r_28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88098888f45cd80adfe15dd2fbc4ea3fa90163b282ba919336e0e9db92b3669d +size 391064 diff --git a/data/rug_cup/val/r_29.png b/data/rug_cup/val/r_29.png new file mode 100644 index 0000000000000000000000000000000000000000..83ca6bfccd19a24e227ad6fe91a0cd229eb96f52 --- /dev/null +++ b/data/rug_cup/val/r_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7805e3e67baed663e4fce6c6b900ff642001ebdddf31dfa63bee27eb22410e96 +size 209853 diff --git a/data/rug_cup/val/r_3.png b/data/rug_cup/val/r_3.png new file mode 100644 index 0000000000000000000000000000000000000000..3541092d9016c256d0bfb70c2492950b6337d6fb --- /dev/null +++ b/data/rug_cup/val/r_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c06a131d9428b999d86323a7aa8073f01abeb2b4ffaba28113cccddf914aaf +size 127065 diff --git a/data/rug_cup/val/r_30.png b/data/rug_cup/val/r_30.png new file mode 100644 index 0000000000000000000000000000000000000000..0e0323a27f4a512e44711835d6f3dc62b0d280b1 --- /dev/null +++ b/data/rug_cup/val/r_30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bffd285313d9b85a10632189b2a76d91dca2d5fffa4575bc802280f227adcd5a +size 139841 diff --git a/data/rug_cup/val/r_31.png b/data/rug_cup/val/r_31.png new file mode 100644 index 0000000000000000000000000000000000000000..6af05dd06d69cbf0bdb34dee187f1e35c13c468e --- /dev/null +++ b/data/rug_cup/val/r_31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f0fb6576689b29c1f604884af5caf54cf5c2dad03b521c0baa7507a7f84c3a +size 234042 diff --git a/data/rug_cup/val/r_32.png b/data/rug_cup/val/r_32.png new file mode 100644 index 0000000000000000000000000000000000000000..be9555ee5d659f622f22e1ff0a0d7f0a54711b40 --- /dev/null +++ b/data/rug_cup/val/r_32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac3f09b9184c8abf22030fe98391fbe17b295280ca5be26556e85bfeba2b517a +size 55266 diff --git a/data/rug_cup/val/r_33.png b/data/rug_cup/val/r_33.png new file mode 100644 index 0000000000000000000000000000000000000000..8ea59cd633880bc3a34713bbe54c239fd49a0cbc --- /dev/null +++ b/data/rug_cup/val/r_33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a915a0248bfe9fe911cde423d80672f893be93baa6600ba52398c9638bf2acf +size 98667 diff --git a/data/rug_cup/val/r_34.png b/data/rug_cup/val/r_34.png new file mode 100644 index 0000000000000000000000000000000000000000..a82315584e12b389a3de00699a5a7b1ecddd35f9 --- /dev/null +++ b/data/rug_cup/val/r_34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:888538f0f3519c81fe1a1abe9e289bafc4e9c699b17b3363091859083acb8152 +size 259152 diff --git a/data/rug_cup/val/r_35.png b/data/rug_cup/val/r_35.png new file mode 100644 index 0000000000000000000000000000000000000000..348cf136a835c4b1d57a18e7ec92528479131753 --- /dev/null +++ b/data/rug_cup/val/r_35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2658eec959d8f0219b8f67e8f87bdf80b2be7a8bf49edf2952c46ad2be47a623 +size 122958 diff --git a/data/rug_cup/val/r_36.png b/data/rug_cup/val/r_36.png new file mode 100644 index 0000000000000000000000000000000000000000..41976b90b9025e2e1b0138e4e8b52efe027b56b4 --- /dev/null +++ b/data/rug_cup/val/r_36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a182cd9392ad456c5deca8b306a61522fcf2334754a86813fef6af28b3294f +size 86548 diff --git a/data/rug_cup/val/r_37.png b/data/rug_cup/val/r_37.png new file mode 100644 index 0000000000000000000000000000000000000000..ba347d96f0c545f8985f37fc07b1ae4e4b4a0ba3 --- /dev/null +++ b/data/rug_cup/val/r_37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ff04461e5f8d591b5c1e713d0d84cceb0f9dad7ae15ae2220ff911470626ac +size 236729 diff --git a/data/rug_cup/val/r_38.png b/data/rug_cup/val/r_38.png new file mode 100644 index 0000000000000000000000000000000000000000..2604ddfcf8f6f2473871a716a82ab9763f485c0d --- /dev/null +++ b/data/rug_cup/val/r_38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600d57b289fd013215bbba840f69f74569e90ddaf6aa84764399b2482e33a56c +size 82395 diff --git a/data/rug_cup/val/r_39.png b/data/rug_cup/val/r_39.png new file mode 100644 index 0000000000000000000000000000000000000000..5ee2c83aed6f9c0da7c4f4fae59b2b60d6b58e8e --- /dev/null +++ b/data/rug_cup/val/r_39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c1e56e5f99bcb14a2c1d71c93b65a2283d5acaae271602b3be94bab23421e57 +size 350093 diff --git a/data/rug_cup/val/r_4.png b/data/rug_cup/val/r_4.png new file mode 100644 index 0000000000000000000000000000000000000000..0345b5a63621d64fb9d0dd9bb2838d33c1e3cc26 --- /dev/null +++ b/data/rug_cup/val/r_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aafa65e750433d05ca93c25d8cf98619d25b6e1fbaf332e2a7e9aad84a35a58 +size 117119 diff --git a/data/rug_cup/val/r_40.png b/data/rug_cup/val/r_40.png new file mode 100644 index 0000000000000000000000000000000000000000..ab288e82b20c3caf945399a67e467d4cc8af6294 --- /dev/null +++ b/data/rug_cup/val/r_40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72068301e11e00e05101ce998f2b00063baea08a9d1a015e572d44278cf8b312 +size 166112 diff --git a/data/rug_cup/val/r_41.png b/data/rug_cup/val/r_41.png new file mode 100644 index 0000000000000000000000000000000000000000..af981e790cafff1d553fb4da31a137b7c88370b0 --- /dev/null +++ b/data/rug_cup/val/r_41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6c8aa16bd114f14f03706222ebeff1891d969ba6c35feb5774fb1b887d3748d +size 292666 diff --git a/data/rug_cup/val/r_42.png b/data/rug_cup/val/r_42.png new file mode 100644 index 0000000000000000000000000000000000000000..d94817ad6f140dddaf1a46fb8fa6ac72fc9fbbab --- /dev/null +++ b/data/rug_cup/val/r_42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25bb414f9cecebea4769193968344b58d57dc8d51336ca9164008bc3d5a3ea8f +size 228935 diff --git a/data/rug_cup/val/r_43.png b/data/rug_cup/val/r_43.png new file mode 100644 index 0000000000000000000000000000000000000000..e1620f15fe68697722b3be20e5b91a5d43b8bbe5 --- /dev/null +++ b/data/rug_cup/val/r_43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2fc3fca2acecbbc1987f2dc079fd820a2c02b207a3eb692630ec7cb1a39e39d +size 315499 diff --git a/data/rug_cup/val/r_44.png b/data/rug_cup/val/r_44.png new file mode 100644 index 0000000000000000000000000000000000000000..e4725916fb3879c9aa9e46a83623554220758f2c --- /dev/null +++ b/data/rug_cup/val/r_44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb23f87ab76f727838f0b6b772a9f3daa314e5cd3a0dd78cc2e63bb3aba6dacd +size 74811 diff --git a/data/rug_cup/val/r_45.png b/data/rug_cup/val/r_45.png new file mode 100644 index 0000000000000000000000000000000000000000..3448db4e1fb9ddc2ba4ab22322025ac7398b08b6 --- /dev/null +++ b/data/rug_cup/val/r_45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:670b9be4e5a892cca788dbfcd79e855b812b125bb7a52ad371cdc3561cd26b68 +size 55380 diff --git a/data/rug_cup/val/r_46.png b/data/rug_cup/val/r_46.png new file mode 100644 index 0000000000000000000000000000000000000000..22764b4f6dd3df7819f8a8a023105a7853e900f6 --- /dev/null +++ b/data/rug_cup/val/r_46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe9308ffef9bece662942861729c6ebeb6f918e1829e8613932daecf90068e7 +size 130442 diff --git a/data/rug_cup/val/r_47.png b/data/rug_cup/val/r_47.png new file mode 100644 index 0000000000000000000000000000000000000000..896b28f8264af695374fe8273b3402f5127b1dbb --- /dev/null +++ b/data/rug_cup/val/r_47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552ffb8eb58652c0ffa1ab77f694beb1bc24f5955bbc511986fb105d4fddaef2 +size 258693 diff --git a/data/rug_cup/val/r_48.png b/data/rug_cup/val/r_48.png new file mode 100644 index 0000000000000000000000000000000000000000..8415aee9a7c52b5f7861476f19c96fb04686ae60 --- /dev/null +++ b/data/rug_cup/val/r_48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6ad7ad45b87bb367412202796a818bae097993c97ed671ae78c5ab98fa38ce +size 106497 diff --git a/data/rug_cup/val/r_49.png b/data/rug_cup/val/r_49.png new file mode 100644 index 0000000000000000000000000000000000000000..e3b13f5539af9081905db15565ed009f9704f30b --- /dev/null +++ b/data/rug_cup/val/r_49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca571eb115e07907ba3f4ba966733e6b48661d767d4f7910973bfe8c45299ae1 +size 313066 diff --git a/data/rug_cup/val/r_5.png b/data/rug_cup/val/r_5.png new file mode 100644 index 0000000000000000000000000000000000000000..5ed78cfa8684dde71c02b7b0b053fa980e3f49c9 --- /dev/null +++ b/data/rug_cup/val/r_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d14ec646745db76bded8c49a809257eac307e8fa9bc0aa5d5324f68c58fe90c +size 395028 diff --git a/data/rug_cup/val/r_50.png b/data/rug_cup/val/r_50.png new file mode 100644 index 0000000000000000000000000000000000000000..ced92df7c660455ec8cfe1168ea9a6e3d5630179 --- /dev/null +++ b/data/rug_cup/val/r_50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1654b1060ba67c5fa56ddd1f3adb28659bdba6a44fc5030419e652a02ec43f0 +size 115186 diff --git a/data/rug_cup/val/r_51.png b/data/rug_cup/val/r_51.png new file mode 100644 index 0000000000000000000000000000000000000000..98204a048dbe34617ed2c444aafe4c3d5bcfee89 --- /dev/null +++ b/data/rug_cup/val/r_51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2176dbe81d9178b29548c669e58a3f34c38bbde183a78ff5e155806ab23fe443 +size 344738 diff --git a/data/rug_cup/val/r_52.png b/data/rug_cup/val/r_52.png new file mode 100644 index 0000000000000000000000000000000000000000..fd81f3689315ac44fcf2f17aaad9083de2e22de8 --- /dev/null +++ b/data/rug_cup/val/r_52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c76c803c3916b1dac3c43a3afc843c9517be23a43e6384d8c2d53ed314bd088a +size 269868 diff --git a/data/rug_cup/val/r_53.png b/data/rug_cup/val/r_53.png new file mode 100644 index 0000000000000000000000000000000000000000..d3b89955a04e3f74d06b0aa5bc319ae378493883 --- /dev/null +++ b/data/rug_cup/val/r_53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c66caabd71a4222a419776060dca87590bc76cddb7378cb40624f3041dcc680 +size 115795 diff --git a/data/rug_cup/val/r_54.png b/data/rug_cup/val/r_54.png new file mode 100644 index 0000000000000000000000000000000000000000..71306ac8914a57be08d21d565e813d16372501ae --- /dev/null +++ b/data/rug_cup/val/r_54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a865d71fc2acdbb319911fe209b2e1299d59ace4050a093a75e2077d248c0c1 +size 72794 diff --git a/data/rug_cup/val/r_55.png b/data/rug_cup/val/r_55.png new file mode 100644 index 0000000000000000000000000000000000000000..32a74829b89820be91e83c83f58eca7b2c339dfa --- /dev/null +++ b/data/rug_cup/val/r_55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb409e6c15453a498847a275f4af8e3508333daeffaf001e3de55483e83b77f +size 389608 diff --git a/data/rug_cup/val/r_56.png b/data/rug_cup/val/r_56.png new file mode 100644 index 0000000000000000000000000000000000000000..fa6059ee1f1a0e3ef76010b8c3fe3193bbe53127 --- /dev/null +++ b/data/rug_cup/val/r_56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1edc09d421ebb00218687e67f67786bf1dfb24c444d82445f5214f0421817daf +size 117515 diff --git a/data/rug_cup/val/r_57.png b/data/rug_cup/val/r_57.png new file mode 100644 index 0000000000000000000000000000000000000000..251c2c424d06b9f4af149c2aa3d960bdd4891c14 --- /dev/null +++ b/data/rug_cup/val/r_57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:099583d5b4ed8c5c36b7d85ee96bb2f229f12ead081e5ae836f9b58972ab88f1 +size 109664 diff --git a/data/rug_cup/val/r_58.png b/data/rug_cup/val/r_58.png new file mode 100644 index 0000000000000000000000000000000000000000..bc56fdd67b3d638e07f510fe9fe642be8357fa1f --- /dev/null +++ b/data/rug_cup/val/r_58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef09526dfd30b9b9ca13bc55b35bf53d641a23982e5e62564dcd7cf77fb12b7 +size 80166 diff --git a/data/rug_cup/val/r_59.png b/data/rug_cup/val/r_59.png new file mode 100644 index 0000000000000000000000000000000000000000..eda8a937f4b7c4307805ab22e90d583003109ab0 --- /dev/null +++ b/data/rug_cup/val/r_59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff42f73edb7397fab6a66bdd422f72b6384bf11b69cb287d446c8213faad5a10 +size 293100 diff --git a/data/rug_cup/val/r_6.png b/data/rug_cup/val/r_6.png new file mode 100644 index 0000000000000000000000000000000000000000..6a30afc02d1bc80e68934734890a5a15d67f49c6 --- /dev/null +++ b/data/rug_cup/val/r_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb97ac5e6950889a1a0d18d51dfe4eda7454c9a2a2a4f6ed4ba2a36a57ceac4e +size 309558 diff --git a/data/rug_cup/val/r_60.png b/data/rug_cup/val/r_60.png new file mode 100644 index 0000000000000000000000000000000000000000..3ffa8f01f61651b6b8a68d5a732c9d68bc84e34d --- /dev/null +++ b/data/rug_cup/val/r_60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c7e561eb29652209a6b13d8954869657788c7322145ea849d3a40af6e0c981 +size 304910 diff --git a/data/rug_cup/val/r_61.png b/data/rug_cup/val/r_61.png new file mode 100644 index 0000000000000000000000000000000000000000..465ba1e1b1eaed16197691d852ed9ad88ad60277 --- /dev/null +++ b/data/rug_cup/val/r_61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a412fe5ecf42e2f69217192bf9e5315de0d7ac9ae4b214487e5566f60370e82 +size 315227 diff --git a/data/rug_cup/val/r_62.png b/data/rug_cup/val/r_62.png new file mode 100644 index 0000000000000000000000000000000000000000..ce4ce529941348d4101ef1e67fed2fa403b224a0 --- /dev/null +++ b/data/rug_cup/val/r_62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970a0b72ba5a101a1ed342cb2eb6443a239b80ff54e589f947b2d2724602fb20 +size 279540 diff --git a/data/rug_cup/val/r_63.png b/data/rug_cup/val/r_63.png new file mode 100644 index 0000000000000000000000000000000000000000..79a1cee249ce71d7b902da679a8822ccf4562d41 --- /dev/null +++ b/data/rug_cup/val/r_63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c0ff0190241798076d4206fd89b5e9813c6665b776b51c53b0aec4ae629916 +size 257976 diff --git a/data/rug_cup/val/r_64.png b/data/rug_cup/val/r_64.png new file mode 100644 index 0000000000000000000000000000000000000000..611ce1a2361f6511684257fdffadf33baae892b3 --- /dev/null +++ b/data/rug_cup/val/r_64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17b764432df8316195bf0c202a3685f4a941d03c0127018db568d7b8ed356eb5 +size 339023 diff --git a/data/rug_cup/val/r_65.png b/data/rug_cup/val/r_65.png new file mode 100644 index 0000000000000000000000000000000000000000..724a42302525148b9e86cef6d374015909a1e7c2 --- /dev/null +++ b/data/rug_cup/val/r_65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf38166cd5f745d14523087a9e2558e2ee2b978ca7c6c2b6c303582d2754322a +size 280251 diff --git a/data/rug_cup/val/r_66.png b/data/rug_cup/val/r_66.png new file mode 100644 index 0000000000000000000000000000000000000000..9bbfd69703f56c1900458a588c549810f58da021 --- /dev/null +++ b/data/rug_cup/val/r_66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7793b7d4362dc19acf2b9a9d1255a9ccc968a5f7b9ed5f1fb3fbf2c958c7a30f +size 138882 diff --git a/data/rug_cup/val/r_67.png b/data/rug_cup/val/r_67.png new file mode 100644 index 0000000000000000000000000000000000000000..e1910ef1efd4d65e3e29766455a3d294627699ff --- /dev/null +++ b/data/rug_cup/val/r_67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c9acca0bd937e2b3be5dc80d72773e35541de392d9e943ba342c65245f3629 +size 81534 diff --git a/data/rug_cup/val/r_68.png b/data/rug_cup/val/r_68.png new file mode 100644 index 0000000000000000000000000000000000000000..5b3bd6e4bea06c891cd75d523289a85c87428cac --- /dev/null +++ b/data/rug_cup/val/r_68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac833e17fcf89eebc340bcc94a5a470d3e4d19532732a0ba5cf4d28b7a168bd +size 159860 diff --git a/data/rug_cup/val/r_69.png b/data/rug_cup/val/r_69.png new file mode 100644 index 0000000000000000000000000000000000000000..6320c00ca035208650459ff2da6b9113c31c73b6 --- /dev/null +++ b/data/rug_cup/val/r_69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe1289f1fccc3c46c5e175a79b12f9e38183fc297995d8532f69e91bab712e7 +size 391260 diff --git a/data/rug_cup/val/r_7.png b/data/rug_cup/val/r_7.png new file mode 100644 index 0000000000000000000000000000000000000000..b9ee98c57d916542dc1b536d207660574316981e --- /dev/null +++ b/data/rug_cup/val/r_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03eb6015036fd75f97af7cddf42aad750e7b920fe643cf73127d895c6bf10734 +size 64160 diff --git a/data/rug_cup/val/r_70.png b/data/rug_cup/val/r_70.png new file mode 100644 index 0000000000000000000000000000000000000000..4d0637d219f8bd748f7c6091f413ccf498fbef3a --- /dev/null +++ b/data/rug_cup/val/r_70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5047de2d943aa4ea21ce4c726641701cfec77c2f486b0cc968ad4a2dad7b41d7 +size 236602 diff --git a/data/rug_cup/val/r_71.png b/data/rug_cup/val/r_71.png new file mode 100644 index 0000000000000000000000000000000000000000..28e989ec2a6c64b9205c5144fbdbebbae9eb324d --- /dev/null +++ b/data/rug_cup/val/r_71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0cc12b19ba9ecd88cfc4a449ba03ddc9f571088dbad461dafd3a77999dd84e +size 81370 diff --git a/data/rug_cup/val/r_72.png b/data/rug_cup/val/r_72.png new file mode 100644 index 0000000000000000000000000000000000000000..5a0888ae6daeede543d67e6044a9c3a325500282 --- /dev/null +++ b/data/rug_cup/val/r_72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ed4b7b7caa5e4556d978be869c936fb5ec25c6e98f99a29ee7510008f81006 +size 188672 diff --git a/data/rug_cup/val/r_73.png b/data/rug_cup/val/r_73.png new file mode 100644 index 0000000000000000000000000000000000000000..b6708439eeca85911e2076216987620b1004e4ee --- /dev/null +++ b/data/rug_cup/val/r_73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d353b8444833175bc834a4b03c491386ede4e9bc366877c3a0177bb6e6396c7 +size 395020 diff --git a/data/rug_cup/val/r_74.png b/data/rug_cup/val/r_74.png new file mode 100644 index 0000000000000000000000000000000000000000..0ad3f54017e55a651078dbb4d473ee982f05f953 --- /dev/null +++ b/data/rug_cup/val/r_74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9da6aaf9eb02298407b9d6f86d84a616343194f663541b79356b7c76a713af8 +size 183881 diff --git a/data/rug_cup/val/r_75.png b/data/rug_cup/val/r_75.png new file mode 100644 index 0000000000000000000000000000000000000000..857fba358de4240ec9c1bacad8fe08c40a09e4c2 --- /dev/null +++ b/data/rug_cup/val/r_75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb07baf8a6e79da2e0eb404f18541f6ad8c2d6b0851d4a8fb98d54651b56181 +size 390523 diff --git a/data/rug_cup/val/r_76.png b/data/rug_cup/val/r_76.png new file mode 100644 index 0000000000000000000000000000000000000000..34e0e9c83efb86bc2bbe83141c9ba0bd0f52e3d6 --- /dev/null +++ b/data/rug_cup/val/r_76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e73dc89e69d9ace9ef3005fe3ca1f195275f838241e419b931422dae449b411 +size 254466 diff --git a/data/rug_cup/val/r_77.png b/data/rug_cup/val/r_77.png new file mode 100644 index 0000000000000000000000000000000000000000..d4f49b07c8efd4ae09df270caaf398aa11eec2e6 --- /dev/null +++ b/data/rug_cup/val/r_77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:762be66e789f45552805f98452773610fcabfe055e276fb0ffed9614a906e912 +size 111695 diff --git a/data/rug_cup/val/r_78.png b/data/rug_cup/val/r_78.png new file mode 100644 index 0000000000000000000000000000000000000000..0519e858b16a5bc1924367dc61ef24c56b80dc0e --- /dev/null +++ b/data/rug_cup/val/r_78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc859ac60941011ee8dcb089348e7ce49f9a935b9bbd38c0cf65faba9b1913f3 +size 134324 diff --git a/data/rug_cup/val/r_79.png b/data/rug_cup/val/r_79.png new file mode 100644 index 0000000000000000000000000000000000000000..a22450ffe5a5e26c66ab0bcddf31a8b21d113933 --- /dev/null +++ b/data/rug_cup/val/r_79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2848c31a1620b290605ddca2beb53f6ecdeb15cd14d54fee6bf4ba405847bd7 +size 166567 diff --git a/data/rug_cup/val/r_8.png b/data/rug_cup/val/r_8.png new file mode 100644 index 0000000000000000000000000000000000000000..f0c4bd06ed42596b48707b0224807301488770b5 --- /dev/null +++ b/data/rug_cup/val/r_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9748523c01f282ba091c29142f5e51a21331245284ac91ff4c192950dd3e964e +size 267314 diff --git a/data/rug_cup/val/r_80.png b/data/rug_cup/val/r_80.png new file mode 100644 index 0000000000000000000000000000000000000000..96839aeb03c2fd46ae71de89c88f3953e6a9d4ea --- /dev/null +++ b/data/rug_cup/val/r_80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eecfeb60d1dc3535718a2441ea9438d0a8376bc45c855ec5e915ec21bf214e60 +size 350660 diff --git a/data/rug_cup/val/r_81.png b/data/rug_cup/val/r_81.png new file mode 100644 index 0000000000000000000000000000000000000000..f5a208b24f8c3bde4e83296fb3d44f479373f603 --- /dev/null +++ b/data/rug_cup/val/r_81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651a8e4174127e9e73c33afe259ba839f563b96f8f7a135352e25cb9a92e6294 +size 284289 diff --git a/data/rug_cup/val/r_82.png b/data/rug_cup/val/r_82.png new file mode 100644 index 0000000000000000000000000000000000000000..52a360123c81fb4214486e0680d9d7dd049e4ad4 --- /dev/null +++ b/data/rug_cup/val/r_82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b8918091fc03c5293c6f9ea45e4edbf531c5a78a38509cd564cb6c3e5e3d46 +size 70040 diff --git a/data/rug_cup/val/r_83.png b/data/rug_cup/val/r_83.png new file mode 100644 index 0000000000000000000000000000000000000000..11f333db04e88fd1fb60f8e8e04e715ebce06221 --- /dev/null +++ b/data/rug_cup/val/r_83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c63014663d3236cb6a5200b1969716eaaba1bad3b91100f5f39954ec60151344 +size 71037 diff --git a/data/rug_cup/val/r_84.png b/data/rug_cup/val/r_84.png new file mode 100644 index 0000000000000000000000000000000000000000..3afeb28665a008e83d2e7f3653a553c846163ff7 --- /dev/null +++ b/data/rug_cup/val/r_84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4860fcffdc86a0758da80553054972ff3f7c12d6f89ee760b20799037ae2acd9 +size 70927 diff --git a/data/rug_cup/val/r_85.png b/data/rug_cup/val/r_85.png new file mode 100644 index 0000000000000000000000000000000000000000..e49fdb30bd2d7b5190cf7fd2e78675d1b4abca96 --- /dev/null +++ b/data/rug_cup/val/r_85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ba394ac592e747b4d06191943cf31cfc5bc5c953f2df1f8dc0a44e354ab1fa +size 273671 diff --git a/data/rug_cup/val/r_86.png b/data/rug_cup/val/r_86.png new file mode 100644 index 0000000000000000000000000000000000000000..11652f816700f4a1ade46df044b520e08ad49317 --- /dev/null +++ b/data/rug_cup/val/r_86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0357416365eb2d821a258fd18ad04ec25520ff27e74bdbb40e413238e685fe97 +size 242183 diff --git a/data/rug_cup/val/r_87.png b/data/rug_cup/val/r_87.png new file mode 100644 index 0000000000000000000000000000000000000000..961781ef9ed2ac2457f3e5e0da88dd691c6e3f15 --- /dev/null +++ b/data/rug_cup/val/r_87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c9ce3b5b60ce35bbf7df637ee819ce3a59133114c749c788c88820ce1aec4c +size 306623 diff --git a/data/rug_cup/val/r_88.png b/data/rug_cup/val/r_88.png new file mode 100644 index 0000000000000000000000000000000000000000..cc970b3733ae023fc27768fa8df31a993b0513ad --- /dev/null +++ b/data/rug_cup/val/r_88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9cc62f0533915455238f50dd51a65cd6c79eec3beaff46252dfedd0cae8c875 +size 346257 diff --git a/data/rug_cup/val/r_89.png b/data/rug_cup/val/r_89.png new file mode 100644 index 0000000000000000000000000000000000000000..edfa10944e5460ca9ab7827c4e354822283e4131 --- /dev/null +++ b/data/rug_cup/val/r_89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03a4b6a835248d9444aaebf808355afb54cdb24a438035a24aab6a986b086ed +size 316870 diff --git a/data/rug_cup/val/r_9.png b/data/rug_cup/val/r_9.png new file mode 100644 index 0000000000000000000000000000000000000000..191c001c5a04956e72001a29dde4251a75153317 --- /dev/null +++ b/data/rug_cup/val/r_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5981b1d42b34ea88db7908b2b7b30319876e8334391d1c7c0a0cf3970cfe57ca +size 329015 diff --git a/data/rug_cup/val/r_90.png b/data/rug_cup/val/r_90.png new file mode 100644 index 0000000000000000000000000000000000000000..1e8223572d8653fb577fa11721479e4d477be64b --- /dev/null +++ b/data/rug_cup/val/r_90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b73f422b191f544d12f7414d9350337a01afeb94a4335b42f550b8646e4bddc0 +size 247139 diff --git a/data/rug_cup/val/r_91.png b/data/rug_cup/val/r_91.png new file mode 100644 index 0000000000000000000000000000000000000000..6eb9781dd99a7473b7874d427557f3a7838ecdf4 --- /dev/null +++ b/data/rug_cup/val/r_91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49ea8e99d811706831a75c58673275062354bfd3c264168d68d490214cffc70 +size 282699 diff --git a/data/rug_cup/val/r_92.png b/data/rug_cup/val/r_92.png new file mode 100644 index 0000000000000000000000000000000000000000..9c31f95d7cc7305de0e8b7911113a1647b103895 --- /dev/null +++ b/data/rug_cup/val/r_92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b6d4849e3a744ce1104f447725d45bb986d2523497a2a4e29b8611cae00620 +size 388387 diff --git a/data/rug_cup/val/r_93.png b/data/rug_cup/val/r_93.png new file mode 100644 index 0000000000000000000000000000000000000000..e77720e24d68d54e20f29fceae90b55fb1bfdc51 --- /dev/null +++ b/data/rug_cup/val/r_93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc85491305da3b9a6b797d2d744321fd5bbdcd9acf3d5382feca130e418824b9 +size 75432 diff --git a/data/rug_cup/val/r_94.png b/data/rug_cup/val/r_94.png new file mode 100644 index 0000000000000000000000000000000000000000..6eef091a60e1d7e9e41a415ba4d793578f1b5361 --- /dev/null +++ b/data/rug_cup/val/r_94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c3a245867d11031692160fd63af0dde4504ad34e600aee2c3af39501cff754 +size 272230 diff --git a/data/rug_cup/val/r_95.png b/data/rug_cup/val/r_95.png new file mode 100644 index 0000000000000000000000000000000000000000..3bcae3ae499a19cf6fa3c3386ad1ea05d43849a4 --- /dev/null +++ b/data/rug_cup/val/r_95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b8b9e4b730ecac5e93d26640af2e2810b29a665fd22e5aaaef37ba4c5da39ba +size 325682 diff --git a/data/rug_cup/val/r_96.png b/data/rug_cup/val/r_96.png new file mode 100644 index 0000000000000000000000000000000000000000..245030a86d887d6b31ea7151c0875a95bae9a270 --- /dev/null +++ b/data/rug_cup/val/r_96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfe270ce18d9513616376b25714f6ba1a06df0c95ba54d4060d29614d568185 +size 338159 diff --git a/data/rug_cup/val/r_97.png b/data/rug_cup/val/r_97.png new file mode 100644 index 0000000000000000000000000000000000000000..bcb887c218d277c53ea0c6d702c057a9298a933c --- /dev/null +++ b/data/rug_cup/val/r_97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbfbe15f512fd97b0558a81edaab7ec92190a8910e59731a57bee8cad4804ee6 +size 54359 diff --git a/data/rug_cup/val/r_98.png b/data/rug_cup/val/r_98.png new file mode 100644 index 0000000000000000000000000000000000000000..a4af13f3173fa03d98f540cc923e6a80bf47b0c3 --- /dev/null +++ b/data/rug_cup/val/r_98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c703133ec164a9c03ead1143d484dc3325f50c73b5da87ace05c5111ab0b7c35 +size 283084 diff --git a/data/rug_cup/val/r_99.png b/data/rug_cup/val/r_99.png new file mode 100644 index 0000000000000000000000000000000000000000..320c97c121a59c7c933d725e3dff2d46bc6b6e57 --- /dev/null +++ b/data/rug_cup/val/r_99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a37764d65680007fdb82e046582c6a206d4b99b8b87bdf717ca28a920c29f0 +size 337345 diff --git a/permuto_SDF_models/mask_chair1_920k.ply b/permuto_SDF_models/mask_chair1_920k.ply new file mode 100644 index 0000000000000000000000000000000000000000..ba30e94e9243ed80a074fa925200fd237a35a0e7 --- /dev/null +++ b/permuto_SDF_models/mask_chair1_920k.ply @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6154449d1f5cdc623d94d45d7d2b3029637dfc14ee63accfbb392fb7878a4af +size 46027574 diff --git a/permuto_SDF_models/mask_drums1_860k.ply b/permuto_SDF_models/mask_drums1_860k.ply new file mode 100644 index 0000000000000000000000000000000000000000..67a597f22dc2416390f0d3c04432e3862a484005 --- /dev/null +++ b/permuto_SDF_models/mask_drums1_860k.ply @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d7dc14c4739a51edd978c277715285b2b29f9c907d84af70c64b606ea6e49f +size 43281540 diff --git a/permuto_SDF_models/mask_ficus1_910k.ply b/permuto_SDF_models/mask_ficus1_910k.ply new file mode 100644 index 0000000000000000000000000000000000000000..98d86155f1ea2ebd85fed928b869bae81948a508 --- /dev/null +++ b/permuto_SDF_models/mask_ficus1_910k.ply @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0755e5e4eeb203a4f6d96b57229ee0cd6637c5f9ecc9839c944717b55496f01a +size 45592890 diff --git a/permuto_SDF_models/mask_hotdog1_1m.ply b/permuto_SDF_models/mask_hotdog1_1m.ply new file mode 100644 index 0000000000000000000000000000000000000000..70748b14f7d840867317dad811f6a3b13926036f --- /dev/null +++ b/permuto_SDF_models/mask_hotdog1_1m.ply @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1b62b1ee7c8fa3e4e21a421bf5b2d32757ae8cee69a7a9dad06a8c23ed5bb8 +size 52496021 diff --git a/permuto_SDF_models/mask_lego1_900k.ply b/permuto_SDF_models/mask_lego1_900k.ply new file mode 100644 index 0000000000000000000000000000000000000000..d73cd279f53eaf488459f3793dcd1a310aea57e5 --- /dev/null +++ b/permuto_SDF_models/mask_lego1_900k.ply @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a96ddd48841dd762c727371663a979e1ebbe567dec2b951bcb3b3d8be4de027 +size 71431027 diff --git a/permuto_SDF_models/mask_materials1_850k.ply b/permuto_SDF_models/mask_materials1_850k.ply new file mode 100644 index 0000000000000000000000000000000000000000..8b7b5e8f779a6ff312bef993ffaecfa64c4f7f7d --- /dev/null +++ b/permuto_SDF_models/mask_materials1_850k.ply @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12749733959c27089b32a2d54159cdc6e3c8b667424dc1dcc4175c0f83b9a1d +size 42534102 diff --git a/permuto_SDF_models/mask_mic1_890k.ply b/permuto_SDF_models/mask_mic1_890k.ply new file mode 100644 index 0000000000000000000000000000000000000000..1a8d8808b0363640ed65a12e702d77730f701346 --- /dev/null +++ b/permuto_SDF_models/mask_mic1_890k.ply @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a72ef7cdd4a523f401e9442862388c2d1e5e729cbff251500ceaee4ce347617 +size 44546114 diff --git a/permuto_SDF_models/mask_ship1_940k.ply b/permuto_SDF_models/mask_ship1_940k.ply new file mode 100644 index 0000000000000000000000000000000000000000..5eaa9ee0efb3ebc1d7172583233b731b71d04c56 --- /dev/null +++ b/permuto_SDF_models/mask_ship1_940k.ply @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4659b2056be76eb5e6aea0d9361e2829c0e8ca2cd10c3ee5b98646e48ec5f32 +size 47094764