Update README.md
Browse files
README.md
CHANGED
@@ -7,23 +7,13 @@ The repo consistst of the following parts:
|
|
7 |
|
8 |
- `script.py` - the main file, which is run by the competition space. It should produce `submission.parquet` as the result of the run.
|
9 |
- `hoho.py` - the file for parsing the dataset at the inference time. Do NOT change it.
|
10 |
-
- `
|
11 |
- other `*.py` files - helper i/o and visualization utilities
|
12 |
- `packages/` - the directory to put python wheels for the custom packages you want to install and use.
|
13 |
|
14 |
## Solution description
|
15 |
|
16 |
-
The solution is
|
17 |
-
|
18 |
-
1. Using provided (but noisy) semantic segmentation called `gestalt`, it takes the centroids of the vertex classes - `apex` and `eave_end_point` and projects them to 3D using provided (also noisy) monocular depth.
|
19 |
-
2. The vertices are connected using the same segmentation, by checking for edges classes to be present - `['eave', 'ridge', 'rake', 'valley']`.
|
20 |
-
3. All the "per-image" vertex predictions are merged in 3D space if their distance is less than threshold.
|
21 |
-
4. All vertices, which have zero connections, are removed.
|
22 |
-
|
23 |
-
|
24 |
-
## Example on the training set
|
25 |
-
|
26 |
-
See in [notebooks/example_on_training.ipynb](notebooks/example_on_training.ipynb)
|
27 |
|
28 |
---
|
29 |
license: apache-2.0
|
|
|
7 |
|
8 |
- `script.py` - the main file, which is run by the competition space. It should produce `submission.parquet` as the result of the run.
|
9 |
- `hoho.py` - the file for parsing the dataset at the inference time. Do NOT change it.
|
10 |
+
- `feature_solution.py` - contains the implementation of ours method
|
11 |
- other `*.py` files - helper i/o and visualization utilities
|
12 |
- `packages/` - the directory to put python wheels for the custom packages you want to install and use.
|
13 |
|
14 |
## Solution description
|
15 |
|
16 |
+
The solution is based on 2D features and line matching.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
---
|
19 |
license: apache-2.0
|