diff options
author | siddhu8990 | 2016-08-25 10:29:32 +0530 |
---|---|---|
committer | siddhu8990 | 2016-08-25 10:29:32 +0530 |
commit | ea1e22e36a9559448919d7ae2dd24a25743861ec (patch) | |
tree | 08126b46fe4fbeccdbc323af2c260ab9836a235f /src/c/imageProcessing/includes/cvimgproc.h | |
parent | fbd135ca716c6f5ee8f91425cff6bef3c27dc6b6 (diff) | |
download | Scilab2C_fossee_old-ea1e22e36a9559448919d7ae2dd24a25743861ec.tar.gz Scilab2C_fossee_old-ea1e22e36a9559448919d7ae2dd24a25743861ec.tar.bz2 Scilab2C_fossee_old-ea1e22e36a9559448919d7ae2dd24a25743861ec.zip |
Basic image prcessing working for RPi
Diffstat (limited to 'src/c/imageProcessing/includes/cvimgproc.h')
-rw-r--r-- | src/c/imageProcessing/includes/cvimgproc.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/c/imageProcessing/includes/cvimgproc.h b/src/c/imageProcessing/includes/cvimgproc.h new file mode 100644 index 0000000..5d982e4 --- /dev/null +++ b/src/c/imageProcessing/includes/cvimgproc.h @@ -0,0 +1,31 @@ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + +#ifndef __CVIMGPROC_H__ +#define __CVIMGPROC_H__ + +#ifdef __cplusplus +extern "C" { +#endif + + +#include "types.h" +#include "opencv2/core/core.hpp" +#include "opencv2/imgproc/imgproc.hpp" + +uint8 imcvCvtColor(IplImage* src, IplImage* dst, char* code); + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*__CVIMGPROC_H__*/ |