Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding missed steps to fix issue in the tutorial for simple imaging app #496

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/source/getting_started/tutorials/simple_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ pip install scikit-image, setuptools, Pillow, matplotlib
# See the input file exists in the default `input`` folder in the current working directory
ls examples/apps/simple_imaging_app/input/

# Set the environment variable for the input, with relative path in this example.
export HOLOSCAN_INPUT_PATH="./examples/apps/simple_imaging_app/input"

# Env var can also be used to direct the output instead of using the default folder as in the following steps
export HOLOSCAN_OUTPUT_PATH="./output_simple_imaging"

# Local execution of the app with output file in the `output` folder in the current working directory
python examples/apps/simple_imaging_app/app.py

Expand All @@ -72,7 +78,7 @@ docker run --rm simple_app-x64-workstation-dgpu-linux-amd64:latest show

# Run the MAP container image with MONAI Deploy MAP Runner, with a cleaned output folder
rm -rf output
monai-deploy run simple_app-x64-workstation-dgpu-linux-amd64:latest -i input -o output
monai-deploy run simple_app-x64-workstation-dgpu-linux-amd64:latest -i $HOLOSCAN_INPUT_PATH -o output

# Check the output file
ls output
Expand Down
Loading