-
Notifications
You must be signed in to change notification settings - Fork 120
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
How make custom data? #142
Comments
It's hard to tell from the limited info. A common pitfall is the depth data format, which should be uint16 PNG. Or you can use raw npy file and change the loading in the code. |
i made it Y16 format. it is 16bit image. so it is not problem. |
depth should not depend on masks, so no. You might want to make sure after you read the depth image using the code, you are getting the right numbers. Identity is certainly not right. Please check their manual/github. |
suppose you have the depth data in meters, you can save to PNG by |
How did you obtain this image? |
I use depth estimate model. but it doesn't look like your depth image. did you do postprocess your depth image? |
the depth image are the raw data from depth camera. If you use depth estimation model, make sure you are getting the metric depth. |
I use Zoe Depth metric depth model. but it doesn't work well in BundleSDF. I try tunning parameter RANSAC, or zfar, or depth weight, but it doesn't work. what shoud i do? |
using monocular depth estimation to get depth could be highly uncertain for both metric depth and relatively depth quality. I'd suggest to try with a depth camera. |
Is this problem not related to the performance of the depth estimation model? Is there any way to solve uncertified depth? |
I have another question. how can i evaluate a custom data result? How can i make gt? I always feel grateful for your kind answer. |
from the GUI, can you tell if the tracking is lost? |
|
@JINAOLONG Hi, a solution works for me is to modify the get_depth() in YcbineoatReader class to make sure that depth ranges from 0 to 1: |
@lsy-92 Hi bro, how did you make masks for your data? Making a single mask as desribed in authors' paper? Or making mask for each rgb image? |
the depth does not have to be in [0,1]. You should make sure it's in metric scale. You can use SAM2 to create masks. |
Hello!
Thanks to your great job!
i try to make a custom data.
i already made color image, depth image using Orbbec Femto.
then i make mask image using XMem.
But, BundleSDF doesn't work.
I don't understand other issue. what is different with your custom milk data?
The text was updated successfully, but these errors were encountered: