arthurchen0518 / DirectionNet

Wide-Baseline Relative Camera Pose Estimation with Directional Learning (CVPR 2021)
MIT License
34 stars 4 forks source link

Where is the checkpoint and training set ? #2

Closed kkennethwu closed 2 years ago

kkennethwu commented 2 years ago

Hello! I'm trying to use your code for some application. In your instruction for training rotation, what are the and ? If I use "MatterportA_checkpoints", where are they?

Thanks a lot !!

arthurchen0518 commented 2 years ago
is the directory you create to store the TensorFlow checkpoints and event files. is the directory to the training data. "MatterportA_checkpoints" contains the TensorFlow checkpoints that we saved when we were training the model on the MatterportA dataset in the paper. Right now, due to the large size of the dataset, we haven't been able to release it. Our datasets are generated using `generate_random_views `in dataset.py from [Matterport3D](https://niessner.github.io/Matterport/) given the panorama images and camera labels. You can also use your own stereo dataset to train the model as long as the stereo images have the same intrinsic.
kkennethwu commented 2 years ago

Oh ! I got it. Thanks for your help !!!