https://xandroid.tistory.com/entry/WebCam-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EA%B0%9D%EC%B2%B4-%EC%9D%B8%EC%8B%9D

 

yolo8 & python 3.10 이용한 객체 인식 #1

1) 파이썬 설치 https://www.python.org/downloads/windows/ Python Releases for Windows The official home of the Python Programming Language www.python.org os 맞는 bit 다운로드후 설치 커스텀을 선택 IDLE는 체크를 안함, => 파이참을

xandroid.tistory.com

#1 이어서 

 

아무이름이나 지어주고 엔터 

아래 코드를 입력후

from ultralytics import YOLO

model = YOLO("yolov8s.pt")
results = model.predict(source="0", show=True)
print(results)

 

플레이 버튼을 누르면

 

아래와 같이 캠으로 객체인식이 가능

 

 

 

 

+ Recent posts