Skip to content

Commit

Permalink
[TEST] update process_data.sh after testing
Browse files Browse the repository at this point in the history
  • Loading branch information
hollydinkel committed Mar 25, 2024
1 parent 76dbd7c commit 4cadcea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/data_processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ First, install the [Astrobee flight software](https://github.com/nasa/astrobee)

```bash
cd $HOME && mkdir -p change_ws/src && git clone https://github.com/hollydinkel/astrobee_change_detection --recurse-submodules
cd $HOME/change_ws/src/astrobee_change_detection && ./process_data.sh
```

Follow the steps in the provided `process_data.sh` file to download raw `.bag` data and process it into a change detection-compatible dataset. Note that the home directory, the change detection catkin workspace, the survey number (e.g., 1, 2, 3), the date (e.g., 20230419), and the robot name (e.g., bsharp) must be specified in the `process_data.sh` script. If the `astrobee` catkin workspace does not build locally, it is possible to do these steps in a docker container where the running container is mounted to a local directory. The provided `process_data.sh` script runs these four steps.
Expand Down
2 changes: 1 addition & 1 deletion fast_change_detection
5 changes: 3 additions & 2 deletions process_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ pip install numpy --upgrade
pip install gdown pyquaternion pandas

# Download data
cd $DATA && gdown https://drive.google.com/uc?id=1qNCRl9XceINrHLFUp4pBti9I4oJO2zf1
cd $DATA
gdown https://drive.google.com/uc?id=1qNCRl9XceINrHLFUp4pBti9I4oJO2zf1
unzip data.zip
cp data/ ../
cp -r data/ ../
rm -rf data/
rm $DATA/data.zip

Expand Down

0 comments on commit 4cadcea

Please sign in to comment.