diff --git a/.ipynb_checkpoints/README-checkpoint.md b/.ipynb_checkpoints/README-checkpoint.md new file mode 100644 index 0000000000000000000000000000000000000000..47171e7a55314d212e7f3d615f57b2f2ad80a752 --- /dev/null +++ b/.ipynb_checkpoints/README-checkpoint.md @@ -0,0 +1,137 @@ +# HIndoor-8K + +**HIndoor-8K** is the first metrically calibrated real-world benchmark of indoor +RGB–D panoramas at native **8192×4096** (8K) resolution. It provides **49** +equirectangular RGB panoramas, each paired with a **sparse metric depth map** +rendered from a real LiDAR point cloud, across **5** representative indoor +environments. + +> Released as a community resource for high-resolution 360° depth estimation. + +--- + +## Contents + +``` +HIndoor-8K/ +├── README.md +├── ich/ # corridor +│ ├── rgb/ .jpg RGB equirectangular panorama (8192×4096) +│ └── depth/ .png sparse metric depth (16-bit, millimetres) +├── interrato/ # basement +├── pt/ # project room +├── sala/ # hall / meeting room +└── unibs/ # laboratory +``` + +For every `rgb/.jpg` there is a matching `depth/.png` +with the **same filename stem** (the capture timestamp). + +| Scene | Environment | # pairs | +|-------|-------------|--------:| +| ich | corridor | 7 | +| interrato | basement | 8 | +| pt | project room | 10 | +| sala | hall / meeting room | 14 | +| unibs | laboratory | 10 | +| **Total** | | **49** | + +--- + +## Data format + +**RGB** — `rgb/.jpg` +- Real spherical photograph, equirectangular projection, **8192×4096**, 3-channel sRGB. +- Real illumination, HDR/exposure variation, and sensor noise are preserved (not retouched). + +**Depth** — `depth/.png` +- **16-bit single-channel PNG** (`I;16`, unsigned), **8192×4096**, pixel-aligned to the RGB. +- Stored in **millimetres**: `depth_metres = png_value / 1000.0`. +- **Sparse.** The map is a projection of a real LiDAR point cloud, so a large + fraction of pixels have **no valid return** (specular, distant, and + grazing-angle surfaces, plus the LiDAR's intrinsic angular sparsity). + **Invalid pixels are stored as `0`.** Typical valid coverage is ≈ 15–20 %. +- **No densification / inpainting is applied** — this is the raw rendered depth. + +### Reading depth (Python) +```python +import numpy as np +from PIL import Image +Image.MAX_IMAGE_PIXELS = None + +d_mm = np.asarray(Image.open("depth/.png"), dtype=np.float32) # millimetres +valid = d_mm > 0 # validity mask (0 = no LiDAR return) +d_m = d_mm / 1000.0 # metres +``` + +### Evaluation convention +Compute all metrics **only over valid pixels** (`depth > 0`). In our paper we +additionally cap the maximum depth at **16 m** for the reported HIndoor-8K +numbers; adopt the same cap to reproduce them: +```python +mask = (d_m > 0) & np.isfinite(d_m) & (d_m <= 16.0) +``` +Because the depth is **relative-free / metric but sparse**, predictions from +relative-depth methods should be aligned to the ground truth (e.g. per-image +median-ratio scale alignment) before computing error metrics. + +--- + +## Acquisition + +Data is captured with a **professional indoor mobile-mapping platform** carrying +rigidly coupled, mutually calibrated sensors: + +- **LiDAR:** dual Hesai XT32-class scanners (10–20 Hz), 32 channels, + 31–40° vertical FoV, up to 0.1–0.2° angular resolution, 120 m (MT1) – 300 m (M2X) + range. Timestamped 3D points with reflectance / return-intensity. +- **360° RGB camera:** a spherical camera rigidly mounted to the LiDAR rig, + capturing equirectangular panoramas at **8192×4096** (photo mode), with fixed + intrinsics and a known optical centre relative to the LiDAR. +- **IMU:** 3-axis accelerometer + gyroscope for SLAM-based trajectory refinement. + +All sensors share a common reference frame. The pipeline outputs (i) a refined +~10 Hz trajectory, (ii) synchronized LiDAR scans, and (iii) timestamped RGB panoramas. + +### Depth rendering +Each RGB panorama's depth is produced by **off-screen spherical rendering** of the +fused LiDAR point cloud, so the RGB stays a *real* photograph while depth comes +from *real* geometry: + +1. **Pose interpolation** — the 10 Hz trajectory is interpolated to the exact RGB timestamp. +2. **Spherical projection** — each 3D LiDAR point is projected to the spherical + camera (azimuth / elevation) and mapped to equirectangular coordinates. +3. **Depth assignment** — each pixel stores the distance to the closest point + along its ray; occluded or inconsistent samples are discarded. Pixels that + receive no point remain `0` (→ the map is sparse). +4. **Encoding** — depth is written as a 16-bit millimetre PNG at native resolution. + +--- + +## Optional densification + +If a dense map is required, the sparse depth can be completed with an off-the-shelf +depth-completion model (e.g. LDCM, *Large Depth Completion Model from Sparse +Observations*, ICLR 2026). We deliberately ship the **raw sparse** depth so that +users may choose their own completion (or none). All benchmark numbers in the +paper are computed on the raw sparse depth with a validity mask. + +--- + +## Citation + +If you use HIndoor-8K, please cite the FRED paper (bibentry to be added on release): + +```bibtex +@article{fred_hindoor8k, + title = {FRED: Full-Resolution Equirectangular Depth Estimation, and the HIndoor-8K Benchmark}, + author = {Shah, U. and Pintore, G. and Tukur, M. and Zahoor, A. and Schneider, J. and + Sgrenzaroli, M. and Vassena, G. and V\'azquez, P.P. and Gobbetti, E. and Agus, M.}, + journal= {Graphical Models}, + year = {2026} +} +``` + +## License + +To be specified on public release. The dataset is provided for research use. diff --git a/README.md b/README.md index 8fa63b86853fa5a433f2888a8893e6dcaec1138c..497c43aedd409adb6a909fad0a3a3e6e625d00d1 100644 --- a/README.md +++ b/README.md @@ -1,489 +1,137 @@ ---- -task_categories: -- depth-estimation -language: -- en -size_categories: -- n<1K ---- - # HIndoor-8K -**HIndoor-8K** is a metrically calibrated, real-world benchmark for indoor panoramic depth estimation at native **8192 × 4096** resolution. +**HIndoor-8K** is the first metrically calibrated real-world benchmark of indoor +RGB–D panoramas at native **8192×4096** (8K) resolution. It provides **49** +equirectangular RGB panoramas, each paired with a **sparse metric depth map** +rendered from a real LiDAR point cloud, across **5** representative indoor +environments. -The dataset contains **49 equirectangular RGB panoramas**, each paired with a pixel-aligned **sparse metric depth map** rendered from a real LiDAR point cloud. The data covers **five indoor environments** and is intended primarily for evaluating high-resolution, full-resolution, and geometry-aware 360° depth-estimation methods. - -> HIndoor-8K is released as a community resource for high-resolution panoramic depth estimation. +> Released as a community resource for high-resolution 360° depth estimation. --- -## Highlights - -- Real indoor spherical RGB imagery. -- Native **8K equirectangular resolution**. -- Metric depth derived from real LiDAR measurements. -- Pixel-aligned RGB and depth pairs. -- Raw sparse depth without densification or inpainting. -- Five representative indoor environments. -- Evaluation protocol for metric and relative-depth models. - ---- - -## Dataset Overview - -| Property | Value | -|---|---| -| Number of RGB–depth pairs | 49 | -| RGB resolution | 8192 × 4096 | -| Depth resolution | 8192 × 4096 | -| Projection | Equirectangular | -| RGB format | JPEG | -| Depth format | 16-bit PNG | -| Depth unit | Millimetres | -| Invalid depth value | 0 | -| Typical valid coverage | Approximately 15–20% | -| Number of environments | 5 | -| Recommended evaluation cap | 16 metres | +## Contents ---- - -## Directory Structure - -```text +``` HIndoor-8K/ ├── README.md -├── ich/ -│ ├── rgb/ -│ │ └── .jpg -│ └── depth/ -│ └── .png -├── interrato/ -│ ├── rgb/ -│ └── depth/ -├── pt/ -│ ├── rgb/ -│ └── depth/ -├── sala/ -│ ├── rgb/ -│ └── depth/ -└── unibs/ - ├── rgb/ - └── depth/ -``` - -For each RGB panorama: - -```text -/rgb/.jpg -``` - -there is a matching depth map: - -```text -/depth/.png +├── ich/ # corridor +│ ├── rgb/ .jpg RGB equirectangular panorama (8192×4096) +│ └── depth/ .png sparse metric depth (16-bit, millimetres) +├── interrato/ # basement +├── pt/ # project room +├── sala/ # hall / meeting room +└── unibs/ # laboratory ``` -The RGB image and depth map use the same filename stem, corresponding to the capture timestamp. - ---- - -## Scene Distribution +For every `rgb/.jpg` there is a matching `depth/.png` +with the **same filename stem** (the capture timestamp). -| Scene | Environment | Number of pairs | -|---|---|---:| -| `ich` | Corridor | 7 | -| `interrato` | Basement | 8 | -| `pt` | Project room | 10 | -| `sala` | Hall or meeting room | 14 | -| `unibs` | Laboratory | 10 | -| **Total** | | **49** | +| Scene | Environment | # pairs | +|-------|-------------|--------:| +| ich | corridor | 7 | +| interrato | basement | 8 | +| pt | project room | 10 | +| sala | hall / meeting room | 14 | +| unibs | laboratory | 10 | +| **Total** | | **49** | --- -## Data Format - -### RGB Panoramas - -RGB files are stored under: - -```text -/rgb/.jpg -``` - -Each RGB panorama has the following properties: - -- Resolution: **8192 × 4096** -- Projection: equirectangular -- Channels: three-channel sRGB -- Source: real spherical photography -- Format: JPEG -- Real illumination, exposure variation, stitching artefacts, and sensor noise are preserved - -### Sparse Metric Depth - -Depth files are stored under: - -```text -/depth/.png -``` - -Each depth map has the following properties: - -- Resolution: **8192 × 4096** -- Format: unsigned 16-bit single-channel PNG -- PIL mode: `I;16` -- Unit: millimetres -- Invalid value: `0` -- Typical valid coverage: approximately 15–20% -- No densification or inpainting is applied +## Data format -Convert stored depth values to metres using: +**RGB** — `rgb/.jpg` +- Real spherical photograph, equirectangular projection, **8192×4096**, 3-channel sRGB. +- Real illumination, HDR/exposure variation, and sensor noise are preserved (not retouched). -```python -depth_m = depth_mm / 1000.0 -``` - -The depth maps are sparse because they are generated by projecting real LiDAR observations into the panoramic camera view. Pixels may be invalid because of LiDAR angular sparsity, occlusion, distance, grazing-angle surfaces, reflective materials, or missing returns. - -A value of `0` means that no valid LiDAR observation is available. It does not represent a physical distance of zero metres. - ---- - -## Loading the Dataset - -### Load an RGB–Depth Pair +**Depth** — `depth/.png` +- **16-bit single-channel PNG** (`I;16`, unsigned), **8192×4096**, pixel-aligned to the RGB. +- Stored in **millimetres**: `depth_metres = png_value / 1000.0`. +- **Sparse.** The map is a projection of a real LiDAR point cloud, so a large + fraction of pixels have **no valid return** (specular, distant, and + grazing-angle surfaces, plus the LiDAR's intrinsic angular sparsity). + **Invalid pixels are stored as `0`.** Typical valid coverage is ≈ 15–20 %. +- **No densification / inpainting is applied** — this is the raw rendered depth. +### Reading depth (Python) ```python -from pathlib import Path - import numpy as np from PIL import Image - Image.MAX_IMAGE_PIXELS = None -root = Path("HIndoor-8K") -scene = "ich" -timestamp = "" - -rgb_path = root / scene / "rgb" / f"{timestamp}.jpg" -depth_path = root / scene / "depth" / f"{timestamp}.png" - -rgb = Image.open(rgb_path).convert("RGB") - -depth_mm = np.asarray( - Image.open(depth_path), - dtype=np.float32, -) - -valid_mask = depth_mm > 0 -depth_m = depth_mm / 1000.0 - -print("RGB size:", rgb.size) -print("Depth shape:", depth_m.shape) -print("Valid coverage:", valid_mask.mean()) +d_mm = np.asarray(Image.open("depth/.png"), dtype=np.float32) # millimetres +valid = d_mm > 0 # validity mask (0 = no LiDAR return) +d_m = d_mm / 1000.0 # metres ``` -### Enumerate All Samples - +### Evaluation convention +Compute all metrics **only over valid pixels** (`depth > 0`). In our paper we +additionally cap the maximum depth at **16 m** for the reported HIndoor-8K +numbers; adopt the same cap to reproduce them: ```python -from pathlib import Path - -root = Path("HIndoor-8K") -scenes = ["ich", "interrato", "pt", "sala", "unibs"] - -samples = [] - -for scene in scenes: - rgb_dir = root / scene / "rgb" - depth_dir = root / scene / "depth" - - for rgb_path in sorted(rgb_dir.glob("*.jpg")): - depth_path = depth_dir / f"{rgb_path.stem}.png" - - if not depth_path.exists(): - raise FileNotFoundError( - f"Missing depth map for {rgb_path}" - ) - - samples.append( - { - "scene": scene, - "timestamp": rgb_path.stem, - "rgb_path": rgb_path, - "depth_path": depth_path, - } - ) - -print(f"Found {len(samples)} RGB–depth pairs.") +mask = (d_m > 0) & np.isfinite(d_m) & (d_m <= 16.0) ``` - ---- - -## Evaluation Protocol - -All metrics must be computed only over valid depth pixels. - -### Validity Mask - -```python -mask = ( - (depth_m > 0) - & np.isfinite(depth_m) -) -``` - -For the HIndoor-8K results reported in the FRED paper, the maximum ground-truth depth is capped at **16 metres**: - -```python -mask = ( - (depth_m > 0) - & np.isfinite(depth_m) - & (depth_m <= 16.0) -) -``` - -Predictions must be finite and spatially aligned with the ground-truth depth map. - -### Metric-Depth Models - -Models that directly predict metric depth should normally be evaluated without per-image scale alignment. - -### Relative-Depth Models - -Relative-depth predictions should be aligned to the valid ground-truth observations before metric evaluation. - -A median-ratio alignment can be applied as follows: - -```python -valid_prediction = ( - mask - & np.isfinite(prediction) - & (prediction > 0) -) - -scale = ( - np.median(depth_m[valid_prediction]) - / np.median(prediction[valid_prediction]) -) - -aligned_prediction = prediction * scale -``` - -The alignment method must be reported with the results. - -### Recommended Metrics - -Recommended evaluation metrics include: - -- Absolute Relative Error, `AbsRel` -- Squared Relative Error, `SqRel` -- Root Mean Squared Error, `RMSE` -- Logarithmic RMSE -- Scale-Invariant Log Error, `SILog` -- Mean Absolute Error, `MAE` -- Threshold accuracy, δ < 1.25 -- Threshold accuracy, δ < 1.25² -- Threshold accuracy, δ < 1.25³ - -Reported results should specify: - -- Maximum evaluation depth -- Native or resized prediction resolution -- Metric or relative-depth prediction -- Scale-alignment method, if any -- Interpolation method -- Tiling or stitching strategy -- Post-processing -- Whether spherical-area weighting was used +Because the depth is **relative-free / metric but sparse**, predictions from +relative-depth methods should be aligned to the ground truth (e.g. per-image +median-ratio scale alignment) before computing error metrics. --- ## Acquisition -The dataset was captured using a professional indoor mobile-mapping platform carrying rigidly coupled and mutually calibrated sensors. - -### LiDAR - -The acquisition platform uses dual Hesai XT32-class LiDAR scanners with approximately: - -- 10–20 Hz scan frequency -- 32 channels -- 31–40° vertical field of view -- Up to approximately 0.1–0.2° angular resolution -- Nominal range between approximately 120 and 300 metres, depending on the sensor configuration -- Timestamped three-dimensional points with reflectance or return intensity - -### Spherical RGB Camera +Data is captured with a **professional indoor mobile-mapping platform** carrying +rigidly coupled, mutually calibrated sensors: -The spherical camera: +- **LiDAR:** dual Hesai XT32-class scanners (10–20 Hz), 32 channels, + 31–40° vertical FoV, up to 0.1–0.2° angular resolution, 120 m (MT1) – 300 m (M2X) + range. Timestamped 3D points with reflectance / return-intensity. +- **360° RGB camera:** a spherical camera rigidly mounted to the LiDAR rig, + capturing equirectangular panoramas at **8192×4096** (photo mode), with fixed + intrinsics and a known optical centre relative to the LiDAR. +- **IMU:** 3-axis accelerometer + gyroscope for SLAM-based trajectory refinement. -- Is rigidly mounted relative to the LiDAR system -- Captures equirectangular panoramas -- Produces 8192 × 4096 images in photo mode -- Uses fixed intrinsic calibration -- Has a known optical-centre transformation relative to the LiDAR frame -- Records timestamped images for trajectory synchronization +All sensors share a common reference frame. The pipeline outputs (i) a refined +~10 Hz trajectory, (ii) synchronized LiDAR scans, and (iii) timestamped RGB panoramas. -### Inertial Measurement Unit +### Depth rendering +Each RGB panorama's depth is produced by **off-screen spherical rendering** of the +fused LiDAR point cloud, so the RGB stays a *real* photograph while depth comes +from *real* geometry: -A three-axis accelerometer and gyroscope support SLAM-based trajectory estimation and refinement. - -The processing pipeline produces: - -1. A refined trajectory at approximately 10 Hz -2. Synchronized LiDAR scans -3. Timestamped RGB panoramas -4. A fused three-dimensional point cloud -5. Calibrated transformations between the sensors +1. **Pose interpolation** — the 10 Hz trajectory is interpolated to the exact RGB timestamp. +2. **Spherical projection** — each 3D LiDAR point is projected to the spherical + camera (azimuth / elevation) and mapped to equirectangular coordinates. +3. **Depth assignment** — each pixel stores the distance to the closest point + along its ray; occluded or inconsistent samples are discarded. Pixels that + receive no point remain `0` (→ the map is sparse). +4. **Encoding** — depth is written as a 16-bit millimetre PNG at native resolution. --- -## Depth Rendering - -Each depth map is generated through off-screen spherical rendering of the fused LiDAR point cloud. - -The process consists of: +## Optional densification -1. **Pose interpolation** - The reconstructed trajectory is interpolated to the exact RGB capture timestamp. - -2. **Coordinate transformation** - LiDAR points are transformed into the spherical-camera coordinate frame. - -3. **Spherical projection** - Each 3D point is converted to azimuth and elevation and mapped to an equirectangular pixel. - -4. **Depth assignment** - Each pixel stores the distance to the closest consistent LiDAR point along the corresponding viewing direction. - -5. **Visibility filtering** - Occluded, inconsistent, or invalid projected points are discarded. - -6. **Sparse-map preservation** - Pixels receiving no valid point remain zero. - -7. **Encoding** - Valid depth values are converted to millimetres and stored as 16-bit PNG files. - -The RGB images remain real photographs, while the depth maps originate from real geometric measurements. - ---- - -## Optional Depth Completion - -HIndoor-8K deliberately provides raw sparse depth. - -Researchers requiring dense depth may apply an external depth-completion method, such as LDCM or another sparse-to-dense model. Completed depth must be treated as model-generated data rather than original ground truth. - -Experiments using completed depth should report: - -- Completion architecture -- Model checkpoint -- Input preprocessing -- Output resolution -- Confidence filtering -- Training data -- Whether completion was used for training, evaluation, or both - -All benchmark results reported in the FRED paper are calculated using the original sparse depth and a valid-pixel mask. - ---- - -## Intended Uses - -HIndoor-8K is intended for research involving: - -- Monocular panoramic depth estimation -- Full-resolution depth inference -- Equirectangular image understanding -- High-resolution depth estimation -- Metric-depth evaluation -- Relative-depth scale alignment -- Sparse depth completion -- Cross-domain depth evaluation -- Panorama-seam analysis -- Spherical geometry-aware neural networks -- Tiled and patch-based inference - -The dataset is primarily an evaluation benchmark and is not large enough to serve as a standalone training dataset for modern deep networks. - ---- - -## Limitations - -Users should consider the following limitations: - -- The dataset contains only 49 samples. -- It covers five indoor environments. -- Ground-truth depth is sparse and non-uniformly distributed. -- Metrics only evaluate locations containing valid LiDAR observations. -- Reflective, transparent, dark, or distant surfaces may have missing returns. -- Small calibration or synchronization errors may affect object boundaries. -- The equirectangular projection introduces latitude-dependent distortion. -- Native 8K processing requires substantial memory and computation. -- Per-image scale alignment can significantly affect relative-depth results. -- Repeated model tuning on the complete benchmark may cause overfitting. -- Results should not be interpreted as representative of all indoor environments. - ---- - -## Recommended Reporting Practice - -To support reproducibility, report: - -- Dataset version -- Evaluated scenes and images -- Prediction resolution -- Maximum depth -- Validity mask -- Scale alignment -- Interpolation method -- Tiling strategy -- Seam handling -- Circular padding -- Post-processing -- Overall metrics -- Per-scene metrics -- Runtime -- Peak GPU memory -- Hardware configuration +If a dense map is required, the sparse depth can be completed with an off-the-shelf +depth-completion model (e.g. LDCM, *Large Depth Completion Model from Sparse +Observations*, ICLR 2026). We deliberately ship the **raw sparse** depth so that +users may choose their own completion (or none). All benchmark numbers in the +paper are computed on the raw sparse depth with a validity mask. --- ## Citation -Please cite the FRED paper when using HIndoor-8K: +If you use HIndoor-8K, please cite the FRED paper (bibentry to be added on release): ```bibtex @article{fred_hindoor8k, - title = {FRED: Full-Resolution Equirectangular Depth Estimation, and the HIndoor-8K Benchmark}, - author = {Shah, U. and Pintore, G. and Tukur, M. and Zahoor, A. and Schneider, J. and - Sgrenzaroli, M. and Vassena, G. and V{\'a}zquez, P. P. and Gobbetti, E. and Agus, M.}, - journal = {Graphical Models}, - year = {2026} + title = {FRED: Full-Resolution Equirectangular Depth Estimation, and the HIndoor-8K Benchmark}, + author = {Shah, U. and Pintore, G. and Tukur, M. and Zahoor, A. and Schneider, J. and + Sgrenzaroli, M. and Vassena, G. and V\'azquez, P.P. and Gobbetti, E. and Agus, M.}, + journal= {Graphical Models}, + year = {2026} } ``` ---- - ## License -**License:** Creative Commons Attribution-NonCommercial 4.0 - ---- - -## Dataset Version - -- **Version:** `1.0.0` -- **Release date:** 02/08/2026 -- **Last updated:** 02/08/2026 - ---- - -## Contact - -For questions about the dataset, evaluation protocol, or licensing: -- **Name:** Uzair Shah -- **Email:** ushah@hbku.edu.qa, magus@hbku.edu.qa -[More Information Needed] \ No newline at end of file diff --git a/ich/depth/250529_204049775.png b/ich/depth/250529_204049775.png new file mode 100644 index 0000000000000000000000000000000000000000..5a1e74a0f1f477f103197f1df403df27540b216d --- /dev/null +++ b/ich/depth/250529_204049775.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da6ad1252f8da3f9b6d4bbaaa49b9a12ea5cf19ea7658f3cd02ae90be202bc9 +size 5649864 diff --git a/ich/depth/250529_204101238.png b/ich/depth/250529_204101238.png new file mode 100644 index 0000000000000000000000000000000000000000..a989f09e885f5e5fccae5f51ea7ae67d1dacf9a1 --- /dev/null +++ b/ich/depth/250529_204101238.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21da94e5fe1caf7ed04d13e8a3d9b7fac6be778242efb1c3314f69220dd0258c +size 5939686 diff --git a/ich/depth/250529_204121913.png b/ich/depth/250529_204121913.png new file mode 100644 index 0000000000000000000000000000000000000000..852b092172acd44c2e581c3b86a4b183060d9161 --- /dev/null +++ b/ich/depth/250529_204121913.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fff90b5ee73f06b1225dd47cb5469abf8f71a0c526cbba00ad5a20899f1f82d2 +size 5676732 diff --git a/ich/depth/250529_204132781.png b/ich/depth/250529_204132781.png new file mode 100644 index 0000000000000000000000000000000000000000..10e3c0cced0dbe4f63e475d7fe60e36cdb256739 --- /dev/null +++ b/ich/depth/250529_204132781.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffbcbd7e54784dee10d8556c4fab264ae9732c49d65c0802749063f3d4eb82dd +size 6183989 diff --git a/ich/depth/250529_204146714.png b/ich/depth/250529_204146714.png new file mode 100644 index 0000000000000000000000000000000000000000..ed3d1586f308662a55ffb155c45230e4f17cffdb --- /dev/null +++ b/ich/depth/250529_204146714.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91cd1c9c6623ad843399c79b1f70351cb15d4a7eee6feab7a9870d26a7dea35 +size 5493393 diff --git a/ich/depth/250529_204200037.png b/ich/depth/250529_204200037.png new file mode 100644 index 0000000000000000000000000000000000000000..52c85c96e8ac13c81587977d679c0399b13d7ba4 --- /dev/null +++ b/ich/depth/250529_204200037.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91898a1a030d9781b6d55fb1e9f59231b110421b30ca27a861d9c738d543e77d +size 5585514 diff --git a/ich/depth/250529_204213334.png b/ich/depth/250529_204213334.png new file mode 100644 index 0000000000000000000000000000000000000000..2ef3a24a9d1c804eda085abbbb990c89e745b424 --- /dev/null +++ b/ich/depth/250529_204213334.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f17518249dd66697185e36b0b2c9d08759660b70791e823a96c2c52887f9f227 +size 5498959 diff --git a/ich/rgb/250529_204049775.jpg b/ich/rgb/250529_204049775.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e03cc3fd5635725052d5970aa58a66f57e1939da --- /dev/null +++ b/ich/rgb/250529_204049775.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3d62198ac80883932a409a8c1fc3819ea1e03896d05dc18c14301f820d1539 +size 1923888 diff --git a/ich/rgb/250529_204101238.jpg b/ich/rgb/250529_204101238.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4036fd5e9c62c7b5506cc17ce369512045a45047 --- /dev/null +++ b/ich/rgb/250529_204101238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a828b193ff13920f5cbad869babb7d15b00a82a62a53701a41c46ad9a0db7ed5 +size 2152540 diff --git a/ich/rgb/250529_204121913.jpg b/ich/rgb/250529_204121913.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2e777b6a16401f79490c670b42fbdbf1eff6be5 --- /dev/null +++ b/ich/rgb/250529_204121913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312d52632688b04db36dffa14eb303133d162d19ccf85c1bc054b11640333801 +size 2095206 diff --git a/ich/rgb/250529_204132781.jpg b/ich/rgb/250529_204132781.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30b1a03c208336d54e7f0a3f8064f98b26a18486 --- /dev/null +++ b/ich/rgb/250529_204132781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfb0fa9c5b317051e2ee615bad1169d0f50e5d7939b80ae65e7d126e0516386 +size 2124155 diff --git a/ich/rgb/250529_204146714.jpg b/ich/rgb/250529_204146714.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0557c230c6f780080a8dcb318e10711470d9a217 --- /dev/null +++ b/ich/rgb/250529_204146714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5c54f88f0cd3acdbe6d5b762ba8b53f131cfd05ca1131601938200f9a666d9 +size 2210191 diff --git a/ich/rgb/250529_204200037.jpg b/ich/rgb/250529_204200037.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a53ede5f6cc40b2cc5b1e612bea2a7333c85a6be --- /dev/null +++ b/ich/rgb/250529_204200037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b8d21170a7fb94c00c41e10c55ec6cca76eff8e1da028092646f3359973cc9 +size 2044422 diff --git a/ich/rgb/250529_204213334.jpg b/ich/rgb/250529_204213334.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ed195a7f28859f1a6da5e45c4c80b17cb003568 --- /dev/null +++ b/ich/rgb/250529_204213334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5492037f2efa030a72806139ec16b23881568ff229032b85e83df5c70455e17d +size 2114389 diff --git a/interrato/depth/250529_171337984.png b/interrato/depth/250529_171337984.png new file mode 100644 index 0000000000000000000000000000000000000000..8cef58add2c78fd4c03dc40337d09941d24d8660 --- /dev/null +++ b/interrato/depth/250529_171337984.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a6e2181294ebe71b47792756dad655381ebcdefacb42c77c64f6eed6ad80a80 +size 3680640 diff --git a/interrato/depth/250529_171358506.png b/interrato/depth/250529_171358506.png new file mode 100644 index 0000000000000000000000000000000000000000..c633a726bb8e34629ffe70d6fbb88b985df73904 --- /dev/null +++ b/interrato/depth/250529_171358506.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee29fa9015d670ac4043b8ac488747cf419eddd02552cbf46dde349fc39d930a +size 4017187 diff --git a/interrato/depth/250529_171422286.png b/interrato/depth/250529_171422286.png new file mode 100644 index 0000000000000000000000000000000000000000..78f4c6394d88304c31a5c422c5f1a18ab46850c7 --- /dev/null +++ b/interrato/depth/250529_171422286.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b2be311faefc1200d77406c0beeada41435023df39e240422a87110b8d8317 +size 4249243 diff --git a/interrato/depth/250529_171438596.png b/interrato/depth/250529_171438596.png new file mode 100644 index 0000000000000000000000000000000000000000..785152a98d67d2122d11121f98ea05b820ae4019 --- /dev/null +++ b/interrato/depth/250529_171438596.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d0ac7ab3ceaeb4e5cffc065616a63ece0c601b1675a7c79c0af27b57363d4c +size 3681428 diff --git a/interrato/depth/250529_171454748.png b/interrato/depth/250529_171454748.png new file mode 100644 index 0000000000000000000000000000000000000000..b77f2979473d8e6eb09546975f46f4cfd54c2be8 --- /dev/null +++ b/interrato/depth/250529_171454748.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc439e3cd12fa307bbb2185da3e5357ccf4c882aaed4e3b52245842f09e7176 +size 4374269 diff --git a/interrato/depth/250529_171509941.png b/interrato/depth/250529_171509941.png new file mode 100644 index 0000000000000000000000000000000000000000..e995dc55043a58ec44bdb14c229d6bb8d5c4b2aa --- /dev/null +++ b/interrato/depth/250529_171509941.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39be7018edc06ce820f74b72b5b14f6e2e2d3c6a6cd364a291dda528055e75d4 +size 4166358 diff --git a/interrato/depth/250529_171524646.png b/interrato/depth/250529_171524646.png new file mode 100644 index 0000000000000000000000000000000000000000..a9dd24931eecc52d5403231ef06eeb55dc9153f3 --- /dev/null +++ b/interrato/depth/250529_171524646.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3925ed599247d8830e001f1a6398f1e0fec98dc9002fb15a61416ffb9f029663 +size 4060993 diff --git a/interrato/depth/250529_171539391.png b/interrato/depth/250529_171539391.png new file mode 100644 index 0000000000000000000000000000000000000000..0c1287f390021b86751a8477e10d0a06702b9e9b --- /dev/null +++ b/interrato/depth/250529_171539391.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1eb2ceaa1cd24791b62dab0d4bca9cbf5c34820172ac09cf7eaa916a2f1e5c +size 4363516 diff --git a/interrato/rgb/250529_171337984.jpg b/interrato/rgb/250529_171337984.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f48ec9b30e54429c6b6c0104fdf0b5447ea8260c --- /dev/null +++ b/interrato/rgb/250529_171337984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cefd399e444a580643252cf4d39c89d92a246de1af62d32fa061a7cf793b325b +size 1284471 diff --git a/interrato/rgb/250529_171358506.jpg b/interrato/rgb/250529_171358506.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc63a85bd6a6b91d443370c1fd1504fd45e1eefc --- /dev/null +++ b/interrato/rgb/250529_171358506.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d06e493cdcf9a438752523ff47d9a524e157bc5b6ea6664600c0e2903155a2 +size 1358425 diff --git a/interrato/rgb/250529_171422286.jpg b/interrato/rgb/250529_171422286.jpg new file mode 100644 index 0000000000000000000000000000000000000000..047460d5c162515e9e415cab04ee218522833857 --- /dev/null +++ b/interrato/rgb/250529_171422286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d668f202cbda039069a4cdac1baa3ebe625c204d48b3bb5cea6a41e2c6013b +size 1676293 diff --git a/interrato/rgb/250529_171438596.jpg b/interrato/rgb/250529_171438596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c7109579debe7b911ca47cc6f8afa38a5f2dbfc --- /dev/null +++ b/interrato/rgb/250529_171438596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573ac2b815172bf08dacc9db92e7f775c3e87f341edc50c9bc6f3571a6c98ae6 +size 1669997 diff --git a/interrato/rgb/250529_171454748.jpg b/interrato/rgb/250529_171454748.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dfae6a177e5675df74c236ff5574c48873a2e30 --- /dev/null +++ b/interrato/rgb/250529_171454748.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e75f8cb7d36331f6262a4d06689e8e3331f4e9bdcb208e0816bca7604155238 +size 1287740 diff --git a/interrato/rgb/250529_171509941.jpg b/interrato/rgb/250529_171509941.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fbcd3351f6db6d13eda9c3b14510720f2ae8048 --- /dev/null +++ b/interrato/rgb/250529_171509941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b3c46422f52f68cef6c302c2ad7992d3f452412f958ddefd0d6f2411f8d0cd +size 1117617 diff --git a/interrato/rgb/250529_171524646.jpg b/interrato/rgb/250529_171524646.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9179d2b83080c2826dbb55618ecbdd6a5d162f7e --- /dev/null +++ b/interrato/rgb/250529_171524646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab8fa85d84b98f92ae38be5a1400dacfde7c873745f11ecfb9c923bfb0fa0c4 +size 1387359 diff --git a/interrato/rgb/250529_171539391.jpg b/interrato/rgb/250529_171539391.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b89cc432fa960d01d18d4b098992adb33fc0723 --- /dev/null +++ b/interrato/rgb/250529_171539391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e310ab4a5d5969b9ab6a9ed322d6822dd9594c4263a58fcf92cd1564920237fa +size 1385091 diff --git a/pt/depth/250529_172626652.png b/pt/depth/250529_172626652.png new file mode 100644 index 0000000000000000000000000000000000000000..3e124fe8ff8e74e4138369bb3ac0f06a3da2e7ee --- /dev/null +++ b/pt/depth/250529_172626652.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a07041ed546736dc407fbcde5c238e9f1a07902e60a2c2d999bb630468f9dad +size 3178336 diff --git a/pt/depth/250529_172639431.png b/pt/depth/250529_172639431.png new file mode 100644 index 0000000000000000000000000000000000000000..f6798803b79d0782b73789d232cf3b7074d83ee7 --- /dev/null +++ b/pt/depth/250529_172639431.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d544e3692e02a432d40aa793b47842bf816db860add3f35666b57118c02a4d4 +size 4829449 diff --git a/pt/depth/250529_172653636.png b/pt/depth/250529_172653636.png new file mode 100644 index 0000000000000000000000000000000000000000..1480276802bff12139632c126ef423c69ae64aca --- /dev/null +++ b/pt/depth/250529_172653636.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98705520f7c355fde02aa85fce5b7de78b019b16cac1e63d8c263a3c3e19bcc9 +size 5235097 diff --git a/pt/depth/250529_172707066.png b/pt/depth/250529_172707066.png new file mode 100644 index 0000000000000000000000000000000000000000..06227751f4611678363e871084b318b9e72eaf57 --- /dev/null +++ b/pt/depth/250529_172707066.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c8c39387c06d059a04a0b5c37eaa69ea5948889d89ec6af98e4675f25dd29fe +size 5350364 diff --git a/pt/depth/250529_172719892.png b/pt/depth/250529_172719892.png new file mode 100644 index 0000000000000000000000000000000000000000..147e965c80c256d7740a4cf70822cfe07dfb10fd --- /dev/null +++ b/pt/depth/250529_172719892.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164ca2435e42bf66871a998aad974d2a43373e8ca4be70ba0a1f12c01471727f +size 5831257 diff --git a/pt/depth/250529_172738103.png b/pt/depth/250529_172738103.png new file mode 100644 index 0000000000000000000000000000000000000000..cb1872ea8d4431fa0b9285cd29725e3e56a322d8 --- /dev/null +++ b/pt/depth/250529_172738103.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee70bd8d1e2d36b5fe833d460d9ae6dddd8d07ff4d25d34d4c9fbb12934da888 +size 6010218 diff --git a/pt/depth/250529_172749403.png b/pt/depth/250529_172749403.png new file mode 100644 index 0000000000000000000000000000000000000000..8979c875748bb84c103384240a4a5b5634442c97 --- /dev/null +++ b/pt/depth/250529_172749403.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87cf1ba4fa1a3d5c65dcc7bb25c87ecbdb43f179246924cc9a73a75b36cb461e +size 6393682 diff --git a/pt/depth/250529_172815210.png b/pt/depth/250529_172815210.png new file mode 100644 index 0000000000000000000000000000000000000000..f503914e8cc0b13eb2b77b9cc00c82cc2d7baa26 --- /dev/null +++ b/pt/depth/250529_172815210.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eae77a6ed582e1d5eaddfcde913c21c6bd09110951f8d0e1c791099d75a9243 +size 5593859 diff --git a/pt/depth/250529_172840248.png b/pt/depth/250529_172840248.png new file mode 100644 index 0000000000000000000000000000000000000000..30dfdc5861c95fd96aa41bf50234b77bcd907917 --- /dev/null +++ b/pt/depth/250529_172840248.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942dc5d6101a15fb5101bae7e685b4a8309e4ea3b2b3bd918013a7f2a7067b61 +size 5288200 diff --git a/pt/depth/250529_172853206.png b/pt/depth/250529_172853206.png new file mode 100644 index 0000000000000000000000000000000000000000..486f82cf81843a06a8a15bdfe32138d0cd71dc32 --- /dev/null +++ b/pt/depth/250529_172853206.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8feed22fa9d277294444572f4cefdd987b0c75ea6f8d5cf7d6698a4f8a1dc2 +size 2906917 diff --git a/pt/rgb/250529_172626652.jpg b/pt/rgb/250529_172626652.jpg new file mode 100644 index 0000000000000000000000000000000000000000..346d0b47eb54bbb66662bdecc590d0f3e3edf8cd --- /dev/null +++ b/pt/rgb/250529_172626652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0ef7623e382bd3cd3bc46236c7a0be7add02c2c13505bfcfb0e86207f01ead +size 2341558 diff --git a/pt/rgb/250529_172639431.jpg b/pt/rgb/250529_172639431.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af2b3b813ac73ed7db22e0ac3ce40fc06fbe76e0 --- /dev/null +++ b/pt/rgb/250529_172639431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45780baf4da2e7db329646efda9a2dd9d74325e34a6960f210da08a3ca012bbc +size 1959211 diff --git a/pt/rgb/250529_172653636.jpg b/pt/rgb/250529_172653636.jpg new file mode 100644 index 0000000000000000000000000000000000000000..704b5ec63bf59dcda0b6e4abd9341240ba98f4b0 --- /dev/null +++ b/pt/rgb/250529_172653636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6903292eafcf9da1eec6d0e476058618c4f59c0fe0b50f0482c09d5399a3d7 +size 1870638 diff --git a/pt/rgb/250529_172707066.jpg b/pt/rgb/250529_172707066.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d607a08aa6c4638cdf44c668e422194ff7cc161e --- /dev/null +++ b/pt/rgb/250529_172707066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a55b14326495c4df1d0845dd1338c13b2b94f53688bb3ad4d1fbe23f8a5cb2 +size 2095437 diff --git a/pt/rgb/250529_172719892.jpg b/pt/rgb/250529_172719892.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2145c20ba1260b15bb7a5a0be8a1cb8bacdb275 --- /dev/null +++ b/pt/rgb/250529_172719892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308c26fabcd537bcc33719dd4b2298a5edd5b50c98cf0fdf50820ebc1aac7a45 +size 2712479 diff --git a/pt/rgb/250529_172738103.jpg b/pt/rgb/250529_172738103.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea93b6f3400e8df5a7a1ec65e072bf2d498f85ba --- /dev/null +++ b/pt/rgb/250529_172738103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddae2d338c9a7566f61a8a11655b75d957d07f333d43473cb159b38ed07c2ce8 +size 2141829 diff --git a/pt/rgb/250529_172749403.jpg b/pt/rgb/250529_172749403.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1110d5294f72854afbd4989441bb06761ca2f3a0 --- /dev/null +++ b/pt/rgb/250529_172749403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:750963c1255140458e134b8045fa01c6ea39166573bff6254046617cf396865d +size 2240833 diff --git a/pt/rgb/250529_172815210.jpg b/pt/rgb/250529_172815210.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68e7ec3cd627e3cc9ecf6af6444f9d815d9399e8 --- /dev/null +++ b/pt/rgb/250529_172815210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6deb72c9f6e6c7aa2e4162bc33869ae91ecf60566b209390e5da356f9607ad +size 2480540 diff --git a/pt/rgb/250529_172840248.jpg b/pt/rgb/250529_172840248.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdca81c2dcec6bfcfea496c21250b41ce6431cbe --- /dev/null +++ b/pt/rgb/250529_172840248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91d01dce1f300ce69e09b69f195f20e643306f79fd8528e7d321cb2e13a5e821 +size 1999327 diff --git a/pt/rgb/250529_172853206.jpg b/pt/rgb/250529_172853206.jpg new file mode 100644 index 0000000000000000000000000000000000000000..458554505c0c93dfa6a984fb0dd715f3e5446467 --- /dev/null +++ b/pt/rgb/250529_172853206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f77b22e92bee232dd87b051563858b9994af5c8c650cc6e8b80b5322cbfb717 +size 2303015 diff --git a/sala/depth/250529_203451987.png b/sala/depth/250529_203451987.png new file mode 100644 index 0000000000000000000000000000000000000000..143d32a04f27fd571e88e38796f96ba434e53240 --- /dev/null +++ b/sala/depth/250529_203451987.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb8ad6fcfd2cfa99650f7ac612d98fbc66577216b0a9530e3f961611ad75e462 +size 2721126 diff --git a/sala/depth/250529_203503224.png b/sala/depth/250529_203503224.png new file mode 100644 index 0000000000000000000000000000000000000000..32f05ae89e20eac69134fe31927d549ce718d3a4 --- /dev/null +++ b/sala/depth/250529_203503224.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d743af705707449e9079ff2304cc8f8bf1d99527074d3ab4bd27b2bde5422062 +size 3626491 diff --git a/sala/depth/250529_203513814.png b/sala/depth/250529_203513814.png new file mode 100644 index 0000000000000000000000000000000000000000..dfddb3f6821686f737f8fb7abca24ffc6a776bcd --- /dev/null +++ b/sala/depth/250529_203513814.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d4c53618aa28ba7adc07ab9eaac7fd23b08be7d493a6cb186980ea860ea376 +size 3736582 diff --git a/sala/depth/250529_203523153.png b/sala/depth/250529_203523153.png new file mode 100644 index 0000000000000000000000000000000000000000..6053b322bff4c0cf88bd957a01783261b22383a8 --- /dev/null +++ b/sala/depth/250529_203523153.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5954a7f8830cb0eb5d606d36c86ee46aa87dca42695732575957423a4ad82f5c +size 3854322 diff --git a/sala/depth/250529_203535707.png b/sala/depth/250529_203535707.png new file mode 100644 index 0000000000000000000000000000000000000000..52a2b4d878b4ce6e556e73e4b635bcbfeb698e91 --- /dev/null +++ b/sala/depth/250529_203535707.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5fc01e5e91d8b62e2551613d1a5059be972207991c9d42dbfdf2f9c9555b83 +size 4369084 diff --git a/sala/depth/250529_203547687.png b/sala/depth/250529_203547687.png new file mode 100644 index 0000000000000000000000000000000000000000..816517009cabcb5b6921ebcc97abe3ea7ae49320 --- /dev/null +++ b/sala/depth/250529_203547687.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d12edaab7b40f928428de94442665807f41fe5e61932dd228518a5730cea1f +size 4011222 diff --git a/sala/depth/250529_203603812.png b/sala/depth/250529_203603812.png new file mode 100644 index 0000000000000000000000000000000000000000..7c76c2ee928bb467f071c1961ae88e0c84d07b21 --- /dev/null +++ b/sala/depth/250529_203603812.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a221881f2550dde58344defd0565fc57bad0f44e716ebe0a00da32343e7729 +size 3955736 diff --git a/sala/depth/250529_203622630.png b/sala/depth/250529_203622630.png new file mode 100644 index 0000000000000000000000000000000000000000..02c0b8c12612e3a6e3c0eedd11970de010595ecb --- /dev/null +++ b/sala/depth/250529_203622630.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3338ed1c20bc4a71d6df6dacd27608ac2694d9460824b7669a2591004b13274 +size 3863579 diff --git a/sala/depth/250529_203632842.png b/sala/depth/250529_203632842.png new file mode 100644 index 0000000000000000000000000000000000000000..d93c0399a91bbcef9d73714beb135be5e6a3462e --- /dev/null +++ b/sala/depth/250529_203632842.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94fda8c18992e5542478eecaf05df5535b64965dc6023be2629ae5a0ae22b45b +size 3624565 diff --git a/sala/depth/250529_203643093.png b/sala/depth/250529_203643093.png new file mode 100644 index 0000000000000000000000000000000000000000..4affea200c039eb4ba63e506388d2c6da669e849 --- /dev/null +++ b/sala/depth/250529_203643093.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ffa2d2d227fa4b7b95057b3a788b355800e7c79b7c05595a14db062eac937cf +size 3668668 diff --git a/sala/depth/250529_203652438.png b/sala/depth/250529_203652438.png new file mode 100644 index 0000000000000000000000000000000000000000..ca190f8dda4db2073a423bdadb77a4afc64c62de --- /dev/null +++ b/sala/depth/250529_203652438.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f035d71cabdd2e790add5419953530ee9b4ad3650b933d4b4ce64628602d696 +size 3732641 diff --git a/sala/depth/250529_203703579.png b/sala/depth/250529_203703579.png new file mode 100644 index 0000000000000000000000000000000000000000..b29d3b43baeda44d861220810f84661969b33487 --- /dev/null +++ b/sala/depth/250529_203703579.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb0dd03a78b4827a5108b918d792eb904ca514dd2be66379f7245fa6e71eae2 +size 3786478 diff --git a/sala/depth/250529_203713159.png b/sala/depth/250529_203713159.png new file mode 100644 index 0000000000000000000000000000000000000000..17d7229150d5dd1d0dc59a2df4aa09865c771b19 --- /dev/null +++ b/sala/depth/250529_203713159.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1112ae2689a17f6ea1b5c278bc93b3ede466136935a7836d26e20455d95610e +size 3625933 diff --git a/sala/depth/250529_203724182.png b/sala/depth/250529_203724182.png new file mode 100644 index 0000000000000000000000000000000000000000..362d66c44c0b6cd2cf81a63109a9b66fdf812afa --- /dev/null +++ b/sala/depth/250529_203724182.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bf6b0be810a434f4694b1066fd3524b15c0850a45f285f9d364a05a9999108 +size 3813807 diff --git a/sala/rgb/250529_203451987.jpg b/sala/rgb/250529_203451987.jpg new file mode 100644 index 0000000000000000000000000000000000000000..891c414ef26d3e297f1c8387f5bcd30fd5606b38 --- /dev/null +++ b/sala/rgb/250529_203451987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7124e469158b14842c2858724c635029eda9a1b593bc9051de41e1b795538417 +size 2667500 diff --git a/sala/rgb/250529_203503224.jpg b/sala/rgb/250529_203503224.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87181b588b37aa5434d9834b979117325d2a9515 --- /dev/null +++ b/sala/rgb/250529_203503224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6f9dfb3c78ef48f176e7b59a540ed62803013a2bf6278d47b2472dc6a14079 +size 3222201 diff --git a/sala/rgb/250529_203513814.jpg b/sala/rgb/250529_203513814.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2747e3d5df473ea28738dc21956d1be11893a623 --- /dev/null +++ b/sala/rgb/250529_203513814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d6ca290d5514ff8b5b5e8cab4701380677aaea61a306d977df4580e6ac84ba +size 2052576 diff --git a/sala/rgb/250529_203523153.jpg b/sala/rgb/250529_203523153.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36f351fdf10e612d087f26a51b0914888b27e671 --- /dev/null +++ b/sala/rgb/250529_203523153.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9805ffca92cb77a65e187393c6cc73fe272885d812e55633999b6cfb21b431 +size 2525841 diff --git a/sala/rgb/250529_203535707.jpg b/sala/rgb/250529_203535707.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c57664e137011a9583a17ecf2f5cfa03b06b8dcd --- /dev/null +++ b/sala/rgb/250529_203535707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3916b8124c845d1ae0b52de665fff0a4b763a5fd69f40915e67e8dfc4f529f8e +size 1807170 diff --git a/sala/rgb/250529_203547687.jpg b/sala/rgb/250529_203547687.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb8c831c81fcb7aec01ee4930f9ee5108b978957 --- /dev/null +++ b/sala/rgb/250529_203547687.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f52654a20d7e221d4db9ea35971981b8cd6bddb0afc5b5c3d8333bdb6f628d1 +size 2092815 diff --git a/sala/rgb/250529_203603812.jpg b/sala/rgb/250529_203603812.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcd245a4cc971df7fa81973408fa17e1edd62266 --- /dev/null +++ b/sala/rgb/250529_203603812.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92da6fcd3bc003ddfc94d769562b82e4ff4ddfa07fd312305ca2544856db08b8 +size 1909605 diff --git a/sala/rgb/250529_203622630.jpg b/sala/rgb/250529_203622630.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3d461b86864bf224a0526015c82d1bf9fe6fc1e --- /dev/null +++ b/sala/rgb/250529_203622630.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b7e6348c3836820e88316e94fedbe55baf4850094af97c87e6c582977bca40 +size 2029703 diff --git a/sala/rgb/250529_203632842.jpg b/sala/rgb/250529_203632842.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6321d9c22571875589f40ea5fb6f736bbeed9f3 --- /dev/null +++ b/sala/rgb/250529_203632842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033f499a2f68f4b0ae64e57b67406453c8106ca4546a24777c046e7a0985f0cf +size 2084606 diff --git a/sala/rgb/250529_203643093.jpg b/sala/rgb/250529_203643093.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2db9eceb758ac88fdac2e635f3ba40c313e5b27c --- /dev/null +++ b/sala/rgb/250529_203643093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84be869f3e1eb9b0a70e0279cef60e2e5561c5461ceffc9eb78952470d41bf56 +size 1485170 diff --git a/sala/rgb/250529_203652438.jpg b/sala/rgb/250529_203652438.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf46ef3f7870e3d32146211d2db76a5ba138a35e --- /dev/null +++ b/sala/rgb/250529_203652438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d05efe6c2d92664881ef5d355c9e1bdc1c67808fcb76319747941d357722ca +size 2113897 diff --git a/sala/rgb/250529_203703579.jpg b/sala/rgb/250529_203703579.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71b1fe26c820317f037adf956c7b95c869792d51 --- /dev/null +++ b/sala/rgb/250529_203703579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b830d97324eb57ddca4dd7e9c5ac9d1c3749aeb828b3f183a7a0e5ac3d0187b9 +size 1820670 diff --git a/sala/rgb/250529_203713159.jpg b/sala/rgb/250529_203713159.jpg new file mode 100644 index 0000000000000000000000000000000000000000..902dbca591546333592614b0f0a7df9220316199 --- /dev/null +++ b/sala/rgb/250529_203713159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:654c1952d56ead6f50aa01f717ad7d1a7bc0d91eff6bfc7117f678c663ab0b1b +size 1696084 diff --git a/sala/rgb/250529_203724182.jpg b/sala/rgb/250529_203724182.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82fca9e42d263ab6be36eabc9be4a1d553fde4db --- /dev/null +++ b/sala/rgb/250529_203724182.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35bb3764770670c6fd05b44d0d114a3cda07430ed4132d75a74c5dc241c43a39 +size 2066115 diff --git a/unibs/depth/250529_231139483.png b/unibs/depth/250529_231139483.png new file mode 100644 index 0000000000000000000000000000000000000000..0a736fca1bbe592e14109da653b1be34847c5335 --- /dev/null +++ b/unibs/depth/250529_231139483.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba4cce418afe8f9f9c99e00f988923e88ac129760ba549c84dd332605103e397 +size 5842307 diff --git a/unibs/depth/250529_231154607.png b/unibs/depth/250529_231154607.png new file mode 100644 index 0000000000000000000000000000000000000000..fa4172d9a5fbbb80118c068b7f4d2f85c4e130b8 --- /dev/null +++ b/unibs/depth/250529_231154607.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca319c920c4746b6af124778761ef25a756ec12f3af93d8e013ecb996cde27e +size 5051508 diff --git a/unibs/depth/250529_231205716.png b/unibs/depth/250529_231205716.png new file mode 100644 index 0000000000000000000000000000000000000000..fcbdeb6f87f08878c1e4c67eca2281c08a0ac246 --- /dev/null +++ b/unibs/depth/250529_231205716.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eff0907f6222f76d77447ffc20cb946c0c5dc03a187739715d3ebe0707726bd +size 4720770 diff --git a/unibs/depth/250529_231219569.png b/unibs/depth/250529_231219569.png new file mode 100644 index 0000000000000000000000000000000000000000..100699495fd08bed20e7a6f84844a0b39ef33fef --- /dev/null +++ b/unibs/depth/250529_231219569.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9319db9dbee2bae31460d7513ba8390bda719ccaeb91c1682876c9ae2cf2b4c +size 5795641 diff --git a/unibs/depth/250529_231229060.png b/unibs/depth/250529_231229060.png new file mode 100644 index 0000000000000000000000000000000000000000..9ec101ce0a8a3a22694b6728c559d42c01278146 --- /dev/null +++ b/unibs/depth/250529_231229060.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456307397eea00d1ecebdaa17a4f929711b641913b7436a87e1e08e8c5bb5279 +size 5657372 diff --git a/unibs/depth/250529_231239828.png b/unibs/depth/250529_231239828.png new file mode 100644 index 0000000000000000000000000000000000000000..4d2563500f715d9139285d484e18210249354caa --- /dev/null +++ b/unibs/depth/250529_231239828.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd10487883c7e076970a14fa8a258a08dd69e40bcfbe507d27bb6d811efd105 +size 4723980 diff --git a/unibs/depth/250529_231253084.png b/unibs/depth/250529_231253084.png new file mode 100644 index 0000000000000000000000000000000000000000..630147a38aeb1256ba8624114ece02a496d81607 --- /dev/null +++ b/unibs/depth/250529_231253084.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98addc68c7e127b02164bba6d4e0a4503870a2fa73335791a7021818a295a2e +size 4818180 diff --git a/unibs/depth/250529_231311396.png b/unibs/depth/250529_231311396.png new file mode 100644 index 0000000000000000000000000000000000000000..32b10fdabd2b8fe2c9ee46a1f2f7681c14cde261 --- /dev/null +++ b/unibs/depth/250529_231311396.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383b24dd98c442f3b3891125e9166bf75fe4ca3d93b7da2940639c9294418630 +size 4892453 diff --git a/unibs/depth/250529_231335750.png b/unibs/depth/250529_231335750.png new file mode 100644 index 0000000000000000000000000000000000000000..4ccb2c5fd2841940aeab443055e70258c6ad108d --- /dev/null +++ b/unibs/depth/250529_231335750.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e2b78c7e8c85631c69704c83b71d76634b4da64e0237196686a71b19412e96 +size 6159784 diff --git a/unibs/depth/250529_231356658.png b/unibs/depth/250529_231356658.png new file mode 100644 index 0000000000000000000000000000000000000000..622b56a662ada84fbc9ede604ae63ffe216dd053 --- /dev/null +++ b/unibs/depth/250529_231356658.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9710a60ec826c76d355c894dffabaae3892f5b18b4d6ad6de0df442addbfacb +size 5384178 diff --git a/unibs/rgb/250529_231139483.jpg b/unibs/rgb/250529_231139483.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cddc7407e030ec49d5ab6af1909d799a90e1ae9e --- /dev/null +++ b/unibs/rgb/250529_231139483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a676727d26e4082be1fc9b6d7f662678200bcd88ba27d380b79d378a5e19e777 +size 2335051 diff --git a/unibs/rgb/250529_231154607.jpg b/unibs/rgb/250529_231154607.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1d54444b05ceeb99b0aace2b1061ffe60fd6e5d --- /dev/null +++ b/unibs/rgb/250529_231154607.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2809711acb5a7e06b682af8d9458a9c71c4bc44eff32bdb7d7cafd2f36ee6c +size 1836923 diff --git a/unibs/rgb/250529_231205716.jpg b/unibs/rgb/250529_231205716.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1a6fb9ed136037b5a205637dac7ebd28377569d --- /dev/null +++ b/unibs/rgb/250529_231205716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed660dd4f40bedbd94061cec1151e4a52e5a1d6d1844e8e140b5a1fa944060b0 +size 1988018 diff --git a/unibs/rgb/250529_231219569.jpg b/unibs/rgb/250529_231219569.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2065a54955b67276742b2decfa1d29e5028edfa1 --- /dev/null +++ b/unibs/rgb/250529_231219569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a879967da6b00391bb36fec25d8c430b32503da15dbbcec0af6695551d990849 +size 1977727 diff --git a/unibs/rgb/250529_231229060.jpg b/unibs/rgb/250529_231229060.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f96480b2fa7c14604dc9b313b4fd790697fdef87 --- /dev/null +++ b/unibs/rgb/250529_231229060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:881cca7247fff287bbf7c04228628c5d0dddca751aa99dbacc65eae38effe15a +size 2232107 diff --git a/unibs/rgb/250529_231239828.jpg b/unibs/rgb/250529_231239828.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c03a565ed86b8af6cf0a22b6be76377d377bf83 --- /dev/null +++ b/unibs/rgb/250529_231239828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da12a374be32459f7393cacb8356d77c98287b601298866cd014aa60abebdd48 +size 2096054 diff --git a/unibs/rgb/250529_231253084.jpg b/unibs/rgb/250529_231253084.jpg new file mode 100644 index 0000000000000000000000000000000000000000..399fdf0dc47359ab12efb0693bb9f7f4e40114c9 --- /dev/null +++ b/unibs/rgb/250529_231253084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2330a14189160c23c81917baf582dd8755dbdc729f612cd9c3038fac7d19d26 +size 2011976 diff --git a/unibs/rgb/250529_231311396.jpg b/unibs/rgb/250529_231311396.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f5262f42cd46b32f135ec0cd4f2860f5904dcd1 --- /dev/null +++ b/unibs/rgb/250529_231311396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acfeffc2c45b8da1be7bd35773241d549b47a3be772a750d40891fc297a4d64b +size 1981557 diff --git a/unibs/rgb/250529_231335750.jpg b/unibs/rgb/250529_231335750.jpg new file mode 100644 index 0000000000000000000000000000000000000000..524f09d0c165703fcefd4fb3f8323d3c9f3a9979 --- /dev/null +++ b/unibs/rgb/250529_231335750.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7437e71b3520a5aef083b3c599e3562b2e40f705eae62f5cdcee2636855803e9 +size 2243755 diff --git a/unibs/rgb/250529_231356658.jpg b/unibs/rgb/250529_231356658.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c7d583975494d2d0f6a2798a62189ecabf503ac --- /dev/null +++ b/unibs/rgb/250529_231356658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2197218ebc662b489753bd832f6327942d5e2e84bacd781cb44bc311668e00e +size 1910348