summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/imageProcessing/interfaces/int_cvhighgui.hpp
diff options
context:
space:
mode:
Diffstat (limited to '2.3-1/src/c/imageProcessing/interfaces/int_cvhighgui.hpp')
-rw-r--r--2.3-1/src/c/imageProcessing/interfaces/int_cvhighgui.hpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/2.3-1/src/c/imageProcessing/interfaces/int_cvhighgui.hpp b/2.3-1/src/c/imageProcessing/interfaces/int_cvhighgui.hpp
new file mode 100644
index 00000000..05f260f6
--- /dev/null
+++ b/2.3-1/src/c/imageProcessing/interfaces/int_cvhighgui.hpp
@@ -0,0 +1,28 @@
+/* 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__
+
+
+#include "types.h"
+#include "opencv2/core/core.hpp"
+#include "opencv2/highgui/highgui.hpp"
+
+//#define g2d0CV_LoadImageim0(filename,name_size,loadtype) imcvLoadImages(filename,loadtype)
+#define g2d0CV_LoadImagemt0(filename,name_size,loadtype) imread(filename,loadtype)
+#define g2mt0CV_ShowImageu80(winname,win_size,img) imshow(winname,img)
+#define mt0CV_ShowImageu80(img) imshow("",img)
+#define d0CV_WaitKeyu80(delay) cvWaitKey(delay)
+#define g2mt0CV_SaveImageu80(filename,name_size,img) imwrite(filename,img)
+
+#endif /*__INT_CVHIGHGUI_H__*/