From 72139ace22c0fdcc4a0d382acd1761511f3ca04d Mon Sep 17 00:00:00 2001 From: gineshidalgo99 Date: Sun, 27 Aug 2017 16:13:26 -0400 Subject: [PATCH] Added output generation examples 2 --- doc/demo_overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/demo_overview.md b/doc/demo_overview.md index dc248ccb..412197cf 100644 --- a/doc/demo_overview.md +++ b/doc/demo_overview.md @@ -23,7 +23,7 @@ See [doc/installation.md#quick-start](./installation.md#quick-start). ## Basic Output Saving -The following example runs the demo video `video.avi`, renders image frames on `output/result.avi`, and outputs JSON files in `output/`: +The following example runs the demo video `video.avi`, renders image frames on `output/result.avi`, and outputs JSON files in `output/`. Note: see [doc/output.md](./output.md) to understand the format of the JSON files. ``` ./build/examples/openpose/openpose.bin --video examples/media/video.avi --write_video output/result.avi --write_keypoint_json output/ ``` @@ -31,7 +31,7 @@ The following example runs the demo video `video.avi`, renders image frames on ` ## Basic Output Saving with No Visualization -The following example runs the demo video `video.avi` and outputs JSON files in `output/`: +The following example runs the demo video `video.avi` and outputs JSON files in `output/`. Note: see [doc/output.md](./output.md) to understand the format of the JSON files. ``` # Only body ./build/examples/openpose/openpose.bin --video examples/media/video.avi --write_keypoint_json output/ --no_display --render_pose 0 -- GitLab