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/interfaces/int_cvcore.h | |
parent | fbd135ca716c6f5ee8f91425cff6bef3c27dc6b6 (diff) | |
download | scilab2c-ea1e22e36a9559448919d7ae2dd24a25743861ec.tar.gz scilab2c-ea1e22e36a9559448919d7ae2dd24a25743861ec.tar.bz2 scilab2c-ea1e22e36a9559448919d7ae2dd24a25743861ec.zip |
Basic image prcessing working for RPi
Diffstat (limited to 'src/c/imageProcessing/interfaces/int_cvcore.h')
-rw-r--r-- | src/c/imageProcessing/interfaces/int_cvcore.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c/imageProcessing/interfaces/int_cvcore.h b/src/c/imageProcessing/interfaces/int_cvcore.h index 9d83caac..5ae0055f 100644 --- a/src/c/imageProcessing/interfaces/int_cvcore.h +++ b/src/c/imageProcessing/interfaces/int_cvcore.h @@ -19,11 +19,12 @@ extern "C" { #include "types.h" - +#include "cvcore.h" #define d0d0g2d0CV_CreateImageim0(width,height,depth,depth_size,no_of_ch) \ imcvCreateImages(width,height,depth,no_of_ch) +#define im0CV_GetImgSized2(img,imgsize) imcvGetImgSizes(img,imgsize) #ifdef __cplusplus } /* extern "C" */ #endif |