mirror of https://github.com/koide3/small_gicp.git
Compare commits
2 Commits
8e665814a9
...
ff63d5ef76
| Author | SHA1 | Date |
|---|---|---|
|
|
ff63d5ef76 | |
|
|
13e0a75cc1 |
|
|
@ -23,7 +23,7 @@ jobs:
|
|||
- name: Install Dependencies
|
||||
run: |
|
||||
sudo apt-get -y update
|
||||
sudo apt-get install --no-install-recommends -y build-essential cmake python3-pip pybind11-dev libeigen3-dev libfmt-dev libtbb-dev libomp-dev libpcl-dev libgtest-dev lcov
|
||||
sudo apt-get install --no-install-recommends -y build-essential cmake python3-pip pybind11-dev libeigen3-dev libfmt-dev libtbb-dev libomp-dev libpcl-dev libgtest-dev lcov ninja-build
|
||||
pip install -U setuptools pytest pytest-cov numpy scipy
|
||||
|
||||
- name: Build (C++)
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ jobs:
|
|||
- name: Install Dependencies
|
||||
run: |
|
||||
sudo apt-get -y update
|
||||
sudo apt-get install --no-install-recommends -y build-essential cmake python3-pip pybind11-dev libeigen3-dev libfmt-dev libtbb-dev libomp-dev libpcl-dev libgtest-dev
|
||||
sudo apt-get install --no-install-recommends -y build-essential cmake python3-pip pybind11-dev libeigen3-dev libfmt-dev libtbb-dev libomp-dev libpcl-dev libgtest-dev ninja-build
|
||||
pip install -U setuptools pytest numpy scipy
|
||||
|
||||
- name: Build
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||
RUN apt-get update && apt-get install --no-install-recommends -y \
|
||||
&& apt-get install --no-install-recommends -y \
|
||||
wget nano build-essential git cmake python3-dev python3-pip pybind11-dev \
|
||||
libeigen3-dev libomp-dev
|
||||
libeigen3-dev libomp-dev ninja-build
|
||||
|
||||
RUN mkdir -p ~/.config/pip
|
||||
RUN echo "[global]\nbreak-system-packages=true" > ~/.config/pip/pip.conf
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||
RUN apt-get update && apt-get install --no-install-recommends -y \
|
||||
&& apt-get install --no-install-recommends -y \
|
||||
wget nano build-essential git cmake python3-dev python3-pip pybind11-dev \
|
||||
libeigen3-dev libomp-dev
|
||||
libeigen3-dev libomp-dev ninja-build
|
||||
|
||||
RUN apt-get update && apt-get install --no-install-recommends -y \
|
||||
&& apt-get install --no-install-recommends -y \
|
||||
|
|
|
|||
|
|
@ -124,6 +124,7 @@ struct LevenbergMarquardtOptimizer {
|
|||
result.T_target_source = new_T;
|
||||
lambda /= lambda_factor;
|
||||
success = true;
|
||||
e = new_e;
|
||||
|
||||
break;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue