Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -43,10 +43,8 @@ coords = outputs["coords"] # (N, 4) sparse voxel coords
|
|
| 43 |
probs = outputs["affordance"][0]["probs"] # (N,) per-voxel heatmap in [0, 1], paired with coords
|
| 44 |
```
|
| 45 |
|
| 46 |
-
> **Need mesh / gaussian?** Pass `formats=["mesh", "gaussian"]`
|
| 47 |
>
|
| 48 |
-
> **Reconstruction only?** Drop `queries`
|
| 49 |
-
>
|
| 50 |
-
> **Active view selection.** On by default in `"voxel"` mode (per-pixel raycast, decoder-free). Pass `view_selection_mode="mesh"` for the paper version (SLAT mesh decode + nvdiffrast), or `None` to skip. Candidate poses come from a dataset `transforms.json` (`view_selection_transforms_path=...`, Blender c2w → OpenCV w2c conversion baked in).
|
| 51 |
|
| 52 |
End-to-end examples in the [GitHub repo](https://github.com/chrockey/Affostruction): `examples/affostruction.py` (full pipeline), `examples/reconstruction.py` (reconstruction-only), and `examples/reconstruction_unposed.py` (experimental unposed single-view).
|
|
|
|
| 43 |
probs = outputs["affordance"][0]["probs"] # (N,) per-voxel heatmap in [0, 1], paired with coords
|
| 44 |
```
|
| 45 |
|
| 46 |
+
> **Need mesh / gaussian?** Pass `formats=["mesh", "gaussian"]` — decoding is opt-in.
|
| 47 |
>
|
| 48 |
+
> **Reconstruction only?** Drop `queries`.
|
|
|
|
|
|
|
| 49 |
|
| 50 |
End-to-end examples in the [GitHub repo](https://github.com/chrockey/Affostruction): `examples/affostruction.py` (full pipeline), `examples/reconstruction.py` (reconstruction-only), and `examples/reconstruction_unposed.py` (experimental unposed single-view).
|