view include/cvutils.hpp @ 9:eb38637f338d

created cvutils
author Nicolas Saunier <nico@confins.net>
date Sun, 08 Nov 2009 10:33:41 -0500
parents
children e77e2fd69b02
line wrap: on
line source

#ifndef CVUTILS_HPP
#define CVUTILS_HPP

#include "opencv/cxtypes.h"

IplImage* allocateImage(const int& width, const int& height, const int& depth, const int& channels);

IplImage* allocateImage(const CvSize& size, const int& depth, const int& channels);

#endif