koide3
koide3
@junwei1999 Can you print out the number of points just before running `example1`? https://github.com/koide3/small_gicp/blob/2c5e9e6092f06bd8b4a0c618c9714e39e4b315dc/src/example/01_basic_registration.cpp#L66
It seems that there are some issues about the C++ version. Can you try adding `set(CMAKE_CXX_STANDARD 17)` in `CMakeLists.txt`?
Sorry!! We are reducing the support for fast_gicp. Please consider using [small_gicp](https://github.com/koide3/small_gicp), a new faster library with better portability. Meanwhile, feel free to open a PR if you have any...
Sorry!! We are reducing the support for fast_gicp. Please consider using [small_gicp](https://github.com/koide3/small_gicp), a new faster library with better portability. Meanwhile, feel free to open a PR if you have any...
Sorry for the late response. I think it would be good to add the colormap mode to iridescence. Are you willing to open a PR?
> I'd like to know if GLIM currently supports: > Realsense D435 (depth camera) It depends on if the sensor is equipped with an IMU. GLIM should work for any...
In `TEXTURE_COLOR` mode, alpha values are obtained from the texture data, and material alpha is ignored. You can make textured objects transparent by adjusting the alpha values of texture pixels.
Maybe the version of cmake is too old. I recommend upgrading your ubuntu as Ubuntu 18.04 is no longer supported and it is dangerous to keep using it.
You can customize the scan matching algorithm with [RestrictDoFFactor](https://github.com/koide3/small_gicp/blob/8e665814a9fcbc3b8a3e5bde135917f586abed6e/include/small_gicp/factors/general_factor.hpp#L43) to ignore some dimensions. See [this example](https://github.com/koide3/small_gicp/blob/8e665814a9fcbc3b8a3e5bde135917f586abed6e/src/example/03_registration_template.cpp#L258).
I think your 1x6 Jacobian corresponds to the error function `(err.x + err.y + err.z)^2` while the 4x6 Jacobian corresponds to `err.x^2 + err.y^2 + err.z^2` (the last row is...