I have recently started to learn more about supervised monocular depth estimation. I used the NYU-V2 dataset for it. it is easy to design a torch loader and pre-process the data since the structure of the dataset is quite clear. But in the case of Kitti dataset, it is very confusing. Is it possible to use Kitti for supervised monocular depth estimation? I found a torch loader for kitt here: https://github.com/joseph-zhang/KITTI-TorchLoader however, I don't understand how to use it for depth estimation using the Kitti dataset. the folder structure is quite different!. My plan is to train a simple CNN using a supervised mono depth approach.
Is it possible to use Kitti dataset for supervised monocular depth estimation?
734 Views Asked by PNF At
2
There are 2 best solutions below
3
Ivan
On
The repository states that the dense depth map are completions of the lidar ray maps and projected and aligned with the raw KITTI dataset.
Andreas Geiger et al., Vision meets Robotics: The KITTI Dataset
Looking at the dev toolkit for KITTI, the get_depth function receives as an argument the camera id of the camera the Velodyne points are projected onto. This function is called here the dataloader with cam=self.cam which is set as an attribute to the Kittiloader instance.
In other words, you can choose on which camera the Velodyne points and depth completion is performed. By default cam is set to 2, which means cam_2, the left camera view.
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in PYTORCH
- Pytorch install with anaconda error
- How should I save the model of PyTorch if I want it loadable by OpenCV dnn module
- PyTorch: memorize output from several layers of sequencial
- in Pytorch, restore the model parameters but the same initial loss
- Seq2seq pytorch Inference slow
- Why does autograd not produce gradient for intermediate variables?
- pytorch inception model outputs the wrong label for every input image
- "expected CPU tensor(got CUDA tensor)" error for PyTorch
- Float16 (HalfTensor) in pytorch + cuda
- Access parameter names in torch
- Efficient way of calculating sum of unequal sized chunks of tensor in Pytorch
- what is the equivalent of theano.tensor.clip in pytorch?
- How can I do scatter and gather operations in NumPy?
- How do I write a PyTorch sequential model?
- How to combine multiple models together?
Related Questions in PYTORCH-DATALOADER
- getting error '"typeerror 'int' object is not callable" in code for NLP
- Pytorch-Dataloader throws multiprocessing exception when deployed inside gunicorn/flask server
- Inputing a grayscale image to a 3 channel torch model using dataloaders
- TypeError: default_collate: batch must contain tensors, numpy arrays, numbers, dicts or lists; found object
- How to add a new attribute to a torch_geometric.data Data object element?
- Using IterableDataset from Pytorch in Huggingface
- data augmentation using pytorch : making additional data
- Can't convert cuda:0 device type tensor to numpy When trying to enumerate through torch.utils.data.DataLoader object
- How can I save a customized version of CIFAR-10 from Pytorch code and use it in TensorFlow Colab code?
- Should the shuffle=True argument be used during training in torch.utils.data.DataLoader() when we have time series data?
- Create a custom data and data loader object in pytorch
- Dataloader with shuffle=False, but images order change in each epoch
- IterableDataset on multiple files
- Stuck while iterate through Dataloader
- combine two columns one from math feature extraction and the second from base BERT
Related Questions in KITTI
- How to label my Lidar data based on Kitti format?
- ICP to trajectory estimation, transformation matrix different than groundtruth (point clouds)
- Kitti dataset get rgb data for each point in points clouds from corresponding image
- How much ground truth error does the KITTI dataset have?
- Post-processing of Kitti dataset, bin, and pcd data
- How to train on single image depth estimation on KITTI dataset with masking method
- Instance annotations in KITTI-360 2D instacne datasets
- Visual Odometry, Dataset
- 3D annotated images to 3D KITTI Format
- how to add custom field to annotation in Yolo?
- Is it possible to use Kitti dataset for supervised monocular depth estimation?
- Are the elements of the Pose Matrix in Kitti Odometry dataset absolute or relative?
- How to convert Opencv single camera calibration matrix to Kitti format?
- Labeled CAR point cloud KITTI
- How to label my own point cloud data to have the 3D training labels (.txt) files like KITTI 3D object detection dataset?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think it is plausible since the KITTI dataset contains depth maps with the corresponding raw LiDaR scans and RGB images (left-image, right-image and depth map) (KITTI). I don't know how exactly the github repo works but the dataset/dataloader should be in a similar format. However, taking a look on the repo files, I think you need only to install the library and then pass as input the root_path of your dataset and the pytorch image transformations.