/* code block */
반응형

import cv2 as cv
import numpy as np

hsv = 0
lower_blue1 = 0
upper_blue1 = 0
lower_blue2 = 0
upper_blue2 = 0
lower_blue3 = 0
upper_blue3 = 0

def mouse_callback(event, x, y, flags, param):

global hsv, lower_blue1, upper_blue1, lower_blue2, upper_blue2, lower_blue3, upper_blue3

if event == cv.EVENT_LBUTTONDOWN:
print(img_color[y, x])
color = img_color[y,x]

one_pixel = np.uint8([[color]])
hsv = cv.cvtColor(one_pixel, cv.COLOR_BGR2HSV)
hsv = hsv[0][0]

# HSV 색공간에서 마우스 클릭으로 얻은 픽셀값과 유사한 픽셀값의 범위를 정합니다.
if hsv[0] < 10:

print("case1")
lower_blue1 = np.array([hsv[0] - 10 + 180, 30, 30])
upper_blue1 = np.array([180, 255, 255])
lower_blue2 = np.array([0, 30, 30])
upper_blue2 = np.array([hsv[0], 255, 255])
lower_blue3 = np.array([hsv[0], 30, 30])
upper_blue3 = np.array([hsv[0] + 10, 255, 255])
# print(i-10+180, 180, 0, i)
# print(i, i+10)

elif hsv[0] > 170:

print("case2")
lower_blue1 = np.array([hsv[0], 30, 30])
upper_blue1 = np.array([180, 255, 255])
lower_blue2 = np.array([0, 30, 30])
upper_blue2 = np.array([hsv[0] + 10 - 180, 255, 255])
lower_blue3 = np.array([hsv[0] - 10, 30, 30])
upper_blue3 = np.array([hsv[0], 255, 255])
# print(i, 180, 0, i+10-180)
# print(i-10, i)
else:

print("case3")
lower_blue1 = np.array([hsv[0], 30, 30])
upper_blue1 = np.array([hsv[0] + 10, 255, 255])
lower_blue2 = np.array([hsv[0] - 10, 30, 30])
upper_blue2 = np.array([hsv[0], 255, 255])
lower_blue3 = np.array([hsv[0] - 10, 30, 30])
upper_blue3 = np.array([hsv[0], 255, 255])
# print(i, i+10)
# print(i-10, i)

print(hsv[0])

print("@1", lower_blue1, "~", upper_blue1)
print("@2", lower_blue2, "~", upper_blue2)
print("@3", lower_blue3, "~", upper_blue3)

cv.namedWindow('img_color')
cv.setMouseCallback('img_color', mouse_callback)


while(True):
img_color = cv.imread('img/color.jpg')
height, width = img_color.shape[:2]
img_color = cv.resize(img_color, (width, height), interpolation = cv.INTER_AREA)

# 원본 이미지를 HSV 이미지로 변환한다.
img_hsv = cv.cvtColor(img_color, cv.COLOR_BGR2HSV)


# 범위 값으로 HSV 이미지에서 마스크를 생성한다.
img_mask1 = cv.inRange(img_hsv, lower_blue1, upper_blue1)

img_mask2 = cv.inRange(img_hsv, lower_blue2, upper_blue2)
img_mask3 = cv.inRange(img_hsv, lower_blue3, upper_blue3)
img_mask = img_mask1 | img_mask2 | img_mask3

# 마스크 이미지로 원본 이미지에서 범위값에 해당되는 영상 부분을 획득한다.
img_result = cv.bitwise_and(img_color, img_color, mask=img_mask)


cv.imshow('img_color', img_color)
cv.imshow('img_mask', img_mask)
cv.imshow('img_result', img_result)

if cv.waitKey(1) & 0XFF == 27:
break

cv.destroyAllWindows()

반응형

'Python > OpenCV' 카테고리의 다른 글

이미지 리사이징  (0) 2019.07.01
HSV 색상 검출하기  (0) 2019.06.30
BGR 색상을 HSV로 변환하기  (0) 2019.06.30
동영상을 Thresholding으로 이진화  (0) 2019.06.30
OTSU로 노이즈 제거  (0) 2019.06.30
반응형

import cv2


img_color = cv2.imread('img/color.jpg')
height, width = img_color.shape[:2]

cv2.imshow('img_color', img_color)


img_color = cv2.resize(img_color, None, fx=0.5, fy=0.5, interpolation=cv2.INTER_AREA)
img_color = cv2.resize(img_color, (int(width/2), int(height/2)), interpolation=cv2.INTER_AREA)
#둘 다 사용 가능

#사이즈를 줄일 때는cv2.INTER_AREA, 사이즈를 크게할 때는cv2.INTER_CUBIC, cv2.INTER_LINEAR

cv2.imshow('interpolation',img_color)

cv2.waitKey(0)
cv2.destroyAllWindows()

 

반응형

'Python > OpenCV' 카테고리의 다른 글

클릭으로 HSV 색 추출  (0) 2019.07.01
HSV 색상 검출하기  (0) 2019.06.30
BGR 색상을 HSV로 변환하기  (0) 2019.06.30
동영상을 Thresholding으로 이진화  (0) 2019.06.30
OTSU로 노이즈 제거  (0) 2019.06.30
반응형

import cv2

img_color = cv2.imread('img/color.jpg')
height, width = img_color.shape[:2]

img_hsv = cv2.cvtColor(img_color,cv2.COLOR_BGR2HSV)

lower_yellow = (30-10, 30, 30)
#노란색의 h값은 30
#s와v의 하한값은 30. 너무 어두워서 검은색에 가깝거나 너무 옅어서 흰색에 가까운 경우를 제외시킨다.
upper_yellow = (30+10, 255, 255)
img_mask = cv2.inRange(img_hsv, lower_yellow, upper_yellow)

img_result = cv2.bitwise_and(img_color, img_color, mask = img_mask)

cv2.imshow('color',img_color)
cv2.imshow('mask',img_mask)
cv2.imshow('result',img_result)

cv2.waitKey(0)

cv2.destroyAllWindows()

반응형

'Python > OpenCV' 카테고리의 다른 글

클릭으로 HSV 색 추출  (0) 2019.07.01
이미지 리사이징  (0) 2019.07.01
BGR 색상을 HSV로 변환하기  (0) 2019.06.30
동영상을 Thresholding으로 이진화  (0) 2019.06.30
OTSU로 노이즈 제거  (0) 2019.06.30
반응형

import numpy as np
import cv2

color = [0, 255, 0] #BGR색상에서 녹색
pixel = np.uint8([[color]]) #색상 정보를 하나의 픽셀로 변환한다

hsv = cv2.cvtColor(pixel, cv2.COLOR_BGR2HSV)

hsv = hsv[0][0] #색상 정보만 가져온다

print("bgr: ", color)
print("hsv: ", hsv)

#녹색의 hsv값이 출력된다

반응형

'Python > OpenCV' 카테고리의 다른 글

이미지 리사이징  (0) 2019.07.01
HSV 색상 검출하기  (0) 2019.06.30
동영상을 Thresholding으로 이진화  (0) 2019.06.30
OTSU로 노이즈 제거  (0) 2019.06.30
Adaptive Threshold  (0) 2019.06.30
반응형

import cv2

capture = cv2.VideoCapture(0)
capture.set(cv2.CAP_PROP_FRAME_WIDTH, 640)
capture.set(cv2.CAP_PROP_FRAME_HEIGHT, 480)

while True:
ret, frame = capture.read()
frame2 = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) #adaptiveThreshold를 사용하려면 그레이 컬러로 변경해줘야 한다

#ret, img_binary = cv2.threshold(frame2, 127, 255, cv2.THRESH_BINARY)

img_binary = cv2.adaptiveThreshold(frame2, 255, cv2.ADAPTIVE_THRESH_MEAN_C, cv2.THRESH_BINARY, 29, 20)

#img_binary = cv2.adaptiveThreshold(frame2, 255, cv2.ADAPTIVE_THRESH_GAUSSIAN_C, cv2.THRESH_BINARY, 21, 5)
cv2.imshow("VideoFrame", img_binary)
if cv2.waitKey(1) > 0: break

capture.release()
cv2.destroyAllWindows()

반응형

'Python > OpenCV' 카테고리의 다른 글

HSV 색상 검출하기  (0) 2019.06.30
BGR 색상을 HSV로 변환하기  (0) 2019.06.30
OTSU로 노이즈 제거  (0) 2019.06.30
Adaptive Threshold  (0) 2019.06.30
Threshold 함수를 이용한 이진화  (0) 2019.06.30
반응형

import cv2

img_source = cv2.imread('img/paper.jpg',0)

ret,img_result1 = cv2.threshold(img_source, 127, 255, cv2.THRESH_BINARY)
cv2.imshow('result1', img_result1)
cv2.waitKey(0)

ret,img_result2 = cv2.threshold(img_source, 0, 255, cv2.THRESH_BINARY+cv2.THRESH_OTSU)
#THRESH_OTSU 적용. 임계값 인자를 0으로 해야 한다
cv2.imshow('result2', img_result2)
cv2.waitKey(0)

img_blur = cv2.GaussianBlur(img_source, (5,5), 0)
#가우시안 필터 적용
ret, img_result3 = cv2.threshold(img_blur, 0, 255, cv2.THRESH_BINARY+cv2.THRESH_OTSU)
cv2.imshow('result3', img_result3)
cv2.waitKey(0)
#노이즈가 제거된다


cv2.destroyAllWindows()

반응형

'Python > OpenCV' 카테고리의 다른 글

BGR 색상을 HSV로 변환하기  (0) 2019.06.30
동영상을 Thresholding으로 이진화  (0) 2019.06.30
Adaptive Threshold  (0) 2019.06.30
Threshold 함수를 이용한 이진화  (0) 2019.06.30
카메라 영상 출력하기  (0) 2019.06.30

+ Recent posts