diff options
author | Brijeshcr | 2017-07-08 20:18:46 +0530 |
---|---|---|
committer | GitHub | 2017-07-08 20:18:46 +0530 |
commit | 26ab8620e89571314bc1a828bd9aca3d288eaede (patch) | |
tree | e0f47fecb8b5d5e63491c7440d9ecc3072e5cd05 /2.3-1/macros/ImageProcessing/highgui | |
parent | 3adebb16388c6712f7d9c268b91849d164e696df (diff) | |
parent | 39874e472e540ca1bb923b97b52900e1d60439cc (diff) | |
download | Scilab2C-26ab8620e89571314bc1a828bd9aca3d288eaede.tar.gz Scilab2C-26ab8620e89571314bc1a828bd9aca3d288eaede.tar.bz2 Scilab2C-26ab8620e89571314bc1a828bd9aca3d288eaede.zip |
Merge pull request #13 from FOSSEE/revert-12-master
Revert "SCi2cDeps updated, Windows compatibility resolved"
Diffstat (limited to '2.3-1/macros/ImageProcessing/highgui')
4 files changed, 0 insertions, 89 deletions
diff --git a/2.3-1/macros/ImageProcessing/highgui/CV_LoadImage.sci b/2.3-1/macros/ImageProcessing/highgui/CV_LoadImage.sci index 48a77fa6..c420c7a1 100644 --- a/2.3-1/macros/ImageProcessing/highgui/CV_LoadImage.sci +++ b/2.3-1/macros/ImageProcessing/highgui/CV_LoadImage.sci @@ -16,7 +16,6 @@ function img = CV_LoadImage(filename,loadtype) // // Parameters // filename: name of file to be opened -<<<<<<< HEAD // loadtype: desired load method // // Description @@ -42,27 +41,5 @@ function img = CV_LoadImage(filename,loadtype) // img = 0; -======= -// 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 -// Examples -// 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 ->>>>>>> 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0 endfunction diff --git a/2.3-1/macros/ImageProcessing/highgui/CV_SaveImage.sci b/2.3-1/macros/ImageProcessing/highgui/CV_SaveImage.sci index 999c634c..6c5b0bf9 100644 --- a/2.3-1/macros/ImageProcessing/highgui/CV_SaveImage.sci +++ b/2.3-1/macros/ImageProcessing/highgui/CV_SaveImage.sci @@ -15,7 +15,6 @@ function status = CV_SaveImage(filename,img) // CV_SaveImage(filename,img) // // Parameters -<<<<<<< HEAD // filename: name of file image to be saved as // img: image to be saved // @@ -29,31 +28,13 @@ function status = CV_SaveImage(filename,img) // Examples // img = CV_LoadImage('~/test.jpg',0) // CV_SaveImage('test1.png',img) -======= -// 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 -// Examples -// img = CV_LoadImage('~/test.jpg',0) -// CV_SaveImage('test1.png',img) -// ->>>>>>> 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0 // See also // CV_LoadImage CV_CreateImage // // Authors // Siddhesh Wani // -<<<<<<< HEAD status = 0; -======= -status = 0; -// This is curretly dummy function. It provides no functionality but is required -// for providing support for generating C code for OpenCV ->>>>>>> 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0 endfunction diff --git a/2.3-1/macros/ImageProcessing/highgui/CV_ShowImage.sci b/2.3-1/macros/ImageProcessing/highgui/CV_ShowImage.sci index 24621f39..2300d256 100644 --- a/2.3-1/macros/ImageProcessing/highgui/CV_ShowImage.sci +++ b/2.3-1/macros/ImageProcessing/highgui/CV_ShowImage.sci @@ -12,7 +12,6 @@ function CV_ShowImage(winname,img) // function to show an image // // Calling Sequence -<<<<<<< HEAD // CV_ShowImage(img) // CV_ShowImage(winname,img) // @@ -32,33 +31,9 @@ function CV_ShowImage(winname,img) // See also // CV_CreateImage CV_LoadImage // -======= -// 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) -// -// Description -// This function can be used for showing images -// Examples -// img = CV_LoadImage('~/test.jpg',0) -// CV_ShowImage(img) -// -// See also -// CV_CreateImage CV_LoadImage -// -// ->>>>>>> 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0 // Authors // Siddhesh Wani // -<<<<<<< HEAD -======= -// This is curretly dummy function. It provides no functionality but is required -// for providing support for generating C code for OpenCV ->>>>>>> 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0 endfunction diff --git a/2.3-1/macros/ImageProcessing/highgui/CV_WaitKey.sci b/2.3-1/macros/ImageProcessing/highgui/CV_WaitKey.sci index 858ca7a3..46fd91f1 100644 --- a/2.3-1/macros/ImageProcessing/highgui/CV_WaitKey.sci +++ b/2.3-1/macros/ImageProcessing/highgui/CV_WaitKey.sci @@ -15,7 +15,6 @@ function CV_WaitKey(delay) // CV_WaitKey(delay) // // Parameters -<<<<<<< HEAD // delay: waiting delay, if 0 then wait till keypress // // Description @@ -32,30 +31,9 @@ function CV_WaitKey(delay) // See also // CV_LoadImage CV_ShowImage // -======= -// 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. -// Examples -// img = CV_LoadImage('~/test.jpg',0) -// CV_ShowImage('',img) -// CV_WaitKey(0); -// -// See also -// CV_LoadImage CV_ShowImage -// -// ->>>>>>> 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0 // Authors // Siddhesh Wani // -<<<<<<< HEAD -======= -// This is curretly dummy function. It provides no functionality but is required -// for providing support for generating C code for OpenCV ->>>>>>> 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0 endfunction |