Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- c언어 라이프타임
- 코테기출
- c언어 static
- GStreamer
- c언어 지역변수
- 삼성 B형
- nodejs 기초
- Spakrfun Edge
- GStreamer 튜토리얼
- 수퍼컴퓨터 클러스터
- GStreamer tutorial
- 코딩테스트 기출
- SKT FLYAI
- softeer
- 통근버스 출발 순서 검증하기
- 삼성전자 #영상디스플레이사업부 # VD사업부 #면접후기
- Python
- 소프티어
- MacOS 설치
- 사물인식 최소 면적 산출 프로그램
- Sparkfun Edge Example
- 플레이페어 암호
- 성적평균
- C++
- Sparkfun Edge 프로젝트
- C++해설
- c언어 정적변수
- 지도 자동 구축
- c언어 스코프
- c언어 전역변수
Archives
- Today
- Total
mulll
Simple RTSP Client with OpenCV 본문
Simple Code:
import cv2
RTSP_URL = "rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mp4"
cap = cv2.VideoCapture(RTSP_URL)
while(cap.isOpened()):
ret, frame = cap.read()
cv2.imshow('frame', frame)
if cv2.waitKey(20) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
Result:
Comments