Frequently Asked Questions / Troubleshootings / HOWTOs

General Questions

How to install OpenCV properly?

Read installation guide

How can I get acquainted with OpenCV fast?

Where do I submit Bug reports for the computer vision library?

Send email to OpenCV@yahoogroups.com  Subject: BUG <....your title...>

How do I send bug reports for the Intel® Image Processing Library?

Send email to developer_support@intel.com

How do I join the web group for the library?

Send email to OpenCV-subscribe@yahoogroups.com, after you are a member and select your logon, you can read the web group at http://groups.yahoo.com/group/OpenCV

How do I modify the web group so that I don't receive email everyday?

To get the messages real time, or once a day as a daily digest, you can go to http://groups.yahoo.com/mygroups and choose your setting from the pull down list to the right of OpenCV.;

Ok, I found the group completely useless for me. How can I unsubscribe?

Mail to OpenCV-unsubscribe@yahoogroups.com with subject [OpenCV] and arbitrary message contents.

How do I get support for the Image Processing Library (IPL)?

For the Image Processing Library, all support questions should go through:
http://support.intel.com/support/performancetools/support.htm (for release libraries)
https://premier.intel.com/scripts-quad/welcomeplsb.asp (for beta libraries)

In beta 3 IPL and OpenCV conflict. How to resolve it?

To be completely independent from IPL, OpenCV duplicates declarations of IplImage and few other structures and constants if it is not told explicitly that IPL is present. Defining HAVE_IPL before including OpenCV headers or putting "#include <ipl.h>" before OpenCV headers resolves the conflict.

Does OpenCV works on other processors?

Yes, OpenCV itself is open source and it is quite portable, especially across 32-bit platforms. On the other hand, OpenCV can run much faster on Intel processors because of IPP.

Windows® OS related Qs:

When I try to build one of the apps, I get an error, streams.h not found.

You need DirectShow SDK that is now a part of DirectX SDK.

  1. Download DirectX SDK from msdn.microsoft.com/directx/ (It's huge, but you can download it by parts). If it doesn't work for you, consider HighGUI that can capture video via VFW or MIL
  2. Install it TOGETHER WITH SAMPLES.
  3. Open <DirectXSDKInstallFolder>\samples\Multimedia\DirectShow\BaseClasses\baseclasses.dsw. If there is no such file, it is that you either didn't install samples or the path has changed, in the latter case search for streams.h and open a workspace file (workspace files for Developer Studio .NET have different extension) located in the same folder.
  4. Build the library in both Release in Debug configurations.
  5. Copy the built libraries (in DirectX 8.x they are called strmbase.lib and strmbasd.lib) to <DirectXSDKInstallFolder>\lib.
  6. In Developer Studio add the following paths:

    <DirectXSDKInstallFolder>\include <DirectXSDKInstallFolder>\samples\Multimedia\DirectShow\BaseClasses
    to the includes' search path (at Tools->Options->Directories->Include files in case of Developer Studio 6.0)

    Add <DirectXSDKInstallFolder>\lib to the libraries' search path (at Tools->Options->Directories->Library files in case of Developer Studio 6.0)

    NOTE: PUT THE ADDED LINES ON THE VERY TOP OF THE LISTS, OTHERWISE YOU WILL STILL GET COMPILER OR LINKER ERRORS. This is necessary, because Developer Studio 6.0 includes some older DirectX headers and libs that conflict with new DirectX SDK versions.

  7. Enjoy!

After installing DirectX SDK I'm still getting linker error about undefined or redefined "TransInPlace" filter class constructors etc.

Read the instructions from the previous answer, especially about the order of search directories.

When I use try to use cvcam, it just crashes

Make sure, you registered ProxyTrans.ax and SyncFilter.ax

CamShiftDemo can not be run

Make sure, you registered CamShift.ax and you have DirectShow-compatible camera

How to register *.ax (DirectShow filter)?

Open the file (within explorer) using regsvr32.exe (under Win2000 it is done by Open with->Choose Program...->Browse...->c:\windows\system32\regsvr32.exe (path may be different). You may remember association to save clicks later.

Filter couldn't be registered (regsvr32 reports an error)

The most probable reason is that the filter requires some DLLs that are not in the path. In case of OpenCV make sure <OpenInstallFolder>\bin is in the path

LKDemo / HMMDemo reports an error during startup and no the view is completely black

To run either of these apps you will need VFW-compatible camera. At startup the programs iterate through registered video capture devices. It might be that they could not find one. Try to select the camera manually by pressing "tune capture parameters" (camera) toolbar button. Then, try to setup video format (the button on the left from camera) to make the camera work.

cvd.lib or cvd.dll are not found

cvd.dll means Debug version of cv.dll and cvd.lib is the import library for cvd.dll. Open <OpenCVInstallFolder>\_dsw\opencv.dsw, select "cv" as active project and select "Win32 Debug" configuration. Build the library and you will get bin\cvd.dll and lib\cvd.lib files. The same is true for all of OpenCV components - name of binary, ending with d means Debug version.

When compiling HighGUI I get the error message "mil.h is not found"

mil.h is a part of Matrox Imaging Library (MIL) that is usually supplied with Matrox (or compatible) framegrabbers, such as Meteor, Meteor II etc.

How can I debug DirectShow filter?

How can I create DeveloperStudio project to start playing with OpenCV

(note: this is a lengthy answer)

To create your own OpenCV-based project in Developer Studio from scratch do the following:

  1. Within Developer Studio create new application:
    1. select from menu "File"->"New..."->"Projects" tab. Choose "Win32 Application" or "Win32 console application" - the latter is the easier variant and the both sample projects have this type.
    2. type the project name and choose location
    3. you may create own workspace for the project ("Create new workspace") or include the new project into the currently loaded workspace ("Add to current workspace").
    4. click "next" button
    5. choose "An empty project", click "Finish", "OK".
    After the above steps done Developer Studio will create the project folder (by default it has the same name as the project), <project name>.dsp file and, optionally, <project name>.dsw,.ncb ... files if you create own workspace.
  2. Add a file to the project:
  3. Customize project settings:
  4. Add dependency projects into workspace:
  5. That's it. Now compile and run everything.

Linux Related Qs:

TODO

Technical Questions on Library use:

How to access image pixels

(The coordinates are 0-based and counted from image origin, either top-left (img->origin=IPL_ORIGIN_TL) or bottom-left (img->origin=IPL_ORIGIN_BL)

There are functions that work with arbitrary (up to 4-channel) images and matrices (cvGet2D, cvSet2D), but they are pretty slow.

How to access matrix elements?

The technique is very similar. (In the samples below i - 0-based row index, j - 0-based column index)

How to process my data with OpenCV

Suppose, you have 300x200 32-bit floating point array, that resides in 60000-element array.

int cols = 300, rows = 200;
float* myarr = new float[rows*cols];

// step 1) initializing CvMat header
CvMat mat = cvMat( rows, cols,
                   CV_32FC1, // 32-bit floating-point, single channel type
                   myarr // user data pointer (no data is copied)
                   );
// step 2) using cv functions, e.g. calculating l2 (Frobenius) norm
double norm = cvNorm( &mat, 0, CV_L2 );

...
delete myarr;
Other scenaria are described in the reference manual. See cvCreateMatHeader, cvInitMatHeader, cvCreateImageHeader, cvSetData etc.

How to load and display image

/* usage: prog <image_name> */
#include "cv.h"
#include "highgui.h"

int main( int argc, char** argv )
{
    IplImage* img;
    if( argc == 2 && (img = cvLoadImage( argv[1], 1)) != 0 )
    {
        cvNamedWindow( "Image view", 1 );
        cvShowImage( "Image view", img );
        cvWaitKey(0); // very important
        cvDestroyWindow( "Image view" );
        cvReleaseImage( &img );
        return 0;
    }
    return -1;
}

How to find and process contours

Look at squares demo

How to calibrate camera using OpenCV

TODO