visual studio에서 opencv 세팅하는 방법

윈도우의 visual studio에서 opencv를 세팅하는 방법은 다른 OS의 다른 IDE에서 사용하는 것 보다 상당히 쉽습니다....

3 minute read

이미지를 이용하여 비디오를 만들기

이번 글에서는 opencv-python을 이용하여 이미지들을 비디오로 만드는 방법에 대하여 다루어 보겠습니다. 다음 코드는 위에서 다룬...

1 minute read

리눅스에서 이클립스로 opencv 사용하기

참조1 : https://agiantmind.tistory.com/182 참조2 : https://webnautes.tistory.com/1186 참조3 : https://docs.opencv.org/3.4/d7/d9f/tutorial_linux_install.html 이번 글에서는 리눅스에서 이클립스를 이용하여 OpenCV...

10 minute read

각도 기준으로 대각선 그리기

목차 (y, x) 좌표를 특정 각도 만큼 회전 하기 tan를 이용하여 회전한 직선 만들기 어떤...

4 minute read

히스토그램 계산 - calcHist

Reference : Python으로 배우는 OpenCV 프로그래밍 Code : https://github.com/gaussian37/Vision/tree/master/OpenCV/histogram 히스토그램은 관찰 데이터의 빈도수를 막대그래프로 표시한...

9 minute read

임계값 검출 - threshold, adaptiveThreshold

Reference : Python으로 배우는 OpenCV 프로그래밍 Code : https://github.com/gaussian37/Vision/tree/master/OpenCV/threshold 이미지에서 행과 열의 순서로 img(y, x)에...

5 minute read

마우스 클릭으로 ROI 영역 추출 하기

Reference : https://www.pyimagesearch.com/2015/03/09/capturing-mouse-click-events-with-python-and-opencv/ Code : https://github.com/gaussian37/Vision/tree/master/OpenCV/crop%20image 이번 포스트에서는 마우스 클릭으로 drag & drop을 하여 ROI(Region...

4 minute read

코너점(Corner) 검출 - cornerEigenValsAndVecs

Reference : Python으로 배우는 OpenCV 프로그래밍 Code : https://github.com/gaussian37/Vision/tree/master/OpenCV/corner%20detection OpenCV를 이용하여 영상에서의 코너점을 검출하는 방법에...

1 minute read

코너점(Corner) 검출 - preCornerDetect

Reference : Python으로 배우는 OpenCV 프로그래밍 Code : https://github.com/gaussian37/Vision/tree/master/OpenCV/corner%20detection ** 오늘 하루도 즐거운 하루 되길...

3 minute read

opencv-python 코드 snippets

opencv 글 목록 목차 warpAffine을 이용한 기하학적 변환 warpAffine과 warpPerspective를 이용한 기하학적 변환 resize를 이용한...

17 minute read

opencv 관련 글 목차

opencv with python 기능 opencv python snippets 임계값 검출 : threshold, adaptiveThreshold 히스토그램 계산 :...

1 minute read