You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am using windows , stereo camera 3840 X 1080 @ 60
i connect then down sample then split
// Set the camera resolution to 3840x1080 (the combined stereo image)
cap.set(cv::CAP_PROP_FRAME_WIDTH, 3840);
cap.set(cv::CAP_PROP_FRAME_HEIGHT, 1080);
cap.set(cv::CAP_PROP_FPS, 60);
// Downsample the frame to 2560x720
cv::resize(frame, frame_resized, cv::Size(2560, 720));
// Split the downsampled frame into left and right images
imLeft = frame_resized(cv::Rect(0, 0, 1280, 720)); // Left half
imRight = frame_resized(cv::Rect(1280, 0, 1280, 720)); // Right half
and no matter what i do i still cant manage to fix this problem
The text was updated successfully, but these errors were encountered:
i am using windows , stereo camera 3840 X 1080 @ 60
i connect then down sample then split
and no matter what i do i still cant manage to fix this problem
The text was updated successfully, but these errors were encountered: