Click here to Skip to main content
15,883,915 members
Articles / Desktop Programming / ATL
Article

Simultaneous Previewing & Video Capture using DirectShow

Rate me:
Please Sign up or sign in to vote.
4.35/5 (33 votes)
15 Apr 2004CPOL3 min read 645.7K   20.1K   140   210
A method for previewing and framegrabbing simultaniously from webcam using DirectShow.

Image 1

Introduction

This article explains a method to perform Previewing and Grabbing simultaneously from a webcam using DirectShow. Other than using the conventional ISampleGrabber interface, this application uses DirectShow VMR Filters & IPin Interfaces.

Background

There are many solutions for capturing and previewing but a few combining both. I tried to make an application which serves this purpose using ISampleGrabber and IVideoWindow interfaces. It worked well on Windows 2000 but showed reluctance on XP.

DirectShow "Windowless Sample" (Windowless mode in the Video Mixing Renderer) gives the clue for capturing frames while previewing.

Using the code

I had created a class named CVMR_Capture. To use this class:

  • Insert the VMR_Capture.h and VMR_Capture.cpp files into your project.
  • Link strmiids.lib, quartz.lib in VC++ Project Settings.
  • Add a static control into your dialog resource.
  • Add a member variable for that static control.
  • Declare a member variable of CVMR_Capture.

The public interfaces provided are:

int EnumDevices(HWND hList);
HRESULT Init(int iDeviceID,HWND hWnd,int iWidth,int iHeight);
DWORD GetFrame(BYTE ** pFrame);
BOOL StopVMR();
BOOL Pause();
DWORD ImageCapture(LPCTSTR szFile);
DWORD GrabFrame();
  • int EnumDevices(HWND hList); (Optional)

    Enumerates the available devices connected to the computer. HWND is the HANDLE to a combo box which displays the connected devices.

  • HRESULT Init(int iDeviceID,HWND hWnd,int iWidth,int iHeight);

    Initializing. iDeviceID is the selected device index (from combo Box), hWnd is the handle of the display window, iWidth and iHeight are the expected resolution (e.g.: 320/240). The display will adjust itself to the size of the window.

  • DWORD GrabFrame();

  • DWORD GetFrame(BYTE ** pFrame);

    Call these functions to get the captured buffer. GrabFrame(); will grab the image. Store it in a buffer and return value is the size of the buffer. User can get the buffer pointer by calling GetFrame(BYTE ** pFrame) which returns the size of the buffer.

    Don't delete the "pFrame" buffer value, which will be deleted by the class destructor. Use the Pointer(pFrame) for processing or copying the memory to a user allocated Buffer.

  • BOOL StopVMR();

    Stops previewing.

  • BOOL Pause();

    Pauses capturing. Call this method again to restart capturing.

  • DWORD ImageCapture(LPCTSTR szFile);

    Capture and write the Raw Image BYTES (RGB) to a file provided.

Special Functions and explanation

bool BindFilter(int deviceId, IBaseFilter **pFilter);
HRESULT InitializeWindowlessVMR(HWND hWnd);
HRESULT InitVideoWindow(HWND hWnd,int width, int height);
void StopCapture();
void CloseInterfaces(void);
void DeleteMediaType(AM_MEDIA_TYPE *pmt);
bool Convert24Image(BYTE *p32Img,BYTE *p24Img,DWORD dwSize32);
  • bool BindFilter(int deviceId, IBaseFilter **pFilter);

    Binds the Filer to the given device ID.

  • HRESULT InitializeWindowlessVMR(HWND hWnd);

    VMR initialization to the HWND provided.

  • HRESULT InitVideoWindow(HWND hWnd,int width, int height);

    Adjust the Display Video Size according to the size of the display window.

  • void StopCapture();

    Stops capturing.

  • void CloseInterfaces(void);

    Releases & deletes the interfaces /allocated memory.

  • void DeleteMediaType(AM_MEDIA_TYPE *pmt);

    Deletes Media Type object.

  • bool Convert24Image(BYTE *p32Img,BYTE *p24Img,DWORD dwSize32);

    The captured image using VMR is 32 bit RGB. This function will convert the 32 bit RGB to 24 bit RGB.

Points of Interest

This class is tested on Windows 2000 & Windows XP with DirectX9.0. Both VMR7 & VMR9 are supported. I haven't included the DirectShow Event Handling part in this sample. Please attach the required exception/error handling mechanism when you use.

Please drop me an email about any bugs, or suggestions to enhance the class. Your suggestions and guidance will be most valuable.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generaldirectx 9.0 Pin
ani_ikram30-Jul-08 18:29
ani_ikram30-Jul-08 18:29 
GeneralCOMPILE ERROR Pin
Collin Xie7-May-08 19:18
Collin Xie7-May-08 19:18 
GeneralRe: COMPILE ERROR Pin
Ahmed Charfeddine18-Aug-08 6:00
Ahmed Charfeddine18-Aug-08 6:00 
GeneralColor adjustment Pin
renoreballos4-Jan-08 4:08
renoreballos4-Jan-08 4:08 
Generalhi i have some question Pin
mocderfd29-Nov-07 21:52
mocderfd29-Nov-07 21:52 
QuestionCapture Image to Bitmap Pin
zecapt11-Oct-07 23:25
zecapt11-Oct-07 23:25 
AnswerRe: Capture Image to Bitmap [modified] Pin
PraxUnited31-Oct-07 2:37
PraxUnited31-Oct-07 2:37 
QuestionImageCapture() error Pin
key_4615-Sep-07 6:01
key_4615-Sep-07 6:01 
Hi, first, congratulations for this article, i have successfully implemented amost all the code (removing MFC), but there is a problem... when i call ImageCapture(), it always return a 225kb empty (filled with 0x00) raw file... can you help me?
Generaldshow not in directory??helpme.. Pin
jefryn15-Aug-07 17:54
jefryn15-Aug-07 17:54 
Generaltoo slow Pin
wharry819-Jul-07 4:02
wharry819-Jul-07 4:02 
QuestionSave picture in picture video streams to avi file [modified] Pin
longlac6-Mar-07 9:31
longlac6-Mar-07 9:31 
Generalrecompiling capture Pin
xavier662-Feb-07 0:38
xavier662-Feb-07 0:38 
GeneralRe: recompiling capture Pin
mpawluk31-Mar-07 11:02
mpawluk31-Mar-07 11:02 
QuestionRe: recompiling capture Pin
minimal_objects13-Jun-07 5:44
minimal_objects13-Jun-07 5:44 
QuestionCant add VMR9 in DirectX ??? [modified] Pin
~Jabeen~21-Dec-06 0:00
~Jabeen~21-Dec-06 0:00 
AnswerRe: Cant add VMR9 in DirectX ??? Pin
Khathar25-Dec-06 21:05
Khathar25-Dec-06 21:05 
QuestionRe: Cant add VMR9 in DirectX ??? Pin
S.K. Gupta27-Dec-06 18:36
S.K. Gupta27-Dec-06 18:36 
Questionwhere is Dshow.h? Pin
Khathar18-Dec-06 20:38
Khathar18-Dec-06 20:38 
AnswerRe: where is Dshow.h? Pin
~Jabeen~25-Dec-06 17:35
~Jabeen~25-Dec-06 17:35 
GeneralCapture and preview stop if computer is locked Pin
gerbilvomit27-Nov-06 10:48
gerbilvomit27-Nov-06 10:48 
GeneralRe: Capture and preview stop if computer is locked Pin
Member 365746024-Feb-08 21:14
Member 365746024-Feb-08 21:14 
GeneralImage not refreshing Pin
nripun14-Nov-06 0:35
nripun14-Nov-06 0:35 
GeneralSave the captured video Pin
shital_harode@rediffmail.com6-Nov-06 0:56
shital_harode@rediffmail.com6-Nov-06 0:56 
GeneralSave the captured video Pin
shital_harode@rediffmail.com6-Nov-06 0:55
shital_harode@rediffmail.com6-Nov-06 0:55 
GeneralSave the captured video Pin
shital_harode@rediffmail.com6-Nov-06 0:55
shital_harode@rediffmail.com6-Nov-06 0:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.