| 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 | 
| 9 | 10 | 11 | 12 | 13 | 14 | 15 | 
| 16 | 17 | 18 | 19 | 20 | 21 | 22 | 
| 23 | 24 | 25 | 26 | 27 | 28 | 29 | 
| 30 | 
													Tags
													
											
												
												- nav2 tutorial
 - CodeUp
 - Python
 - ros2 튜토리얼
 - ros2 configuring environment
 - docker foxy
 - ROS FOXY 튜토리얼
 - ros2 foxy docker
 - ros2 foxy tutorial
 - ros2 transformations 개념
 - nav2 first-time robot setup guide
 - humble development guides
 - Foxy tutorial
 - ros2 development guides
 - humble 환경설정
 - 코드업
 - first-time robot setup guide
 - setting up transformations
 - nav2 튜토리얼
 - foxy nav2
 - CODEUP 6073
 - ros2 remapping
 - error
 - nav2 development guides
 - nav2 dev contatiner
 - nav2 getting started
 - nav2 설치
 - Nav2 document
 - ros2 환경설정
 - ros2 튜토리얼 환경설정
 
													Archives
													
											
												
												- Today
 
- Total
 
BAN2ARU
[Python] YOLOV5 Window build with Anaconda 본문
반응형
    
    
    
  CUDA : 11.0
GPU : RTX 3060
1. Conda로 가상환경 설정 (YoloV5는 Python 3.7이상 지원)
conda create -n yolov5 python=3.8
2. Pytorch 설치 (YoloV5는 Pytorch 1.7.0이상 지원)
conda activate yolov5
conda install pytorch==1.7.0 torchvision==0.8.0 torchaudio==0.7.0 cudatoolkit=11.0 -c pytorch
3. Yolov5 repo 가져오기 및 필요 모듈 설치
git clone https://github.com/ultralytics/yolov5
cd yolov5
pip install -r requirements.txt
- Demo : 제대로 설치되었는지 확인해보자!
python detect.py --weights yolov5s.pt --img 640 --conf 0.25 --source data/images
yolov5/runs/detect/exp에 yolov5s의 weight로 얻은 detection 결과 이미지를 얻을 수 있음!


728x90
    
    
    
  'Study > Detection' 카테고리의 다른 글
| Pascal VOC Dataset 다운로드 및 구성요소 살펴보기 (0) | 2022.05.27 | 
|---|