0
votes
2answers
29 views

Create a custom class for this directshow system, cant figure out how

I'm trying to learn directshow, and computer vision with opencv. But to keep the code cleaner I want to "put away" (create a class) the directshow code that I've borrowed from the internet. The code ...
0
votes
2answers
59 views

Multi core, make function called from inside function to run on second core. directshow, opencv

So, I've been working on a real time tracking system with opencv. A couple of days ago I had to start using directshow (which was totally new for me) because I needed higher resolution from the ...
0
votes
2answers
52 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
136 views

converting a UYVY FFmpeg

I want to read and show a video using opencv. I've recorded with Direct-show, the Video has UYVY (4:2:2) codec, since opencv can't read that format, I want to convert the codec to an RGB color model, ...
0
votes
1answer
506 views

Reading a video with openCV

I have a video engine2.avi that I want to read and show with openCV. here 's the code that I used: #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include ...
0
votes
1answer
189 views

How to programatically disable the auto-focus of two webcams in opencv

i have big trouble calibrate two cameras and get the pose of them because of the autofocus. I am useing two logitech webcams of same type, openCV and C++. I tried this: cv::Size ...
0
votes
0answers
156 views

Using webcam with OpenCV - 'can't initliaze capture' error [closed]

I have installed OpenCV b3.1 but I am not able to run applications using my off-the-shelf USB webcam. I get error "Can't initialize camera. Change the format". I am not even able to run the apps what ...
0
votes
1answer
58 views

why the CCameraDS class can not open more than 3 cameras in the same time?

As the opencv library does not provide function to open the specified camera,so i use the CCameraDS class implements with DirectShow. Unfortunately, when i open more than 3 cameras in the same time, ...
0
votes
1answer
612 views

Video Recording from a DVR using EMGU or DirectShow C#

I'm in need of recording video from a 4 channel DVR from .net C#. I've looked at EMGU a Opencv .net wrapper as well as the DirectShow .net library to do this. I've decided to give EMGU a go and is ...
-1
votes
1answer
342 views

Write to Directshow source filter

I have got a directshow source filter which is based on http://tmhare.mvps.org/downloads/vcam.zip. I want to write the webcam frames that has been manipulated using opencv by my (separate) ...
0
votes
1answer
188 views

cvCapture and directshow

I need to read an avi file and process data from it in OpenCV. Should I use cvCapture or directshow? What are the criterions? What are the advantages of each? Thanks
1
vote
1answer
203 views

Still pin image capture responding time

I got a problem of the responding time of capturing an image from the still pin. I have system running video stream at 320*480 from the capture pin and push a button to snap a 720P image from the ...
0
votes
2answers
456 views

DirectShow and openCV. Read video file and process

I used search on StackOverflow, but I didn't find the answer. I'm developing an application and use OpenCV, but I need to work with different videos (mostly *.avi), so I decided to use DirectShow. I ...
0
votes
2answers
3k views

how can I use the openCV FFMPEG video I/O rather than the DirectShow one in Windows?

So I'm trying to write a video using the openCV videoWriter as such: writer=cv.CreateVideoWriter(path+"test_output.avi",-1,fps,(W,H),1) So instead of supplying the FOURCC I supplied -1 in order to ...
0
votes
0answers
669 views

How to use OpenCV with DirectShow

DirectShow has great capturing and rendering abilities but no image processing capability. I found an article on how to use opencv with directshow. It is probably old. I could not find Proxytrans ...
0
votes
1answer
131 views

Cannot open include file: 'iProxyTrans.h' - old Directshow project?

I inherited a project that used old opencv, directx and directshow libraries and I'm trying to be able to compile it on a current Windows 7 VS 2010 machine. Two of the includes that are causing ...
0
votes
2answers
679 views

Grab Video Stream from FireWire

I'm trying to stream a video from a camera ( Sony HVR-Z1E ) over FireWire to my Computer. The incoming pictures/stream shall be processed further by some functions which expect the CVMat format ( from ...
0
votes
1answer
364 views

how to take video and audio from a stream and output to a video file as well as images

I am currently trying to make a program that will take a stream coming in, like a webcam and a microphone, and I am trying to save both the video and audio into an AVI file and be able to save out the ...
0
votes
1answer
686 views

Is it possible to record audio with OpenCV

I am trying to record a video in OpenCV from a stream such as a webcam with audio. I am currently writing the application to use DirectShow to grab data from the stream and to pass that data into an ...
1
vote
2answers
175 views

Best way to load in a video and to grab images using c++

I am looking for a fast way to load in a video file and to create images from them at certain intervals ( every second, every minute, every hour, etc.). I tried using DirectShow, but it just ran too ...
0
votes
0answers
176 views

NUUO SCB-7016 and DirectShow/OpenCV

I just bought the capture card, NUUO SCB-7016, and need to know if it is possible to use directshow with it. We tried running some samples from DirectShow, but DirectShow doesn’t recognize the capture ...
1
vote
2answers
372 views

loading video files into a buffer in C++

I am currently trying to create a program that takes a video file, usually an AVI, and trying to convert it into images. So far I got the process working perfectly and could be left alone if needed. ...
4
votes
3answers
747 views

3 Camera Capture with videoInput or anything else

I am working on project to produce High Dynamic Range Video in real time. The goal is to do it with 3 off the shelf webcams (Microsoft LiveCam Studio). I started off trying to use OpenCV, but I was ...
0
votes
1answer
2k views

OpenCV videoInput.h Capture speed different than write speed

I am trying to write recording software that would write a video stream coming in the computer to an avi file. I am using OpenCV and accompanied videoInput.h to handle the directshow code. Just in ...
4
votes
1answer
2k views

Using DirectShow to capture frames and OpenCV to Process

I have made two different solutions for Video to Image Capturing and was wondering if I could intertwine the best of both worlds. I am currently using DirectShow to load in an avi file and to capture ...
0
votes
2answers
3k views

How to load image data from resource bitmap file for directshow filter?

I need put one bitmap image to my directshow filter. Then user can use this bitmap image and do not care where is it. First, I import this bitmap file into resource bundle, and get one IDB_BITMAP1. ...
1
vote
3answers
3k views

Visual C++ AVI writer function to push bitmaps (640x480) to AVI file?

I have a video capture card with SDK for Visual C++. Color frames (640 x 480) become available to me at 30 fps in a callback from the SDK. Currently, I am writing the entire image sequence out one ...
4
votes
3answers
1k views

CoInitializeEx fails when calling OpenCV method cvLoadImage()

I am trying to integrate some OpenCV functionality into my application. Currently I have code set up with DirectShow to get a video feed from my camera, which is then showed in an MFC window. This ...