Skip to content

Commit

Permalink
ajout avertissement temps de build
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSpaar committed Oct 17, 2023
1 parent a7ee3ab commit 53cefe2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions _docs/odometrie/camera.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,23 @@ Pour utiliser la [librairie ArUCO](https://github.com/RobotechNancy/Odometrie/tr
- La librairie OpenCV avec OpenCV contrib :

```bash
# svn (subversion) permet de ne télécharger que les modules opencv nécessaires
sudo apt install subversion libapache2-mod-svn cmake

git clone https://github.com/opencv/opencv.git
mkdir opencv/build && cd opencv/build && mkdir modules

sudo apt-get install subversion
sudo apt-get install libapache2-mod-svn
# ou sudo dnf install svn
svn export https://github.com/opencv/opencv_contrib/trunk/modules/aruco
mv aruco modules

sudo apt install cmake
cmake -DOPENCV_EXTRA_MODULES_PATH=./modules ..
sudo make install -j$(nproc)
```

{: .warning }
> Le processus d'installation peut prendre plusieures heures sur une Raspberry Pi.
> Il est aussi possible de cross-compiler OpenCV (non testé).
### Calibration

Pour avoir une meilleure détection, il est nécessaire de calibrer la caméra :
Expand Down

0 comments on commit 53cefe2

Please sign in to comment.