Top "Opencv" questions

OpenCV (Open Source Computer Vision) is a library for real time computer vision.

How to draw a rectangle around a region of interest in python

I'm having trouble with import cv in my python code. My issue is I need to draw a rectangle around …

python opencv computer-vision draw
How to process images of a video, frame by frame, in video streaming using OpenCV and Python

I am a beginner in OpenCV. I want to do some image processing on the frames of a video which …

python opencv video video-streaming
How to resize an image to a specific size in OpenCV?

IplImage* img = cvLoadImage("something.jpg"); IplImage* src = cvLoadImage("src.jpg"); cvSub(src, img, img); But the size of the source …

c++ opencv image-resizing
Converting an OpenCV Image to Black and White

How do you convert a grayscale OpenCV image to black and white? I see a similar question has already been …

python image-processing opencv computer-vision
How to solve munmap_chunk(): invalid pointer error in C++

I have an application in C++ and OpenCV which tries to use the classification model realized with SVMLight in order …

c++ memory memory-leaks opencv
OpenCV Error: (-215)size.width>0 && size.height>0 in function imshow

I am trying to make a face tracker that combines Haar Cascade Classification with Lucas Kanade good feature detection. However, …

python image opencv computer-vision opencv3.0
How to find out what type of a Mat object is with Mat::type() in OpenCV

I am kind of confused with type() method of Mat object in OpenCV.If I have following lines: mat = imread("…

opencv opencv-mat
OpenCV - Apply mask to a color image

How can I apply mask to a color image in latest python binding (cv2)? In previous python binding the simplest …

python opencv image-processing mask
What does OpenCV's cvWaitKey( ) function do?

What happens during the execution of cvWaitKey()? What are some typical use cases? I saw it in OpenCV reference but …

c++ c opencv
Removing all installed OpenCV libs

I'm running Kubuntu 11.10 (w/ KDE 4.8) Before you read all this : I just want to remove all traces of OpenCV from …

ubuntu opencv uninstallation