summaryrefslogtreecommitdiff
path: root/macros/ImageProcessing/highgui
diff options
context:
space:
mode:
authorSandeep Gupta2017-07-05 12:41:25 +0530
committerSandeep Gupta2017-07-05 12:41:25 +0530
commit06337f0dc8114c70fd0c7767083971a0d091750a (patch)
tree446481550ba88e6e0f7df2db7fdc66d2016ee2f1 /macros/ImageProcessing/highgui
parentc2e305c3b82ed944d57402dd515b3d5839a31980 (diff)
downloadScilab2C_fossee_old-06337f0dc8114c70fd0c7767083971a0d091750a.tar.gz
Scilab2C_fossee_old-06337f0dc8114c70fd0c7767083971a0d091750a.tar.bz2
Scilab2C_fossee_old-06337f0dc8114c70fd0c7767083971a0d091750a.zip
LinearAlgebra and MatrixOperation Update
Diffstat (limited to 'macros/ImageProcessing/highgui')
-rw-r--r--macros/ImageProcessing/highgui/CV_LoadImage.binbin0 -> 2996 bytes
-rw-r--r--macros/ImageProcessing/highgui/CV_LoadImage.sci25
-rw-r--r--macros/ImageProcessing/highgui/CV_SaveImage.binbin0 -> 2732 bytes
-rw-r--r--macros/ImageProcessing/highgui/CV_SaveImage.sci20
-rw-r--r--macros/ImageProcessing/highgui/CV_ShowImage.binbin0 -> 2592 bytes
-rw-r--r--macros/ImageProcessing/highgui/CV_ShowImage.sci18
-rw-r--r--macros/ImageProcessing/highgui/CV_WaitKey.binbin0 -> 2528 bytes
-rw-r--r--macros/ImageProcessing/highgui/CV_WaitKey.sci20
-rw-r--r--macros/ImageProcessing/highgui/libbin560 -> 540 bytes
9 files changed, 38 insertions, 45 deletions
diff --git a/macros/ImageProcessing/highgui/CV_LoadImage.bin b/macros/ImageProcessing/highgui/CV_LoadImage.bin
new file mode 100644
index 0000000..f8e1337
--- /dev/null
+++ b/macros/ImageProcessing/highgui/CV_LoadImage.bin
Binary files differ
diff --git a/macros/ImageProcessing/highgui/CV_LoadImage.sci b/macros/ImageProcessing/highgui/CV_LoadImage.sci
index c420c7a..01dda12 100644
--- a/macros/ImageProcessing/highgui/CV_LoadImage.sci
+++ b/macros/ImageProcessing/highgui/CV_LoadImage.sci
@@ -16,30 +16,25 @@ function img = CV_LoadImage(filename,loadtype)
//
// Parameters
// filename: name of file to be opened
-// loadtype: desired load method
+// loadtype: desired load method
+// <0 --> image is loaded as is (with alpha channel)
+// =0 --> image is loaded as greyscale
+// >0 --> 3 channel color image is loaded
//
// Description
-// This function can be used for loading a previously stored image
-//
-// loadtype can take the following values:
-// <itemizedlist>
-// <listitem><para> less than 0 -> image is loaded as is (with alpha channel)</para></listitem>
-// <listitem><para> 0 -> image is loaded as greyscale</para></listitem>
-// <listitem><para> greater than 0 -> 3 channel color image is loaded</para></listitem>
-// </itemizedlist>
-//
-// This is curretly dummy function. It provides no functionality but is required
-// for providing support for generating C code for OpenCV
-//
+// This function can be used for loading a previously stored image
// Examples
-// CV_LoadImage('~/test.jpg',0)
+// CV_LoadImage('~/test.jpg',0)
+//
// See also
// CV_CreateImage
//
+//
// Authors
// Siddhesh Wani
//
-
img = 0;
+// This is curretly dummy function. It provides no functionality but is required
+// for providing support for generating C code for OpenCV
endfunction
diff --git a/macros/ImageProcessing/highgui/CV_SaveImage.bin b/macros/ImageProcessing/highgui/CV_SaveImage.bin
new file mode 100644
index 0000000..8d056bf
--- /dev/null
+++ b/macros/ImageProcessing/highgui/CV_SaveImage.bin
Binary files differ
diff --git a/macros/ImageProcessing/highgui/CV_SaveImage.sci b/macros/ImageProcessing/highgui/CV_SaveImage.sci
index 6c5b0bf..708edff 100644
--- a/macros/ImageProcessing/highgui/CV_SaveImage.sci
+++ b/macros/ImageProcessing/highgui/CV_SaveImage.sci
@@ -15,26 +15,24 @@ function status = CV_SaveImage(filename,img)
// CV_SaveImage(filename,img)
//
// Parameters
-// filename: name of file image to be saved as
-// img: image to be saved
+// filename: name of file image to be saved as
+// img: image to be saved
//
// Description
-// This function can be used for saving image. File format is detected
-// from file extension
-//
-// This is curretly dummy function. It provides no functionality but is required
-// for providing support for generating C code for OpenCV
-//
+// This function can be used for saving image. File format is detected
+// from file extension
// Examples
-// img = CV_LoadImage('~/test.jpg',0)
-// CV_SaveImage('test1.png',img)
+// img = CV_LoadImage('~/test.jpg',0)
+// CV_SaveImage('test1.png',img)
+//
// See also
// CV_LoadImage CV_CreateImage
//
// Authors
// Siddhesh Wani
//
-
status = 0;
+// This is curretly dummy function. It provides no functionality but is required
+// for providing support for generating C code for OpenCV
endfunction
diff --git a/macros/ImageProcessing/highgui/CV_ShowImage.bin b/macros/ImageProcessing/highgui/CV_ShowImage.bin
new file mode 100644
index 0000000..c4e00fc
--- /dev/null
+++ b/macros/ImageProcessing/highgui/CV_ShowImage.bin
Binary files differ
diff --git a/macros/ImageProcessing/highgui/CV_ShowImage.sci b/macros/ImageProcessing/highgui/CV_ShowImage.sci
index 2300d25..4bfe591 100644
--- a/macros/ImageProcessing/highgui/CV_ShowImage.sci
+++ b/macros/ImageProcessing/highgui/CV_ShowImage.sci
@@ -12,28 +12,28 @@ function CV_ShowImage(winname,img)
// function to show an image
//
// Calling Sequence
-// CV_ShowImage(img)
+// CV_ShowImage(img)
// CV_ShowImage(winname,img)
//
// Parameters
-// winname: name of window in which img is to be shown
-// img: image to be shown already acquired (from file/camera)
+// winname: name of window in which img is to be shown
+// img: image to be shown already acquired (from file/camera)
//
// Description
// This function can be used for showing images
-//
-// This is curretly dummy function. It provides no functionality but is required
-// for providing support for generating C code for OpenCV
-//
// Examples
-// img = CV_LoadImage('~/test.jpg',0)
-// CV_ShowImage(img)
+// img = CV_LoadImage('~/test.jpg',0)
+// CV_ShowImage(img)
+//
// See also
// CV_CreateImage CV_LoadImage
//
+//
// Authors
// Siddhesh Wani
//
+// This is curretly dummy function. It provides no functionality but is required
+// for providing support for generating C code for OpenCV
endfunction
diff --git a/macros/ImageProcessing/highgui/CV_WaitKey.bin b/macros/ImageProcessing/highgui/CV_WaitKey.bin
new file mode 100644
index 0000000..30a42f4
--- /dev/null
+++ b/macros/ImageProcessing/highgui/CV_WaitKey.bin
Binary files differ
diff --git a/macros/ImageProcessing/highgui/CV_WaitKey.sci b/macros/ImageProcessing/highgui/CV_WaitKey.sci
index 46fd91f..0facaaf 100644
--- a/macros/ImageProcessing/highgui/CV_WaitKey.sci
+++ b/macros/ImageProcessing/highgui/CV_WaitKey.sci
@@ -15,25 +15,25 @@ function CV_WaitKey(delay)
// CV_WaitKey(delay)
//
// Parameters
-// delay: waiting delay, if 0 then wait till keypress
+// delay: waiting delay, if 0 then wait till keypress
//
// Description
-// This function can be used for inseting some delay. This function must
-// follow CV_ShowImage to display image.
-//
-// This is curretly dummy function. It provides no functionality but is required
-// for providing support for generating C code for OpenCV
-//
+// This function can be used for inseting some delay. This function must
+// follow CV_ShowImage to display image.
// Examples
-// img = CV_LoadImage('~/test.jpg',0)
-// CV_ShowImage('',img)
-// CV_WaitKey(0);
+// img = CV_LoadImage('~/test.jpg',0)
+// CV_ShowImage('',img)
+// CV_WaitKey(0);
+//
// See also
// CV_LoadImage CV_ShowImage
//
+//
// Authors
// Siddhesh Wani
//
+// This is curretly dummy function. It provides no functionality but is required
+// for providing support for generating C code for OpenCV
endfunction
diff --git a/macros/ImageProcessing/highgui/lib b/macros/ImageProcessing/highgui/lib
index e9714ae..21e6ae8 100644
--- a/macros/ImageProcessing/highgui/lib
+++ b/macros/ImageProcessing/highgui/lib
Binary files differ