1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

3Dカメラ(ステレオ、Lidar, ToF含む)Advent Calendar 2024

Day 3

Docker環境でZED SDK を使う2つの方法

Last updated at Posted at 2024-11-21

方法1:ZED SDKを既に含むDocker Imageを使う方法

Dockerfile の冒頭行

FROM stereolabs/zed:4.2-py-devel-jetson-jp5.1.0

方法2:Pytorchを含むDocker Imageの中でDockerfile の中でZED SDK のインストーラーを実行する方法

例:
https://github.com/katsunori-waragai/yolox-zed-sdk/blob/main/pytorch_yolox/Dockerfile

Dockerfileの一部

ENV ZED_SDK_INSTALLER=ZED_SDK_Tegra_L4T35.2_v4.2.2.zstd.run
RUN wget -O ${ZED_SDK_INSTALLER} https://download.stereolabs.com/zedsdk/4.2/l4t35.2/jetsons
RUN chmod +x ${ZED_SDK_INSTALLER}
RUN apt install zstd
RUN ./${ZED_SDK_INSTALLER} -- silent

DockerImageを選択するために必要なこと

ZED SDK のインストーラー

ZED SDK installer
ここから、ターゲット環境とZED SDKのバージョンとの組み合せでダウンロード先を選んでください。

試行錯誤の今の状況

  • pytorchが動くDockerImage を使った方が設定が楽そうだ。
    ZED-SDK のインストールだけの部分は、比較的トラブルを生じにくい。
  • 一方、ZED-SDKをDockerImageに含めた場合には、CUDA, pytorch の設定を自力で行うことになる。
  • こちらの場合、まだ解決できないエラーで苦しんでいる。
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?