CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 2006
    Posts
    98

    Image Processing

    Hey,

    I am writing some software to perform real-time image analysis on the video captured by a USB webcam. I don't know much about webcams though. How do they store their captured files? Is it as an image file (.bmp?) or as a video file?

    I need to be able to load the webcam's current frame into my program, to perform the analysis, so it is a great help if it is stored temporarily as a .bmp file somewhere, until the next frame is captured.

    Also, would there be any way of sending out commands to the webcam to "ask" for the next frame, rather than using the frame rate of the webcam to churn out images. I say this because I only want to perform one analysis on each image, and letting my software just repeat an analysis loop has no way of knowing whether the current frame is a "new" (not yet been alaysed) or "old" (already been analysed) frame.

    Alternatively, is there a way to cause the updating of each frame capture, to call the analysis function in my program?

    Thanks.

  2. #2
    Join Date
    Aug 1999
    Location
    <Classified>
    Posts
    6,882

    Re: Image Processing

    Regards,
    Ramkrishna Pawar

  3. #3
    Join Date
    Apr 2010
    Posts
    2

    Re: Image Processing

    This site carries all the answers for your issues.

    Try once.


    http://www.silverfast.com/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured