Skip to content
Merged
Show file tree
Hide file tree
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
17 changes: 13 additions & 4 deletions docs_src/use-cases/automated-self-checkout/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,19 @@ Example: make run-demo REGISTRY=false
{"objects":[{"detection":{"bounding_box":{"x_max":1.0,"x_min":0.6974737628926411,"y_max":0.8381138710318847,"y_min":0.44749696271196093},"confidence":0.7188630104064941,"label":"person","label_id":0},"h":422,"region_id":576,"roi_type":"person","w":581,"x":1339,"y":483}],"resolution":{"height":1080,"width":1920},"timestamp":133305076}
```

8. Stop the demo using docker compose down
```bash
make down
```
8. Stop the containers:

When pre-built images are used-

```bash
make down
```

When images are built locally-

```bash
make down REGISTRY=false
```

## [Proceed to Advanced Settings](advanced.md)

Expand Down
11 changes: 10 additions & 1 deletion docs_src/use-cases/loss-prevention/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,18 @@ Example: make run-lp REGISTRY=false

```

9. Stop the demo using docker compose down
9. Stop the containers:

When pre-built images are pulled-

```bash
make down-lp
```

When images are built locally-

```bash
make down-lp REGISTRY=false
```

## [Proceed to Advanced Settings](advanced.md)
7 changes: 6 additions & 1 deletion docs_src/use-cases/order-accuracy/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,14 @@ Example: make run-demo REGISTRY=false

r<time>_gst.jsonl

8. Stop the demo using docker compose down
8. Stop the containers:
When pre-built images are pulled-
```bash
make down
```
When images are built locally-
```bash
make down REGISTRY=false
```

## [Proceed to Advanced Settings](advanced.md)
Loading