250x250
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
- 텐서플로우
- Computer Vision
- 컴퓨터 비전
- GUI
- 파이토치
- Docker
- FLASK
- 딥러닝
- yaml
- tensorflow
- OpenCV
- pytorch
- 파이썬
- k8s
- Python
- Tkinter
- Web Programming
- paper review
- 논문 리뷰
- POD
- 그래픽 유저 인터페이스
- Django
- 웹 프로그래밍
- 장고
- Deep Learning
- MariaDB
- 데이터베이스
- numpy
- vue.js
- kubernetes
Archives
- Today
- Total
목록Image Segmentation (1)
Maxima's Lab

Kmeans Clustering 오늘은 Kmeans Clustering 알고리즘을 통해 Imgae Segmentation을 해보고 해당 결과를 통해 3-D Scatter Plot 까지 진행 해보도록 하겠습니다. ※opencv의 cv2.kmeans() 함수 사용 이미지 불러오기 import cv2 import matplotlib.pyplot as plt img_path = "..." img = cv2.imread(img_path) # cv2.imshow("Original Image", img) # cv2.waitKey(0) # cv2.destroyAllWindows() plt.figure("Original Image") plt.axis("off") plt.imshow(cv2.cvtColor(img, cv2..
Python/Opencv
2022. 6. 2. 23:48