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 |
Tags
- google drive upload
- libopencv-dev
- vim
- NodeMCU
- esp32
- sshkey
- 우분투 opencv 설치
- vi
- opencv apt설치
- opencv
- 아두이노
- vim명령어
- c#
- 정보처리기사
- google drive 업로드
- rotation
- ubuntu
- 아두이노 설치
- api사용해서 google drive에 폴더만들기
- opengl
- Google Drive API
- apt update
- 정보처리기사후기
- annotating
- translation
- Python
- Winform
- vtk
- opencv resize
- 고정ip할당
Archives
- Today
- Total
목록2024/06/07 (1)
내가 보려고 만든 블로그
OpenCV를 사용하여 이미지에 주석 달기(python)
# Import dependenciesimport cv2# Read Imagesimg = cv2.imread('Lenna.png')# Print error message if image is nullif img is None: print('Could not read image')# Draw line on imageimageLine = img.copy()#Draw the image from point A to BpointA = (200,80)pointB = (450,80)cv2.line(imageLine, pointA, pointB, (255, 255, 0), thickness=3, lineType=cv2.LINE_AA)# Draw circleimageCircle = img.copy()# define..
OpenCV/python
2024. 6. 7. 20:20