CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Vilnor

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    1,763

    Re: capture video from 2 webcams

    int SetCaptureParameters(HWND VideoCap)
    {
    res=1;
    Form1->Panel1->Caption=IntToStr(DriverNumber);
    res&=capDriverConnect(VideoCap, DriverNumber);
    res&=capDriverGetCaps(VideoCap,...
  2. Replies
    3
    Views
    1,763

    Re: capture video from 2 webcams

    LRESULT CALLBACK capErrorCallback(HWND hWnd, int nID, LPCSTR lpsz)
    { return 1;}

    LRESULT PASCAL capOnFrameCallback(HWND hWnd, LPVIDEOHDR lpVHdr)
    { return OnFrame(lpVHdr);}

    LRESULT CALLBACK...
  3. Replies
    3
    Views
    1,763

    capture video from 2 webcams

    can you tell me how to make a program in c++ builder 5
    which captures images from 2 or 3 webcams at the same time
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured