Skip to content

Commit caa1d8d

Browse files
Update readme - disable pred flipping (#1180)
* Update readme - disable pred flipping Signed-off-by: Andres <[email protected]> * Update README.md Signed-off-by: Andres <[email protected]> Co-authored-by: SACHIDANAND ALLE <[email protected]>
1 parent 3148ff0 commit caa1d8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/cvat/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ docker exec -it cvat bash -ic 'python3 ~/manage.py createsuperuser'
3636

3737
wget https://github.com/nuclio/nuclio/releases/download/1.5.16/nuctl-1.5.16-linux-amd64
3838
chmod +x nuctl-1.5.16-linux-amd64
39-
mv nuctl-1.5.16-linux-amd64 ~/.local/bin/nuctl
39+
sudo mv nuctl-1.5.16-linux-amd64 /usr/bin/nuctl
4040
```
4141

4242
## Installation

plugins/cvat/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def handler(context, event):
5959

6060
flip_image = strtobool(os.environ.get("MONAI_LABEL_FLIP_INPUT_IMAGE", "true"))
6161
flip_points = strtobool(os.environ.get("MONAI_LABEL_FLIP_INPUT_POINTS", "true"))
62-
flip_output = strtobool(os.environ.get("MONAI_LABEL_FLIP_OUTPUT_POINTS", "true"))
62+
flip_output = strtobool(os.environ.get("MONAI_LABEL_FLIP_OUTPUT_POINTS", "false"))
6363

6464
if flip_image:
6565
image_np = np.moveaxis(image_np, 0, 1)

0 commit comments

Comments
 (0)