From 86f8364c4047a9c7a759fc9209db289ed0a5e720 Mon Sep 17 00:00:00 2001 From: Yoriyuki Kitta Date: Mon, 2 Nov 2020 19:12:00 +0900 Subject: [PATCH 1/2] Improve build sample instruction --- README.jp.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.jp.md b/README.jp.md index 6ffde36..d50cd04 100644 --- a/README.jp.md +++ b/README.jp.md @@ -47,7 +47,7 @@ $ make ``` $ pwd .../libSGM -$ cd build +$ ( cd build && cmake .. -DENABLE_SAMPLES=on && make ) $ cd sample/movie/ $ ./stereo_movie left image path format: 左側画像入力時に使用するファイルパスのフォーマット diff --git a/README.md b/README.md index 42aab71..a91838d 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ $ make ``` $ pwd .../libSGM -$ cd build +$ ( cd build && cmake .. -DENABLE_SAMPLES=on && make ) $ cd sample/movie/ $ ./stereo_movie left image path format: the format used for the file paths to the left input images From d4d7a53ff2edd246a6cf5615f2a6a26b6b5a4b61 Mon Sep 17 00:00:00 2001 From: Yoriyuki Kitta Date: Mon, 16 Nov 2020 16:47:07 +0900 Subject: [PATCH 2/2] Fixed instruction --- README.jp.md | 4 +++- README.md | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.jp.md b/README.jp.md index d50cd04..e5895f3 100644 --- a/README.jp.md +++ b/README.jp.md @@ -47,7 +47,9 @@ $ make ``` $ pwd .../libSGM -$ ( cd build && cmake .. -DENABLE_SAMPLES=on && make ) +$ cd build +$ cmake .. -DENABLE_SAMPLES=on +$ make $ cd sample/movie/ $ ./stereo_movie left image path format: 左側画像入力時に使用するファイルパスのフォーマット diff --git a/README.md b/README.md index a91838d..4ddf1ed 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,9 @@ $ make ``` $ pwd .../libSGM -$ ( cd build && cmake .. -DENABLE_SAMPLES=on && make ) +$ cd build +$ cmake .. -DENABLE_SAMPLES=on +$ make $ cd sample/movie/ $ ./stereo_movie left image path format: the format used for the file paths to the left input images