일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- javascript
- ipad
- DFS
- 알고리즘
- GT-S80
- SciPy
- synology
- mean
- Python
- install
- pandas
- Numpy
- SPL
- dataframe
- LSTM
- Button
- E-P1
- Lotto
- mariadb
- RNN
- Series
- Splunk
- pip
- index
- keras
- GitHub
- 삼성소프트웨어멤버십
- pycharm
- CNN
- imread
Archives
- Today
- Total
목록dilate (1)
잠토의 잠망경
[OpenCV] morphological Transformations
erode 목적: 삐져 나온것 지우기 src = cv2.imread('img.png') kernel = cv2.getStructuringElement(shape=cv2.MORPH_CROSS, ksize=(3,3)) erode = cv2.erode(src, kernel, iteraions=10) cv2.imshow('erode', erode) dilate 목적: 매꾸기 src = cv2.imread('img.png') kernel = cv2.getStructuringElement(shape=cv2.MORPH_CROSS, ksize=(3,3)) erode = cv2.dilate(src, kernel, iteraions=10) cv2.imshow('erode&..
공부/Python
2019. 1. 2. 21:47