Open chenxingxin-star opened 2 years ago
I'm sorry, I missed a few notes. You should use my slightly modified RAFT project, that is https://github.com/chenjianqu/RAFT
I'm sorry, I missed a few notes. You should use my slightly modified RAFT project, that is https://github.com/chenjianqu/RAFT
Thank you so much for your quick reply!
when compile the code , I get these two error: first: second:
my tensorRT version is tensorRT8, and my g++ version is g++-10. so why I get the errors when compile? thanks
The first issue seems to be with the TensorRT version, I'm using TensorRT8.0.1 and there is no problem. The second problem is with the GCC version, which requires GCC to support at least C++17.
Or, alternatively, you can modify the code slightly to make the project work.
Or, alternatively, you can modify the code slightly to make the project work.
你好,感谢你的工作!你说你对原RAFT网络进行了一些小修改,能否说一下你具体修改了什么?修改了之后你是重新训练了网络,还是想办法用了原作者提供的权重呢?
hi, thank you for your project! may I ask if you modify the original RAFT Network in order to convert it to onnx ? because I found the input is
fmap1, fmap2 = self.fnet([image1, image2],True)
, but the origin RAFT only input two images without the bool element 'True'. Following the Readme.md, I just get the error below:could you give me some help? if you change the original RAFT code ,could you share what you have changed?