Update README.md
Browse files
README.md
CHANGED
@@ -21,4 +21,17 @@ sparse_flow = np.fromfile(data_path + '.bin', dtype=np.float16).reshape(-1, 3)[:
|
|
21 |
sparse_idx = np.fromfile(data_path + '_idx.bin', dtype=np.int32).reshape(-1)
|
22 |
occ_flow[sparse_idx] = sparse_flow
|
23 |
occ_flow = occ_flow.reshape(W, H, Z, 2)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
```
|
|
|
21 |
sparse_idx = np.fromfile(data_path + '_idx.bin', dtype=np.int32).reshape(-1)
|
22 |
occ_flow[sparse_idx] = sparse_flow
|
23 |
occ_flow = occ_flow.reshape(W, H, Z, 2)
|
24 |
+
```
|
25 |
+
|
26 |
+
|
27 |
+
## Citation
|
28 |
+
|
29 |
+
```bibtex
|
30 |
+
@InProceedings{li2024viewformer,
|
31 |
+
title={ViewFormer: Exploring Spatiotemporal Modeling for Multi-View 3D Occupancy Perception via View-Guided Transformers},
|
32 |
+
author={Jinke Li and Xiao He and Chonghua Zhou and Xiaoqiang Cheng and Yang Wen and Dan Zhang},
|
33 |
+
journal={arXiv preprint arXiv:2405.04299},
|
34 |
+
year = {2024},
|
35 |
+
pages = {10684-10695}
|
36 |
+
}
|
37 |
```
|