Ran Cheng

Results 15 comments of Ran Cheng

![plabeler_ui1](https://user-images.githubusercontent.com/2719771/79693634-b5056d80-8239-11ea-908b-6e84d1f2e5ff.PNG) I build them with mingw64 but still, the large margin on top exists, I reckon it could be the QGLWidget related problem, since this class was depreciated for a...

![horizontal_plabeler](https://user-images.githubusercontent.com/2719771/79693827-f21e2f80-823a-11ea-9a9b-277162914e25.PNG) When I change the layout outside the `mViewPortXYZ` into `QHBoxLayout`, it immediately shift the margin to the left... ```xml ```

have a look here guys: `ORB-SLAM3`'s `YAML` file has the following unit: `rad/s^0.5` and `m/s^1.5`: you probably calibrated the `noise density` with `kalibr`, please make sure you convert it back...

@wwendy233 are you calibrating the imu with this tool: [imu_utils](https://github.com/gaowenliang/imu_utils) ?

@kintzhao you probability built your `Sophus` library with an older version. simply modify your code to `#include ` rather than `#include ` similar to `se2.hpp` and other modules in `Sophus`....

After tried to refactor this whole project, I found it's impossible to migrate into older Sophus version, simply build a newer `Sophus` and don't waste your time.

@log00544 is right, and please note that if you want to build Sophus against Eigen 3.3, remember to build ceres against eigen3.3 first.

> Hi @jimaldon and @NikolausDemmel I think the -O2 or -O3 is missing in the cmakelist which probably causes poor performance when running the examples. was trying to open a...

what I did in my docker is to do this: ```shell sed -i '6i INCLUDE_DIRECTORIES\(\"/root/opencv_contrib-3.4.1/modules/xfeatures2d/include\"\)' /root/opencv/modules/stitching/CMakeLists.txt ``` Please modify the line number `6i` and `/root/opencv_contrib-3.4.1` based on your custom version.