Skip to content

Commit bb3b559

Browse files
authored
Update docs (#31)
Signed-off-by: Keegan Go <[email protected]>
1 parent c7dbbe4 commit bb3b559

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Perception Challenge For Bin-Picking
22

3-
[![build](https://github.com/Yadunund/ibpc/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/Yadunund/ibpc/actions/workflows/build.yaml)
4-
[![style](https://github.com/Yadunund/ibpc/actions/workflows/style.yaml/badge.svg?branch=main)](https://github.com/Yadunund/ibpc/actions/workflows/style.yaml)
3+
[![build](https://github.com/Yadunund/bpc/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/Yadunund/bpc/actions/workflows/build.yaml)
4+
[![style](https://github.com/Yadunund/bpc/actions/workflows/style.yaml/badge.svg?branch=main)](https://github.com/Yadunund/bpc/actions/workflows/style.yaml)
55

66
For more details on the challenge, [click here](https://bpc.opencv.org/).
77

@@ -60,17 +60,17 @@ Participants are expected to modify the estimator code to implement their soluti
6060

6161

6262
```bash
63-
mkdir -p ~/ws_ibpc/src
64-
cd ~/ws_ibpc/src
65-
git clone https://github.com/Yadunund/ibpc.git
63+
mkdir -p ~/ws_bpc/src
64+
cd ~/ws_bpc/src
65+
git clone https://github.com/Yadunund/bpc.git
6666
```
6767

6868
## Build
6969

7070
### Build the ibpc_pose_estimator
7171

7272
```bash
73-
cd ~/ws_ibpc/src/ibpc
73+
cd ~/ws_bpc/src/bpc
7474
docker buildx build -t ibpc:pose_estimator \
7575
--file ./Dockerfile.estimator \
7676
--build-arg="MODEL_DIR=models" \
@@ -80,7 +80,7 @@ docker buildx build -t ibpc:pose_estimator \
8080
### Build the ibpc_tester
8181

8282
```bash
83-
cd ~/ws_ibpc/src/ibpc
83+
cd ~/ws_bpc/src/bpc
8484
docker buildx build -t ibpc:tester \
8585
--file ./Dockerfile.tester \
8686
.
@@ -95,14 +95,14 @@ docker run --init --rm --net host eclipse/zenoh:1.1.1 --no-multicast-scouting
9595
```
9696

9797
### Run the pose estimator
98-
We use [rocker](https://github.com/osrf/rocker) to add GPU support to Docker containers. To install rocker, run `pip install rocker` on the host machine.
98+
We use [rocker](https://github.com/osrf/rocker) to add GPU support to Docker containers. To install rocker, run `pip install rocker` on the host machine.
9999
```bash
100100
rocker --nvidia --cuda run --network=host ibpc:pose_estimator
101101
```
102102

103103
### Run the tester
104104

105-
> Note: Substitute the <PATH_TO_DATASET> with the location of the IPD dataset you've downloaded.
105+
> Note: Substitute the <PATH_TO_DATASET> with the directory that contains the [ipd](https://huggingface.co/datasets/bop-benchmark/ipd/tree/main) dataset.
106106
107107
```bash
108108
docker run --network=host -e BOP_PATH=/opt/ros/underlay/install/datasets -e SPLIT_TYPE=val -v<PATH_TO_DATASET>:/opt/ros/underlay/install/datasets -it ibpc:tester

ibpc_py/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Industrial Bin Picking Challenge (IBPC)
1+
# Perception Challenge For Bin-Picking
22

3-
This is the python entrypoint for the Industrial Bin Picking Challenge
3+
This is the python entrypoint for the Bin Picking Challenge
44

55
## Usage
66

@@ -22,17 +22,17 @@ Run tests against a dataset
2222
In a virtualenv
2323
`pip install ibpc`
2424

25-
Temporary before rocker release of https://github.com/osrf/rocker/pull/317/
25+
Temporary before rocker release of https://github.com/osrf/rocker/pull/317/
2626
`pip uninstall rocker && pip install git+http://github.com/osrf/rocker.git@console_to_file`
2727

2828

2929
### Nvidia Docker (optoinal)
30-
Make sure nvidia_docker is installed if you want cuda.
30+
Make sure nvidia_docker is installed if you want cuda.
3131

3232
## Release instructions
3333

3434
```
3535
rm -rf dist/*
3636
python3 -m build --sdist .
3737
twine upload dist/*
38-
```
38+
```

0 commit comments

Comments
 (0)