-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NaN values in the data #20
Comments
Hi, the NaN data elements exist in disparity and optical flow images. They do not exist in the input RGB images. |
Hello, I am also curious about the processing of NaN dataset. In order to know the reason, I also randomly select the pixels(259200 from 960*540) from the disparity ground truth to make a sparse dataset from the sceneflow dataset. The same problem occurs, the training output is : I use the DispNetCorr1D model to train the dataset. |
I found that PSMNet is avoiding the effect of Nan values in the data by mask when calculating the loss @whuwuteng |
Thank you for your reply @Baboom-l . |
I went to check this out and according to nikolausmayer's reply it should simply ignore the pixels, and the 77QIQI description probably refers to replacing Nan's place with the value of the maximum disparity in GT or in cost volume, but I'm not sure about that. @whuwuteng |
Yes, I finally understood the issue when converting my dataset into the DispNet dataset, they use the maximum for the Nan value, so I do the same thing when randomly selecting the pixels. Anyway, thank you very much for your reply @Baboom-l . |
Hello,
I see that Nan exists in the data in the FAQ of the website of the dataset. Do I want to know whether the Nan value exists in disparity or input image?How do you handle these error values in the dataset?
The text was updated successfully, but these errors were encountered: