summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/imageProcessing/interfaces/int_cvhighgui.h
blob: f08ac40b98cfe9be102a764a89395a31b9f7e296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* 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 __INT_CVHIGHGUI_H__
#define __INT_CVHIGHGUI_H__

#ifdef  __cplusplus
extern "C" {
#endif


#include "types.h"
#include "opencv2/highgui.hpp"

#define g2d0CV_LoadImageim0(filename,name_size,loadtype) imcvLoadImages(filename,loadtype)
#define g2im0CV_ShowImageu80(winname,win_size,img) imcvShowImages(winname,img)
#define im0CV_ShowImageu80(img) imcvShowImages("",img) 
#define d0CV_WaitKeyu80(delay) cvWaitKey(delay)
#define g2im0CV_SaveImageu80(filename,name_size,img) cvSaveImage(filename,img,NULL)	

#ifdef  __cplusplus
} /* extern "C" */
#endif

#endif  /*__INT_CVHIGHGUI_H__*/