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

  • Home
  • SEARCH
  • 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 8679701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T21:02:28+00:00 2026-06-12T21:02:28+00:00

I have this nasty problem with opencv 2.4.2. I use VS 2012 to compile

  • 0

I have this nasty problem with opencv 2.4.2.
I use VS 2012 to compile this short test programm.

#include <cv.h>
#include <cxcore.h>
#include <highgui.h>

using namespace cv;

int main()
{
    Mat sudoku = imread("sudoku.jpg",0);
    namedWindow("Lines", CV_WINDOW_AUTOSIZE);

    imshow("Lines", sudoku);

}

Imshow is the problem. When I remove it, it runs without any problem. I found a tip here which said to use debug libs instead but it didn’t help.

  • 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-06-12T21:02:29+00:00Added an answer on June 12, 2026 at 9:02 pm

    First of all, you have to check if image is loaded correctly. To do this just check if image.data is NULL or not.

    Secondly, after calling imshow you have to call waitKey to show image:
    http://opencv.willowgarage.com/documentation/cpp/user_interface.html#cv-waitkey

    Here’s the whole code:

    #include <opencv2/opencv.hpp>
    #include <iostream>
    
    using namespace std;
    using namespace cv;
    
    int main()
    {
        Mat sudoku = imread("sudoku.jpg",0);
    
        if (sudoku.data == NULL)
        {
            cout << "No image found! Check path." << endl;
            return 1;//ERROR
        }
        else
        {
            namedWindow("Lines", CV_WINDOW_AUTOSIZE);
            imshow("Lines", sudoku);
            waitKey();//without this image won't be shown
            return 0;//OK
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using asp.net mvc 2.0(default binding model) and I have this problem. I
I have a nasty problem referencing resources when using a Maven project and Jar
We have a nasty little problem. In short we can detect if a screen
My team and I have this nasty problem with parsing a string received from
We have recently started using git and had a nasty problem when someone committed
I have this string 2012-06-27 16:17:06 and I want to convert it to GMT
I've got this nasty problem where sending multiple, large messages in quick succession from
I have a nasty problem. I want to get rid of a certain database
This is a nasty problem, and it might be that the design is just
I have a little, but nasty problem: I have a database with many records,

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.