Skip to content

airvlab/guide3d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Guide3D

TODO's

  • Clean and document the segmentation code
  • Clean and document the image based code
  • Clean the repository
  • Add quick-start
  • Add detailed explanation on README
  • Explain the folder structure

Quickstart

from torch.utils import data

from guide3d.dataset.image.segment import Guide3D

dataset = Guide3D(
    dataset_path="~/datasets/test",
    annotations_file="raw.json",
    split="train",
    split_ratio=(0.8, 0.1, 0.1),
    download=True,
)

dataloader = data.DataLoader(dataset, batch_size=1)

batch = next(iter(dataloader))
for batch in dataloader:
    img, mask = batch
    print(img.shape)
    print(mask.shape)
    exit()

Reference

If you are using our dataset, please cite us:

@article{jianu2024guide3d,
  title={Guide3D: A Bi-planar X-ray Dataset for 3D Shape Reconstruction},
  author={Jianu, Tudor and Huang, Baoru and Nguyen, Hoan and Bhattarai, Binod and Do, Tuong and Tjiputra, Erman and Tran, Quang and Berthet-Rayne, Pierre and Le, Ngan and Fichera, Sebastiano and others},
  journal={arXiv preprint arXiv:2410.22224},
  year={2024}
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages