Ask Your Question

Elec's profile - activity

2018-04-08 13:20:11 -0600 received badge  Notable Question (source)
2017-09-10 16:35:08 -0600 received badge  Good Question (source)
2016-10-16 06:06:01 -0600 received badge  Popular Question (source)
2013-01-12 06:54:28 -0600 received badge  Nice Question (source)
2012-11-25 05:48:21 -0600 commented answer What is the Difference between Installation OpenCV by Using the Pre-built Libraries & by Making Own Libraries from the Source Files ?

Thanks Daniil..

2012-11-09 11:50:16 -0600 commented answer What is the Difference between Installation OpenCV by Using the Pre-built Libraries & by Making Own Libraries from the Source Files ?

Hello Mr Daniil,

I downloaded OpenCV-2.4.2 and I couldn't find any exe(auto run) file there.How ever I extracted that in to my C:\ directory and followed the process in this video>> https://www.youtube.com/watch?v=cgo0UitHfp8&feature=plcp

I have VS 2008 version. According to the video First I Added OpenCV to system variables and next build Visual Studio project. Added all the libraries and completed according to the video.

But When I debug my project it says>> The application has failed to start because tbb_debug.dll was not found.

So Mr Daniil, 1)Are there any wrong in my installation or this video? 2)Did I completed the installation process correct?

Thank U.

2012-11-06 10:18:38 -0600 commented question When I Debug a sample program I got following error message ?

Hello sammy, I'm new to these things..could u please tell me which line should I change to show the image.Or how I show the image using open CV.What's wrong with this?

2012-11-05 07:34:58 -0600 commented answer What is the Difference between Installation OpenCV by Using the Pre-built Libraries & by Making Own Libraries from the Source Files ?

Thanks a lot Daniil

2012-11-04 19:36:12 -0600 commented question When I Debug a sample program I got following error message ?

Hello sammy, I'm new to these things..could u please tell me which line should I change to show the image.Or how I show the image using open CV.What's wrong with this?

2012-11-04 11:15:55 -0600 received badge  Editor (source)
2012-11-04 11:14:11 -0600 asked a question When I Debug a sample program I got following error message ?

I'm using OpenCV2.4.2 and Visual Studio 2008

This is the error message

The program '[4060] OpenCV_sample.exe: Native' has exited with code -1 (0xffffffff).

This is the sample program

I included all the libraries which need here. using namespace cv; using namespace std;

int main( int argc, char** argv )
{ 
if( argc != 2) 
{
 cout <<" Usage: display_image ImageToLoadAndDisplay" << endl;
 return -1;
}

Mat image;
image = imread(argv[1], CV_LOAD_IMAGE_COLOR);   // Read the file

if(! image.data )                              // Check for invalid input
{
    cout <<  "Could not open or find the image" << std::endl ;
    return -1;
}

namedWindow( "Display window", CV_WINDOW_AUTOSIZE );// Create a window for display.
imshow( "Display window", image );                   // Show our image inside it.

waitKey(0); // Wait for a keystroke in the window
return 0;
}
2012-11-03 00:20:39 -0600 commented answer What is the Difference between Installation OpenCV by Using the Pre-built Libraries & by Making Own Libraries from the Source Files ?

Hello Mr.Daniil,

First many thanks 4 your reply.

So I have simple problem. When we install OpenCV using pre-built libraries;

1.First we have to install CMAKE.

2.Then Extract OpenCV and configure opencv with visual studio using CMAKE.

3.Next add OpenCV library to the system path.

Are these steps correct?..So is the use of the CMAKE is configure opencv with Visual Studio?What is the use of CMAKE?

I must be thankful to u if u kindly answer these questions.

Thank U.

2012-11-02 22:49:43 -0600 received badge  Supporter (source)
2012-11-02 22:49:20 -0600 received badge  Critic (source)
2012-11-02 22:49:05 -0600 received badge  Scholar (source)
2012-11-01 15:38:43 -0600 received badge  Student (source)
2012-11-01 12:44:08 -0600 asked a question What is the Difference between Installation OpenCV by Using the Pre-built Libraries & by Making Own Libraries from the Source Files ?

Hello,

I need 2 know the Difference between Installation OpenCV

1. By Using the Pre-built Libraries ?
2. By Making Own Libraries from the Source Files ?

When we do first one we have to only download OpenCV new version and extract it, and configure it with Visual studio using CMake.

But why we are going to download OpenCV libraries and others using TortoiseGit hub(it takes many time) ? Are there any special advantage of that?

Could u please answer these questions...

Thank U, Elec.

2012-10-22 08:03:31 -0600 asked a question SVN Checkout Fail & OpenCV-2.4.2.exe is not working..?

Hello Everyone,

My OS is 32bit and windows Xp Service Pack3.And I'm new to OpenCV.

1)Can I install the latest version of OpenCV-2.4.2.exe.?It didn't work only extracted the files.

2)I successfully installed cmake-2.8.9-win32-x86 & TortoiseSVN-1.7.10.23359-win32-svn-1.7.7,but when I do SVN checkout it shows following message.Why is that?

Unable to connect to a repository at URL 'http://code.opencv.org/svn/opencv/trunk' Could not open the requested SVN filesystem

3)Can I use OpenCV-2.4.2.exe,cmake-2.8.9-win32-x86 & TortoiseSVN-1.7.10.23359-win32-svn-1.7.7 on my OS..?If not what should I use?

I must be thankful to u if u will kindly reply this questions soon.

ThankU, Elec