Resolve issue with horizontally spread values that were wrongly identified as events #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Detect vehicles | |
on: | |
push: | |
branches: [ main ] | |
pull_request: {} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up python 3.x | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install requirements | |
run: | | |
pip3 install pandas | |
pip3 install ultralytics | |
pip3 install torch torchvision | |
- name: Process images | |
run: | | |
# create dirs which are in .gitignore | |
mkdir gha/out | |
mkdir gha/out/yolo-pix | |
# copy to root folder so imports work | |
cp gha/process-camera.py . | |
python process-camera.py | |
- name: Upload YOLO figures | |
uses: actions/upload-artifact@v4 | |
with: | |
name: YOLO-figures | |
path: gha/out/yolo-pix | |
- name: Upload YOLO text | |
uses: actions/upload-artifact@v4 | |
with: | |
name: YOLO-text | |
path: gha/out/predicted-labels.csv |