I'm studying on a project for a long time. My aim is to get depth map from stereo cameras' images and filter humans only in order to count human inside.
I am trying to calibrate my camera, continuously for 1-2 months. Nevertheless, when I draw epipolar lines on rectified pair, result is not good enough(I have attached my rectified pair result). I am working now, with my averagely good calibration results and trying to get depth map from disparity map. I have recorded an image sequence, .avi file, and when I try to get depth map from this videos, When I try this I am facing an unstable situation. A spot that is white in the previous frame can be very black in the next. So I can't just count people by filtering disparity. I use SGBM to get depths from rectified images.I am still considered an amateur in this project. I am open to any advice. (How to do better calibration? Better disparity map? Better depth map?)
This is depth map, and rectified pair:
Rectified pair and epipolar lines
I have calibrated my camera with 600 pairs almost and improved it. My overall mean error was .13 pix with 35 pair images.
minDisparity=-1,
numDisparities=2*16, # max_disp has to be dividable by 16 f. E. HH 192, 256
blockSize=window_size,
P1=8 * 3 * window_size,
# wsize default 3; 5; 7 for SGBM reduced size image; 15 for SGBM full size image (1300px and above); 5 Works nicely
P2=32 * 3 * window_size,
disp12MaxDiff=12,
uniquenessRatio=1,
speckleWindowSize=50,
speckleRange=32,
preFilterCap=63,
mode=cv2.STEREO_SGBM_MODE_SGBM_3WAY
This is my block matching parameters.
To improve the results of your disparity map, you can implement post-filtering, here is a tutorial (https://docs.opencv.org/master/d3/d14/tutorial_ximgproc_disparity_filtering.html). I used also an extra speckle filter and the option to fill in missing disparities. The python implementation is as follows: