Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6578847
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:49:25+00:00 2026-05-25T15:49:25+00:00

I am using OpenCV and trying to apply a Gaussian Blur to an incoming

  • 0

I am using OpenCV and trying to apply a Gaussian Blur to an incoming video stream. I basically use cvQueryFrame to remove a frame, blur it and display the frame onto the screen. The thing is though, my video gets stuck on the first frame after I apply the blur….anyone know why? its basically showing one frame instead of a video. The second I remove the blur it starts outputting video again.

#include "cv.h"
#include "highgui.h"
#include "cvaux.h"

#include <iostream>
using namespace std;

int main()
{

//declare initial data
IplImage *grabCapture= 0; //used for inital video frame capture
IplImage *process =0; //used for processing
IplImage *output=0; //displays final output

CvCapture* vidStream= cvCaptureFromCAM(0);

cvNamedWindow ("Output", CV_WINDOW_AUTOSIZE);

int createimage=1;

while (1)
{

grabCapture= cvQueryFrame (vidStream);

if (createimage==1)
    {
        process= cvCreateImage (cvGetSize(grabCapture), IPL_DEPTH_16U, 3);

        createimage=0;

    }

*process=*grabCapture;
cvSmooth (process,process,CV_GAUSSIAN,7,7); //line that makes it display frame instead of video


cvShowImage("Output",process);

}


//clean up data
cvReleaseImage (&grabCapture);
cvReleaseImage (&process);
cvReleaseImage (&output);
cvReleaseCapture (&vidStream);


return 0;

}

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T15:49:25+00:00Added an answer on May 25, 2026 at 3:49 pm

    You are missing a call to cvWaitKey. This is the only way to tell OpenCV to process events and thus prevent the GUI from freezing.

    Try adding this line:

    cvWaitKey(10);
    

    after cvShowImage("Output",process);.

    Edit: here is the documentation for cvWaitKey

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to threshold red pixels in a video stream using OpenCV. I have
I'm trying to write a video using opencv's VideoWriter. Here's code: int main() {
I'm trying to play a video using opencv (the video is an avi file
Possible Duplicate: How to set ROI in OpenCV? I'm trying to use a smoothing/blur
I'm trying to do the following: receive video stream using gstreamer and process it
I'm trying to display an image using OpenCV. I have the following very basic
I am trying to write video using opencv. It is important for me to
I'm trying to apply opencv's Threshold function to a numpy array. I'm using the
I am trying to write a video processing application using OpenCV 2.4.2 (in Visual
I'm trying to create a basic video file using OpenCV (in Python). I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.