Quantcast
Channel: How do I display multiple webcam feeds side by side using OpenCV Beta 3.0.0 and Python? - Stack Overflow
Browsing all 2 articles
Browse latest View live

Answer by chris for How do I display multiple webcam feeds side by side using...

import cv2import numpy as npcapture = cv2.VideoCapture(0)capture1 = cv2.VideoCapture(1)while True: _, frame1 = capture.read() _, frame2 = capture1.read() frame1 = cv2.cvtColor(frame1,cv2.COLOR_BGR2RGB)...

View Article



How do I display multiple webcam feeds side by side using OpenCV Beta 3.0.0...

I am working on a project that requires that I display 3 (and possibly more) webcam feeds side by side. To tackle this project, I am using OpenCV Beta 3.0.0 and Python 2.7.5 because I am slightly...

View Article
Browsing all 2 articles
Browse latest View live




Latest Images