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