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