Tutorial:Inroduction to OpenCv
If you want to use OpenCV with Visual Studio than follow my Previous post “Tutorial:How to Build OpenCV in VS 2008“ Some Important Command: Allocate an image: IplImage* cvCreateImage(CvSize size, int depth, int channels); size: cvSize(width,height); depth: pixel depth in bits: IPL_DEPTH_8U, IPL_DEPTH_8S, IPL_DEPTH_16U,IPL_DEPTH_16S, IPL_DEPTH_32S, IPL_DEPTH_32F, IPL_DEPTH_64F channels: Number of channels per […]
Read More