Skip to content Skip to sidebar Skip to footer
Showing posts with the label Opencv

How Do I Access My Usb Camera Using Opencv With Python?

I am having trouble accessing my USB camera using OpenCV with python. I get the following error mes… Read more How Do I Access My Usb Camera Using Opencv With Python?

Pixelate Roi Bounding Box And Overlay It On Original Image Using Opencv

Lets make it straightforward. I have private project to block or pixelate image using boundary box … Read more Pixelate Roi Bounding Box And Overlay It On Original Image Using Opencv

Stream Images From Python Opencv With Ffmpeg

In order to try an embedded AI, I want to stream an image dataset through a rtsp stream. What I tri… Read more Stream Images From Python Opencv With Ffmpeg

Opencv Bfmatcher Match() Always Return Error

I'm training a BFMatcher with 4 descriptors: bf = cv2.BFMatcher() bf.clear() bf.add(des1) bf.a… Read more Opencv Bfmatcher Match() Always Return Error

Use Cv2.videocapture To Capture A Picture

I want to use my laptop webcam to capture a picture using the code below: import cv2 cap = cv2.Vide… Read more Use Cv2.videocapture To Capture A Picture

To Use Opencv/cv2 To Compare And Mark The Difference Between 2 Images (with Pictures)

I want to use Python and cv2 to compare 2 images, like below. (Python 2.7 + Windows) c:\Original.jp… Read more To Use Opencv/cv2 To Compare And Mark The Difference Between 2 Images (with Pictures)

Opencv Imshow Fails Randomly

When I want to display an image, the cv2.imshow() fails randomly. import cv2 frame = cv2.imread(&#… Read more Opencv Imshow Fails Randomly

Error When Using Cv2.findcontours

I tried to find contours for image, but it gives an error. My code is: import cv2 import numpy as … Read more Error When Using Cv2.findcontours