diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/cvutils.hpp	Sun Nov 08 10:33:41 2009 -0500
@@ -0,0 +1,10 @@
+#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