VideoStitcher icon indicating copy to clipboard operation
VideoStitcher copied to clipboard

How to stitch two real time videos together? Where are the changes supposed to be done?

Open snehdpat opened this issue 2 years ago • 0 comments

class VideoStitcher: def init(self, left_video_in_path, right_video_in_path, video_out_path, video_out_width=800, display=False): # Initialize arguments self.left_video_in_path = left_video_in_path self.right_video_in_path = right_video_in_path self.video_out_path = video_out_path self.video_out_width = video_out_width self.display = display

    # Initialize the saved homography matrix
    self.saved_homo_matrix = None

and

def run(self): # Set up video capture left_video = cv2.VideoCapture(self.left_video_in_path) right_video = cv2.VideoCapture(self.right_video_in_path)

I am trying to implement with the changes marked in bold part.

snehdpat avatar Dec 15 '23 08:12 snehdpat