yolov7-ros
ROS package for official YOLOv7
File Explorer
Download Latest Version (.zip)- berkeley.txt
- coco.txt
- yolov7.launch
- r50-csp.yaml
- x50-csp.yaml
- yolor-csp-x.yaml
- yolor-csp.yaml
- yolor-d6.yaml
- yolor-e6.yaml
- yolor-p6.yaml
- yolor-w6.yaml
- yolov3-spp.yaml
- yolov3.yaml
- yolov4-csp.yaml
- yolov7-d6.yaml
- yolov7-e6.yaml
- yolov7-e6e.yaml
- yolov7-tiny-silu.yaml
- yolov7-tiny.yaml
- yolov7-w6.yaml
- yolov7.yaml
- yolov7x.yaml
- yolov7-d6.yaml
- yolov7-e6.yaml
- yolov7-e6e.yaml
- yolov7-tiny.yaml
- yolov7-w6.yaml
- yolov7.yaml
- yolov7x.yaml
- coco.yaml
- hyp.scratch.custom.yaml
- hyp.scratch.p5.yaml
- hyp.scratch.p6.yaml
- hyp.scratch.tiny.yaml
- dog.jpg
- dog_result.jpg
- boundingbox.py
- client.py
- labels.py
- processing.py
- README.md
- render.py
- horses_prediction.jpg
- mask.png
- performance.png
- pose.png
- tennis.jpg
- tennis_caption.png
- tennis_panoptic.png
- tennis_semantic.jpg
- bus.jpg
- horses.jpg
- image1.jpg
- image2.jpg
- image3.jpg
- zidane.jpg
- __init__.py
- common.py
- experimental.py
- yolo.py
- yolov7.pdf
- get_coco.sh
- compare_YOLOv7_vs_YOLOv5m6.ipynb
- compare_YOLOv7_vs_YOLOv5m6_half.ipynb
- compare_YOLOv7_vs_YOLOv5s6.ipynb
- compare_YOLOv7e6_vs_YOLOv5x6.ipynb
- compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb
- instance.ipynb
- keypoint.ipynb
- reparameterization.ipynb
- visualization.ipynb
- YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb
- YOLOv7-Dynamic-Batch-TENSORRT.ipynb
- YOLOv7CoreML.ipynb
- YOLOv7onnx.ipynb
- YOLOv7trt.ipynb
- __init__.py
- mime.sh
- resume.py
- userdata.sh
- additional_requirements.txt
- app.yaml
- Dockerfile
- __init__.py
- log_dataset.py
- wandb_utils.py
- __init__.py
- activations.py
- add_nms.py
- autoanchor.py
- datasets.py
- general.py
- google_utils.py
- loss.py
- metrics.py
- plots.py
- ros.py
- torch_utils.py
- __init__.py
- detect.py
- detect_ros.py
- export.py
- hubconf.py
- test.py
- train.py
- train_aux.py
- visualizer.py
- berkeley_example.png
- CMakeLists.txt
- LICENSE
- package.xml
- README.md
- requirements.txt
# Installation Guide
1. Get the code
git clone https://github.com/lukazso/yolov7-ros
Downloads the entire project code from GitHub to your computer.
cd yolov7-ros
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
docker build -f src/utils/google_app_engine/Dockerfile -t yolov7-ros .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 yolov7-ros
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. CMake
MediumPrerequisites
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
4. Python
EasyPrerequisites
pip install -r requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
If it runs without errors and prints output in the terminal, it worked.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
