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