Datasets:
add .gitignore file
Browse files- .gitignore +51 -0
.gitignore
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ===============================
|
| 2 |
+
# Large dataset files (DO NOT git)
|
| 3 |
+
# ===============================
|
| 4 |
+
images/
|
| 5 |
+
rgb/
|
| 6 |
+
depth/
|
| 7 |
+
depths/
|
| 8 |
+
masks/
|
| 9 |
+
seg/
|
| 10 |
+
nocs/
|
| 11 |
+
normal/
|
| 12 |
+
pointclouds/
|
| 13 |
+
pcd/
|
| 14 |
+
*.png
|
| 15 |
+
*.jpg
|
| 16 |
+
*.jpeg
|
| 17 |
+
*.tiff
|
| 18 |
+
*.exr
|
| 19 |
+
*.npz
|
| 20 |
+
*.npy
|
| 21 |
+
*.h5
|
| 22 |
+
*.hdf5
|
| 23 |
+
*.bin
|
| 24 |
+
*.tar
|
| 25 |
+
*.tar.gz
|
| 26 |
+
*.zip
|
| 27 |
+
|
| 28 |
+
# ===============================
|
| 29 |
+
# Generated / cache
|
| 30 |
+
# ===============================
|
| 31 |
+
__pycache__/
|
| 32 |
+
*.log
|
| 33 |
+
*.tmp
|
| 34 |
+
.cache/
|
| 35 |
+
.ipynb_checkpoints/
|
| 36 |
+
|
| 37 |
+
# ===============================
|
| 38 |
+
# OS / Editor
|
| 39 |
+
# ===============================
|
| 40 |
+
.DS_Store
|
| 41 |
+
Thumbs.db
|
| 42 |
+
.idea/
|
| 43 |
+
.vscode/
|
| 44 |
+
|
| 45 |
+
# ===============================
|
| 46 |
+
# Secrets
|
| 47 |
+
# ===============================
|
| 48 |
+
*.key
|
| 49 |
+
*.pem
|
| 50 |
+
*.env
|
| 51 |
+
*.obj
|