0
votes
0answers
9 views

Level number and window size in LK

I would like to know how can I select the level number and window size in cvCalcOpticalFlowPyrLK in openCV ??? ...
0
votes
2answers
70 views

Get iplImage or Mat from directshow to opencv

I had to change to directshow for my eyetracking software due to the difficulties to change resolution of the camera when using c++ and opencv. Directshow is new to me and it is kind of hard to ...
0
votes
1answer
42 views

Finding the time of a thumbnail in a video

I have a large set of pre-generated thumbnails and videos. What is the easiest way to figure out the specific time in the video of the associated thumbnail? I'd imagine that I would have to use ...
0
votes
0answers
38 views

Failed SURF output

I am trying to find the three cervical vertebrae (C2 , C3 , C4) in x-ray videos (gray images) I am using SURF to identify the place that has these 3 vertebrae (big box for all of them ) SURF gives me ...
0
votes
0answers
67 views

OpenCV Python binding plays video very slow

I'm processing and showing result of a video in python with opencv 2.4.4 (and 2.4.5), but frame speed is 1fps instead 30fps (I called cv2.waitKey(1000 / 30) ). I tried to play video without processing ...
0
votes
1answer
81 views

Converting rgb video to grayscale in OpenCV

I have this program that should convert rgb video to grayscale: CvCapture* capture = 0; capture = cvCreateFileCapture( "sample.avi" ); if(!capture) { return -1; } IplImage ...
0
votes
0answers
35 views

Append images to a video

Due to the lack of DirectShow filter for the Kinect, I am forced to capture each RGB bitmap individually and merge them. I am currently using the fragile AviFile C# Wrapper, which causes slow frame ...
1
vote
2answers
68 views

opencv does not display a video in mac osx

I just installed opencv on my mac with OSX 10.8.3, i installed it with brew: brew install opencv and the version is 2.4.3 >>> ls /usr/local/Cellar/opencv 2.4.3 I try to display a video. ...
0
votes
1answer
69 views

Restreaming live stream with Python + OpenCV

I have a script that uses CaptureFromFile to get frames from a live stream, then does some work on it. Now I would like to annotate that stream and restream it - what would be the easiest way of ...
0
votes
1answer
50 views

How to get an array or any collection of pixels from video in real time using opencv (Android)

Exacly as in the subject I would like to analyse video from android phone using opencv. How to get the access to the pixels(rgb or similar) while recording a video(there can be slight lag)? I have ...
0
votes
1answer
91 views

saving an image sequence from video using opencv2

Newbie question and yes I have spent a lot of time sifting through similar questions and Answers with no luck. What I am trying to do is save frames from a video file in a sequential order. I have ...
0
votes
1answer
134 views

OpenCV Python hangs when reading image after VideoCapture

Im trying to use opencv python wrapper to read a video file, the code works fine but after some minutes capture.read() starts returning empty images. I've tryed with several differents video files and ...
0
votes
0answers
107 views

Tracking points separately using openCV

I am trying to track 3 points in a video ...... I have videos for x-ray images ... and these 3 points are moved on frames. I am trying to let the user select the 3 points in the first frame ... and ...
1
vote
1answer
255 views

OpenCV finding picture (frame) in video

I am trying to create small application in C++ that will return probability value (real number from 0 to 1) for recognizing two pictures in video. My idea is to find commercials in certain video ...
1
vote
0answers
123 views

OpenCV VideoCapture fails to load compressed video files when building with staticlib

I can embed OpenCV .DLLs and build my program in Visual Studio 2010, Debug mode, x64 platform using OpenCV 2.4.4 static libraries from C:\opencv244\build\x64\vc10\staticlib. I use VideoCapture to ...
0
votes
3answers
180 views

Can't open video with opencv2

I'm trying to grab the images from a video file but I can't succeed to open it and I don't know why. Below is a code sample that print False where I'm expecting to get a True. I don't get why I can't ...
0
votes
1answer
29 views

Grabbing Pixel data from a video strem

I am having trouble if understanding certain coding i am sorry if this comes off as stupid but i have a code to capture a video from my webcam i want to get the RGB valuee from the frame, if this is ...
1
vote
2answers
185 views

Playing a video in OpenCV

I am a beginner to OpenCV and I wish to play a video in OpenCV. I've made a code but it's displaying a single image only. I am using OpenCV 2.1 and Visual Studio 2008. I would really appreciate it if ...
0
votes
1answer
149 views

OpenCV error (cvCreateFileCapture())

I'm working with OpenCV in C. I intend to run a video on a window (and image process the frames a little before displaying them with an algorithm I made). However the following line: CvCapture* ...
0
votes
0answers
93 views

Record video using OpenCV in android

Is is possible to record video using openCV in android platform? I have read that OpenCv not supporting video recording for android or we can capture open picture not video , is it true?
0
votes
0answers
41 views

How to estimate I frame motion degree?

I am measuring video quality using the video's I frames. But I found some I frames contains motion,for example a dancing MV. As a result it is inaccurate to measure the sharpness of a video according ...
0
votes
1answer
91 views

How to get number of I/P/B frames of a video file?

I want to extract information of a video file to get the count of its I/P/B frames. How to do it in ffmpeg? Or should I programming using libavformat and libavcodec to do it? Many thanks!
0
votes
1answer
80 views

Why opencv failed to read a rmvb video?

My opencv program success to read mp4 video files but failed to read some rmvb files and it gives the following error: [rm @ 0x821f80] Invalid stream index 2 for index at pos 974024349 video has ...
0
votes
1answer
137 views

Why opencv can open video but failed to retrieve frame from it?

I build opencv with ffmpeg support and this is a snippet of my code to read a video and iterate through the frames. if (argc != 3) { std::cout<<"Usage: exe input_video_filename skip_frames ...
0
votes
1answer
132 views

pixel value changed after rewrite the video

I have videos which are grayscale (x-ray) ... the problem is when I read and write the videos the pixel value change !!! I print the pixel values as a gray and as BGR and I got values in all of them ...
0
votes
1answer
93 views

Video and audio recording from webcam using opencv and pyaudio

I'm a beginner in Python and would like to build a video diary like in the Movie "Avartar". I would like to use OpenCV. Recording the video stream of my webcam workslready, but how can I save my ...
0
votes
0answers
164 views

How to get total frame count using iOS & OpenCV

I'm trying to read video file and get its properties using opencv & ios. Reading is ok, but i cant get correct property values. Every time i got 1, instead of real number. cv::VideoCapture ...
1
vote
2answers
569 views

read/write avi video on MAC using openCV

I am trying to read avi video and write it again as it is without any change using openCV 2.4.0 on MAC 10.6.8 My videos is grayscale with frame_rate = 25 and Codec = 827737670 which is FFV1 (I ...
3
votes
1answer
370 views

Windows OpenCV VideoCapture Will Not Open Video File

My team and I are working on a project with OpenCV (v. 2.4.2) and QT(v. 4.8.4). We are developing in QtCreator. It is a cross-platform project that will be primarily looking for movement in video ...
0
votes
2answers
339 views

Counting Cars in OpenCV + Python [closed]

ive got this big/easy problem that i need to solve but i cant.. What im trying to do is to count cars on a highway, and i actually can detect the moving cars and put bounding boxes on them... but when ...
1
vote
3answers
283 views

Combining videos in opencv and Qt

I am trying to write a program that will combine 4 videos into a single video, arranging them into a 2x2 grid. Below is the relevant code: void CombineVideoApp::on_GoButton_clicked() { ...
32
votes
2answers
787 views

Detecting a cross in an image with OpenCV

I'm trying to detect a shape (a cross) in my input video stream with the help of OpenCV. Currently I'm thresholding to get a binary image of my cross which works pretty good. Unfortunately my ...
-1
votes
1answer
88 views

OpenCV - Updating video playback position from slider

My question is related to the solution provided in this answer. When I update the slider position, the video always starts from frame zero, whereas, slider continues from the moved position on-wards. ...
0
votes
0answers
209 views

Creating a video using OpenCV 2.4.0 in python

I am trying to create a video using OpenCV 2.4.0 in python 2.7.2. But the avi file size is 0. My code: from cv2 import * im1 = cv.LoadImage("1.jpg") fps = 20 frame_size = cv.GetSize(im1) #writer ...
1
vote
1answer
129 views

How to keep frames provided by VideoCapture in OpenCV

I want to write a function using opencv which reads a Video file grabs single frames and stores them lets say in std::vector>. Problem turns out at the end of function, I've got images in vector of ...
0
votes
1answer
108 views

Read from video .avi file as it is being written

Using python I would like to monitor a .avi raw RGB video file that is being written to the hard disk by another process at the time of recording. So what I need is something that repeatedly gives me ...
0
votes
0answers
83 views

Save looping video in OpenCV

I'm making a security camera application with OpenCV and an attached webcam. I'm trying to figure out how to safely save the video output from the camera. How can I save the video format, so even if ...
0
votes
0answers
143 views

Bad image stabilization result opencv

I’m working on video stabilization using opencv under C++. I got correct matched features from each couple of frames using LK optical flow : cvCalcOpticalFlowPyrLK function. Actually the camera is ...
0
votes
2answers
182 views

OpenCV's cvWriteFrame(..) does nothing

I spent a few hours trying to write an avi file with CvVideoWriter. I always get a file with the size of 5.54KB and no frames in it. I checked if CvVideoWriter is not null and it isn't. I also tried ...
0
votes
2answers
226 views

Error in using cvVideoWriter in opencv?

This code snippet is supposed to save part of a video whose range is defined by start and end. There is an array of structures (data[i]) that holds the starting and end frame of a video shot in the ...
0
votes
0answers
292 views

android native template matching using opencv

i am trying to do "real time" template matching from the video input. as a basis i am using the native camera example. i can figure out how to put the right expressions into the c/c++ matchTemplate ...
1
vote
2answers
281 views

OpenCV - is the .clone() function needed to double buffer a video source?

I'm trying to double buffer my VideoCapture output in my OpenCV program (to reduce flicker). Here's the concept so far: Mat frameA, frameB; //alternating between these two for storage ...
0
votes
1answer
138 views

How do I use the FPS argument in cv2.VideoWriter?

Ok, so I am making a video. I want to know exactly how to use the FPS argument. It is a float, so I assumed it was what interval do I want between each frame. Can you give an example? I just want to ...
2
votes
0answers
256 views

Autofocus for video capture in OpenCV4Android 2.4.3

I have a problem with auto focus while taking a video with android opencv. I found a lot of solution suggest me to use mCamera. However It is used only for taking photos. Are there any function in ...
-1
votes
3answers
621 views

Face-recognition in video [closed]

Question : How to detect face(eyes,nose,chin and forehead) while recording video in android? Steps already taken : There is face detection library in android SDK for still images , but there is no ...
0
votes
1answer
205 views

Video processing recommendations

I am starting a new project were I will be getting a video input and I will have to add several itens in the video..some lines and real time information. Since the camera will be in a shaking ...
0
votes
2answers
594 views

How to create video using avcodec from jpeg images of type OpenCV::Mat?

I have colored jpeg images of OpenCV::Mat type and I create from them video using avcodec. The video that I get is upside-down, black & white and each row of each frame is shifted and I got ...
4
votes
1answer
711 views

how to convert images into video in android using javacv?

i want to convert the sdcard images into video in android.After many of searching i found it is possible in javacv.when i try simple javacv sample in pure java,its working perfectly in my eclipse.but ...
2
votes
1answer
1k views

How to write video file in OpenCV 2.4.3

I am using OpenCV 2.4.3 to read and write a video file. My code is like this: cv::VideoCapture video; video.open ( "D:\\testVideo.avi" ); cv::VideoWriter output; output.open ( "D:\\outputVideo.avi", ...
0
votes
1answer
100 views

Blank frames when explicitly copying pixel values in OpenCV

I have been porting some video processing code to C++ using OpenCV 2.4.3. The following test program closely mimics how my code will read each frame from a video, operate on its contents, and then ...

1 2 3 4