From bd03b38be0918837e147e969c6bb2014900009db Mon Sep 17 00:00:00 2001 From: Brijeshcr Date: Sat, 8 Jul 2017 20:18:17 +0530 Subject: Revert "SCi2cDeps updated, Windows compatibility resolved" --- macros/ImageProcessing/highgui/CV_LoadImage.sci | 23 ----------------------- macros/ImageProcessing/highgui/CV_SaveImage.sci | 19 ------------------- macros/ImageProcessing/highgui/CV_ShowImage.sci | 25 ------------------------- macros/ImageProcessing/highgui/CV_WaitKey.sci | 22 ---------------------- 4 files changed, 89 deletions(-) (limited to 'macros/ImageProcessing/highgui') diff --git a/macros/ImageProcessing/highgui/CV_LoadImage.sci b/macros/ImageProcessing/highgui/CV_LoadImage.sci index 48a77fa6..c420c7a1 100644 --- a/macros/ImageProcessing/highgui/CV_LoadImage.sci +++ b/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/macros/ImageProcessing/highgui/CV_SaveImage.sci b/macros/ImageProcessing/highgui/CV_SaveImage.sci index 999c634c..6c5b0bf9 100644 --- a/macros/ImageProcessing/highgui/CV_SaveImage.sci +++ b/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/macros/ImageProcessing/highgui/CV_ShowImage.sci b/macros/ImageProcessing/highgui/CV_ShowImage.sci index 24621f39..2300d256 100644 --- a/macros/ImageProcessing/highgui/CV_ShowImage.sci +++ b/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/macros/ImageProcessing/highgui/CV_WaitKey.sci b/macros/ImageProcessing/highgui/CV_WaitKey.sci index 858ca7a3..46fd91f1 100644 --- a/macros/ImageProcessing/highgui/CV_WaitKey.sci +++ b/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 -- cgit