-
Notifications
You must be signed in to change notification settings - Fork 24
Description
@darglein
Thank you very much for your work, I read the snake-slam paper and thought it was great, but when I compile the program, there are various errors, some internal errors, such as in SnakeGlobal.h:
using Vec4f = Saiga::Vec4f;
using Vec3f = Saiga::Vec3f;
using Vec2f = Saiga::Vec2f;
error: no type named 'Vec4f' in namespace 'Saiga'
Next:
inline Intrinsics4& K = mono_intrinsics.model.K;
error: unknown type name 'Intrinsics4'
Intrinsics4 is a file name, but it is used as a definition variable in the program, which is obviously wrong. I changed it to the following:
inline IntrinsicsPinholed& K = mono_intrinsics.model.K;
The program runs normally
In addition to these bugs, there are some bugs in FeatureDetector.h and FeatureDetector.cpp. So I would like to ask, is your program uploading the full version or the correct version?
Had very high expectations for the snake-slam framework because of your paper and seeing your framework in a SenseTime competition, but the bugs did disappoint me a bit,so looking forward to your early reply!