CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2011
    Posts
    1

    Identifying Blank Frames / scene change in a video clip

    Can anyone help me how write c++ code to identify a blank frame or scene change in a video clip. Am totally new to this issue, if my query is inappropriate please suggest me where can i put-up my post. Please suggest websites or links where I can find c++ code samples related to video processing & handling.

    Thanks

  2. #2
    Join Date
    Sep 2004
    Location
    Holland (land of the dope)
    Posts
    4,123

    Re: Identifying Blank Frames / scene change in a video clip

    Do you have any code already that loads and/or plays the videoclip ?

  3. #3
    Join Date
    Apr 2000
    Location
    Belgium (Europe)
    Posts
    4,626

    Re: Identifying Blank Frames / scene change in a video clip

    blank frames can be identified because each pixel in the image will be identical (within a certain threshold).
    scene changes are harder to solve. if you mean hard cutouts (screen fades to black within a few frames) that's fairly easy to detect.
    An actual camera change is hard to detect, it could be a change, it could be a fast flow of imagery causing rapid change in the image (fast camera movement, explosions, ...)

  4. #4
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,620

    Re: Identifying Blank Frames / scene change in a video clip

    scene change detection gives a lot of hits in google...
    Best regards,
    Igor

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