summaryrefslogtreecommitdiff
path: root/macros/detectCheckerboardPoints.sci
diff options
context:
space:
mode:
authorshamikam2017-01-16 02:56:17 +0530
committershamikam2017-01-16 02:56:17 +0530
commita6df67e8bcd5159cde27556f4f6a315f8dc2215f (patch)
treee806e966b06a53388fb300d89534354b222c2cad /macros/detectCheckerboardPoints.sci
downloadFOSSEE_Image_Processing_Toolbox-master.tar.gz
FOSSEE_Image_Processing_Toolbox-master.tar.bz2
FOSSEE_Image_Processing_Toolbox-master.zip
First CommitHEADmaster
Diffstat (limited to 'macros/detectCheckerboardPoints.sci')
-rw-r--r--macros/detectCheckerboardPoints.sci50
1 files changed, 50 insertions, 0 deletions
diff --git a/macros/detectCheckerboardPoints.sci b/macros/detectCheckerboardPoints.sci
new file mode 100644
index 0000000..b4e50c7
--- /dev/null
+++ b/macros/detectCheckerboardPoints.sci
@@ -0,0 +1,50 @@
+function [imagePoints,boardSize,varargout]=detectCheckerboardPoints(input1,varargin)
+// This function is used to detect a checkerboard pattern in an image.
+//
+// Calling Sequence
+// [imagePoints boardSize] = detectCheckerboardPoints(I);
+// [imagePoints boardSize imagesUsed] = detectCheckerboardPoints(imageFileNames);
+// [imagePoints boardSize imagesUsed] = detectCheckerboardPoints(images);
+// [imagePoints boardSize imagesUsed] = detectCheckerboardPoints(imageFileNames1,imageFileNames2);
+// [imagePoints boardSize imagesUsed] = detectCheckerboardPoints(images1,images2);
+//
+// Parameters
+// imagePoints: Matrix containing checkerboard points.
+// boardSize: Matrix (1x2) containing boardSize
+// imagesUsed: Images used to detect checkerboard in case of multiple input images
+// imageFileNames: Path to image files
+// images: Input images
+//
+// Description
+// This function detects a checkerboard in an image and returns the points of the checkeboard corners.
+//
+// Examples
+// [imagePoints boardSize imagesUsed] = detectCheckerboardPoints(imageFileNames);
+//
+// [imagePoints boardSize imagesUsed] = detectCheckerboardPoints(images1,images2);
+//
+// Authors
+// Rohit Suri
+
+ [lhs rhs]=argn(0);
+ if lhs>3
+ error(msprintf(" Too many output arguments"));
+ elseif rhs>2
+ error(msprintf(" Too many input arguments"));
+ end
+ select rhs
+ case 1 then
+ [points boardSize usedImages]=opencv_detectCheckerboardPoints(input1);
+ case 2 then
+ [points boardSize usedImages]=opencv_detectCheckerboardPoints(input1,varargin(1));
+ end
+ for i=1:size(points(1))
+ for j=1:size(points(1)(1),'r')
+ imagePoints(:,:,i)=points(1)(i);
+ end
+ end
+ if lhs==3 then
+ len=size(usedImages,'c');
+ varargout(1)=matrix(usedImages,len,1);
+ end
+endfunction