๋ชฉ๋ก๐ฉ๐ป IoT (Embedded)/Image Processing (77)
๐ ๊ณต๋ถํ๋ ์ง์ง์ํ์นด๋ ์ฒ์์ด์ง?

๐ OpenCV ๋ก image ๋ถ๋ฌ์ค๊ธฐ #include "opencv2/opencv.hpp" #include using namespace cv; using namespace std; int main() { std::cout

๐ OpenCV ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ค์ ํ๊ธฐ (debug, release ๋๋ค) $(OPENCV_DIR)\\include $(OPENCV_DIR)\\x64\\vc16\\lib ๐ OpenCV ์ถ๊ฐ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ค์ ํ๊ธฐ (debug, release ๋๋ค) $(OPENCV_DIR)\\x64\\vc16\\lib ๐ ์์ฑ ํ์ด์ง ์ฐฝ์์ ์ถ๊ฐ ์ข ์์ฑ ์ค์ (debug, release ๋๋ค) opencv_world480.lib => release opencv_world480d.lib => debug ๐ So,,, ๊ท์ฐฎ์ฃ ? ์ด๊ฒ๋ค์ ํ ํ๋ฆฟ์ผ๋ก ๋ง๋ค์ด๋ฒ๋ฆฝ์๋ค! ๐ ์ถ๋ ฅ๊ฒฐ๊ณผ #include "opencv2/opencv.hpp" #include int main() { std::cout

๐ ์ค์นํ๊ธฐ OpenCV ์น ์ฌ์ดํธ์์ ์ค์น ์คํ ํ์ผ์ ๋ด๋ ค๋ฐ์ ์ค์นํ๋ ๋ฐฉ๋ฒ ๐ ์์น๋? ํด๋ ๊ตฌ์ฑ์? - C:\opencv\sources : OpenCV ์์ค ์ฝ๋ ํ์ผ - C:\opencv\build : ์์ค ์ฝ๋๋ก๋ถํฐ ๋ง๋ค์ด์ง ๋ผ์ด๋ธ๋ฌ๋ฆฌ ํ์ผ๊ณผ ํค๋ ํ์ผ, ๊ทธ๋ฆฌ๊ณ ๊ธฐํ ์ ์ฉํ ํ์ผ์ด ์ ์ฅ๋์ด ์์ - C:\opencv\build\include : OpenCV ๊ด๋ จ ํค๋ ํ์ผ(*.hpp) - C:\opencv\build\x64 : ๋ฏธ๋ฆฌ ๋น๋๋ OpenCV ๋ผ์ด๋ธ๋ฌ๋ฆฌ ํ์ผ - C:\opencv\build\x64\vc16 : bin๊ณผ lib ํด๋ - bin : ํ๋ก๊ทธ๋จ ์คํ ์ ํ์ํ ๋์ ์ฐ๊ฒฐ ๋ผ์ด๋ธ๋ฌ๋ฆฌ(DLL, Dynamic Linking Library) ํ์ผ๊ณผ OpenCV ์ ํธ๋ฆฌํฐ ํ๋ก๊ทธ๋จ์ด ์..

๐ ๋ฌธ์ ์ค์บํ๊ธฐ by.์ํ import cv2 import numpy as np from datetime import datetime from time import sleep points = np.zeros((4,2), dtype=np.float32) count = 0 def mouseHandler(event, x, y, flags, param): global count if event==cv2.EVENT_LBUTTONDOWN: cv2.circle(img, (x,y), 5, (0, 0, 255), -1) #๋ฐ์ง๋ฆ 5ํฌ๊ธฐ ๋นจ๊ฐ ์ cv2.imshow("Capture", img) try: points[count] = [x, y] count += 1 if count == 4: sum_ = points.sum..

๐ channle ๋ณ ํ๋ ฌ ๋ฐ์ดํฐ ๊ตฌ์กฐ ๐ ์ ๋ ฅ ์์์ ๊ธฐ์ค์ผ๋ก ๋ฐ๋ณต ์คํ def scale_nogood(img, scale_x=1, scale_y=1): height, width = img.shape img_ = np.zeros((int(height*scale_y), int(width*scale_x)), dtype=np.uint8) for y in range(height): for x in range(width): try: img_[int(y*scale_y), int(x*scale_x)] = img[y, x] except: pass return img_ import cv2 import numpy as np img = cv2.imread("images/lena.jpg", cv2.IMREAD_GRAYSCA..

๐ ํ์คํ ๊ทธ๋จ by. cv2 ์ ํ์คํ ๊ทธ๋จ ๋ณด๋๊น 0์ ๊ทผ์ ํ ์๊ฐ ๋ง์ ๊ฑธ ๋ณด์ ์ด๋์ด ๊ทธ๋ฆผ์ธ๊ฑธ ํ์ธํ๋ค! import cv2 img = cv2.imread("images/couple2.jpg", flags=cv2.IMREAD_GRAYSCALE) import numpy as np hist = np.zeros((256)) cv2.imshow('histogram', img) cv2.waitKey(0) cv2.destroyAllWindows() height, width = img.shape for y in range(height): for x in range(width): hist[img[y,x]] = hist[img[y,x]] + 1 import matplotlib.pyplot as plt plt.bar(..

๐ 0๊ณผ 1๋ก ๋ช ์ ํํํด๋ณด๊ธฐ ๋๋๋ง(Dithering)์ ์ ํ๋ ์์ ์ด์ฉํ์ฌ ์์์ด๋ ์์ ๋ํ๋ด๋ ๊ฒ์ด๋ฉฐ, ์ฌ๋ฌ ์ปฌ๋ฌ์ ์์ ์ต๋ํ ๋ง์ถ๋ ๊ณผ์ ์ด๋ค.๊ทธ๋ํฝ ๋์์ด๋์ ์์ฑ๊ณต๊ฐ ์์์ ํ๋์ ์ธ๊ธฐ๊ฐ ์๋ ๋ค๋ฅธ ํฝ์ ์ธ๊ธฐ๋ก ๊ตฌ์ฑ๋๊ธฐ ๋๋ฌธ์ ๋์์ด ๋ง์ ๊ฒ์ฒ๋ผ ๋ค์ ๊ฑฐ์น ๊ฒ ๋ณด์ผ ์ ์๋ค ์์ฆ ์ ์์ฐ์ ^_^ def minmax(pixel): if pixel > 255: pixel = 255 if pixel < 0: pixel = 0 return pixel import numpy as np def dithering(img): height, width = img.shape for y in range(0, height-1): for x in range(1, width-1): p = img[y, x] new_p..

๐ threshold ๋ก binary, tozero ๋ฑ flag ์ง์ ํ๊ธฐ import cv2 import numpy as np from matplotlib import pyplot as plt img = cv2.imread('images/gradation.png',0) ret, thresh1 = cv2.threshold(img,127,255, cv2.THRESH_BINARY) ret, thresh2 = cv2.threshold(img,127,255, cv2.THRESH_BINARY_INV) ret, thresh3 = cv2.threshold(img,127,255, cv2.THRESH_TRUNC) ret, thresh4 = cv2.threshold(img,127,255, cv2.THRESH_TOZERO) ..