Skip to content

Commit

Permalink
Fix to OpenCV 420
Browse files Browse the repository at this point in the history
  • Loading branch information
BAILOOL committed Oct 8, 2024
1 parent 91da612 commit bf8c975
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Toolbox described in the paper ["MC-Calib: A generic and robust calibration tool

# Installation

Requirements: Ceres, Boost, OpenCV 4.5.5, c++17
Requirements: Ceres, Boost, OpenCV 4.2.0, c++17

For Windows users, follow [this installation guide](/docs/Windows.md)

Expand All @@ -20,8 +20,8 @@ There are several ways to get the environment ready. Choose any of them:
- Pull the image:

```bash
docker pull bailool/mc-calib-prod:opencv455 # production environment
docker pull bailool/mc-calib-dev:opencv455 # development environment
docker pull bailool/mc-calib-prod:opencv420 # production environment
docker pull bailool/mc-calib-dev:opencv420 # development environment
```

- Run pulled image (set `PATH_TO_REPO_ROOT` and `PATH_TO_DATA` appropriately):
Expand All @@ -31,14 +31,14 @@ There are several ways to get the environment ready. Choose any of them:
-ti --rm \
--volume="$PATH_TO_REPO_ROOT:/home/MC-Calib" \
--volume="$PATH_TO_DATA:/home/MC-Calib/data" \
bailool/mc-calib-prod:opencv455
bailool/mc-calib-prod:opencv420
```

2. It is also possible to build the docker environment manually (see [instructions](/docs/Docker.md))

3. Alternatively, every dependency can be installed independently without docker:

- [Install](https://docs.opencv.org/4.5.5/d7/d9f/tutorial_linux_install.html) OpenCV 4.5.5. Either instal system-wide with `sudo make install` or link to your `build` in `CmakeLists.txt`.
- [Install](https://docs.opencv.org/4.2.0/d7/d9f/tutorial_linux_install.html) OpenCV 4.2.0. Either instal system-wide with `sudo make install` or link to your `build` in `CmakeLists.txt`.

- Follow [installation guidelines](http://ceres-solver.org/installation.html#linux) to install Ceres.

Expand Down

0 comments on commit bf8c975

Please sign in to comment.