-
Notifications
You must be signed in to change notification settings - Fork 66
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
About feature detection FAIL #77
Comments
@wenbowen123 Hi,I followed your steps and tried the NOCS and YCBInEOAT datasets respectively, but there was a problem of feature detection fail. Do you know where the problem is? |
Can you make sure your depth image is in the right format? You can enable higher debug level to dump the point cloud and viz them. |
Line 118 in 5f87ddf Before finding feature correspondence, can you check if the depth image values are normal? I remember there were some similar issues previously and it was because of the depth are all zeros. |
@wenbowen123 Hi, thank you for your help, I have already solve the problem about feature detection FAIL. I update CUDA version from 9.0 to 11.3. But now, there are some other problems, about FindNN too few match. About the depth image values,like this: My server is two 3090, CUDA version is 11.3. I also modified add_definitions(-DNO_OPENCV_CUDA=1), but it has no effect. |
According to the current results, it seems that the values of ptA.z and ptB.z are too large, causing all of them to be filtered out. I don't know why. |
can you check if the depth is like this at the beginning (after read), or is it changed to such somewhere? |
@wenbowen123 Hi, |
your printing format is not right. Can you replace your |
it seems like the depth is already 0 at the line you printed. Can you trace back where it happened like I said?
|
I have solved all the problems. Thanks for your help ! My GPU is 3090, I would like to offer a possible solution to this problem: Modify the CMakeLists.txt file: From: To: |
The text was updated successfully, but these errors were encountered: