[OpenCV] 배경 제거 (Background subtraction)
1. 간단한 배경제거 알고리즘 가정 : 동일한 위치에서 촬영, 두 영상의 조명 상태에 차이가 없어야 한다. 두개의 이미지 프레임 : foreground(x,y,t) , background(x,y,t) (t=시간) 이 있다고 가정 알고리즘 만약 |foreground(x,y,t) - background(x,y,t)| > threshold (임계값) 이라면 destination(x,y,t) = 1 혹은 255 아니라면 destination(x,y,t) = 0 #include "cv.hpp" #include using namespace cv; using namespace std; int main(){ VideoCapture capture("background.mp4"); Mat background ,image,..
2020. 11. 3.