diff options
author | Sandeep Gupta | 2017-07-05 12:41:25 +0530 |
---|---|---|
committer | Sandeep Gupta | 2017-07-05 12:41:25 +0530 |
commit | 06337f0dc8114c70fd0c7767083971a0d091750a (patch) | |
tree | 446481550ba88e6e0f7df2db7fdc66d2016ee2f1 /macros/ImageProcessing/highgui/CV_LoadImage.sci | |
parent | c2e305c3b82ed944d57402dd515b3d5839a31980 (diff) | |
download | Scilab2C_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/CV_LoadImage.sci')
-rw-r--r-- | macros/ImageProcessing/highgui/CV_LoadImage.sci | 25 |
1 files changed, 10 insertions, 15 deletions
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 |