-lhighgui -lcv -lcxcore -lcvaux -lcvcam
C:\Program Files\OpenCV\bin
:
W zakładce "Biblioteki" dodaj wpis C:\Program Files\OpenCV\lib
:
Wstaw teraz do zakładek "Pliki nagłówkowe C" oraz "Pliki nagłówkowe
C++" następujące ścieżki dostępu:
C:\Program Files\OpenCV\cxcore\include
C:\Program Files\OpenCV\cv\include
C:\Program Files\OpenCV\otherlibs\highgui
C:\Program Files\OpenCV\cvaux\include
C:\Program Files\OpenCV\otherlibs\cvcam\include
1 | podstawowe struktury i operacje | Array, Matrix, Dynamic Data, Sequences, Sets, Graphs, Trees, etc. |
2 | Przetwarzanie i analiza obrazu : | Drawing, Gradient, Edge, Corner, Sampling, Interpolation, Geometrical Transfrom, Morphological Operation, Filter, Color Conversion, Pyramids, Connected Components, Contour Moment, Image Transform, Histogram, Utility. |
3 | Structural Analysis : | Contour, Geometry, planar Subdivision. |
4 | Analiza ruchu i śledzenie obiektów : | Accumulation of Background Statistics, Motion Template, Object Tracking, Optical Flow, Estimators. |
5 | Rozpoznawanie obiektów : | Eigen Object (PCA), Embedded HMM. |
6 | Camera Calibration and 3D Reconstruction : | Camera Calibration, Pose Estimation, View Morphing, Epipolar Geometry. |
7 | Experimental Functionality : | Object Detection, Stereo Correspondence, 3D Tracking. |
8 | GUI and Video Acquisition : | Window, Image Handling, Video I/O, Support System. |
Po więcej szczegółów zajrzyj do "<opencv_root>\OpenCV\docs".
Λ Do góry
IPL_DEPTH_32S, IPL_DEPTH_32F and IPL_DEPTH_64F are supported */
char colorModel[4];
/* ignored by OpenCV */
char channelSeq[4];
/* ditto */
int dataOrder;
/* 0 - interleaved color channels, 1 - separate color channels.
cvCreateImage can only create interleaved images */
int origin;
/* 0 - top-left origin, 1 - bottom-left origin (Windows bitmaps style) */
int align;
/* Alignment of image rows (4 or 8). OpenCV ignores it and
uses widthStep instead */
int width;
/* image width in pixels */
int height;
/* image height in pixels */
struct _IplROI
*roi;
/* image ROI. if NULL, the whole image is selected */
struct _IplImage *maskROI; /* must be NULL */
void *imageId;
/* ditto */
struct _IplTileInfo *tileInfo;
/* ditto */
int imageSize;
/* image data size in bytes (==image->height*image->widthStep
in case of interleaved data)*/
char *imageData;
/* pointer to aligned image data */
int widthStep;
/* size of aligned image row in bytes */
int BorderMode[4];
/* ignored by OpenCV */
int BorderConst[4];
/* ditto */
char *imageDataOrigin;
/* pointer to very origin of image data (not necessarily aligned) -
needed for correct deallocation */
}IplImage;
Λ Do góry
Powyższe jest tłumaczeniem poradnika zamieszczonego na www.cypax.net