일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Convolution Neural Network
- tensorflow update
- #실생활영어
- #실생활 영어
- #영어 명언
- #프로젝트
- word embedding
- python 알고리즘
- text2img
- python __init__
- keras
- convexhull
- 완전탐색
- #일상영어
- #Android
- python list
- tokenizing
- 영어
- #opencv
- TensorFlow
- #English
- #영어
- 영어명언
- #1일1영어
- findContours
- object detection
- c언어
- 딥러닝
- opencv SURF
- 이미지 생성
Archives
- Today
- Total
목록discreate Fourier transform (1)
When will you grow up?
python으로 시작하는 OpenCV (3)
저번에 이에서 필터를 계속해서 알아보자. sobel fileter sobel filter는 3*3 이미지 필터를 사용하여 중심을 기준으로 각 방향의 앞뒤의 값을 비교해 변화량을 검출하는 알고리즘인데, 이미지 경사도의 계산방법이다. 예제를 통해 한번 알아보자. import cv2 import numpy as np import matplotlib.pyplot as plt origin_img = cv2.imread('image.jpg', 0) # gray scale # Sobel filter dx = cv2.Sobel(origin_img, cv2.CV_32F, 1, 0) dy = cv2.Sobel(origin_img, cv2.CV_32F, 0, 1) #visualization plt.figure(figsize..
02. Study/Computer Vision(openframworks&opencv)
2020. 2. 6. 00:41