fast
fast copied to clipboard
FAST corner detector by Edward Rosten
In file:src/faster_corner_10_sse.cpp > home/sam/lib/fast/src/faster_corner_10_sse.cpp: In function ‘void fast::faster_corner_detect_10(const fast_byte*, int, int, int, short int, std::vector&)’: > /home/sam/lib/fast/src/faster_corner_10_sse.cpp:22:30: error: ISO C++17 does not allow ‘register’ storage class specifier [-Werror=register] > 22...
I am trying to build on a Aarch64 architecture: ``` git clone https://github.com/uzh-rpg/fast.git cd fast mkdir build cd build cmake .. make ``` I get the following error on make:...
Turns out that I needed to use fast for one of the other ROS packages that I am trying to use. When I do a catkin_make I get an error...
Is there a particular version of `opencv` that is recommended? This used to work fine with `opencv 3.1.0` but an upgrade to `opencv 3.4` causes weird bus error.
Clang does not recognize `-Wno-unused-but-set-variable` and thus fails to compile. `error: unknown warning option '-Wno-unused-but-set-variable'; did you mean '-Wno-unused-const-variable'? [-Werror,-Wunknown-warning-option]` I fixed it by removing `-Wno-unused-but-set-variable` in `CMakeLists.txt`. This isn't...
An `INCLUDE_DIRECTORIES(${OpenCV_INCLUDE_DIRS})` is needed after https://github.com/uzh-rpg/fast/blob/master/CMakeLists.txt#L48.