개발 공부

10강 본문

AI/AI_Python_OPENCV 기초

10강

아이셩짱셩 2018. 8. 9. 13:30

#가장 유명한 Edge Detection방법입니다. 여러 단계의 Algorithm을 통해서 경계를 찾아 냅니다.


# Import the necessary packages

import numpy as np

import argparse

import cv2


image = cv2.imread('coin.jpg')

image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

image = cv2.GaussianBlur(image, (5, 5), 0)

cv2.imshow("Blurred", image)



# (image, 30, 150) 그레디언트 30은 최소값, 150은 최대값이다.


canny = cv2.Canny(image, 30, 150)

cv2.imshow("Canny", canny)

cv2.waitKey(0)

'AI > AI_Python_OPENCV 기초' 카테고리의 다른 글

11강  (0) 2018.08.09
9강  (0) 2018.08.09
8강  (0) 2018.08.09
7강  (0) 2018.08.09
6강  (0) 2018.08.07
Comments