summaryrefslogtreecommitdiff
path: root/macros/rotationVectorToMatrix.sci
diff options
context:
space:
mode:
authorshamikam2017-01-16 02:56:17 +0530
committershamikam2017-01-16 02:56:17 +0530
commita6df67e8bcd5159cde27556f4f6a315f8dc2215f (patch)
treee806e966b06a53388fb300d89534354b222c2cad /macros/rotationVectorToMatrix.sci
downloadFOSSEE_Image_Processing_Toolbox-a6df67e8bcd5159cde27556f4f6a315f8dc2215f.tar.gz
FOSSEE_Image_Processing_Toolbox-a6df67e8bcd5159cde27556f4f6a315f8dc2215f.tar.bz2
FOSSEE_Image_Processing_Toolbox-a6df67e8bcd5159cde27556f4f6a315f8dc2215f.zip
First CommitHEADmaster
Diffstat (limited to 'macros/rotationVectorToMatrix.sci')
-rw-r--r--macros/rotationVectorToMatrix.sci24
1 files changed, 24 insertions, 0 deletions
diff --git a/macros/rotationVectorToMatrix.sci b/macros/rotationVectorToMatrix.sci
new file mode 100644
index 0000000..abe97f9
--- /dev/null
+++ b/macros/rotationVectorToMatrix.sci
@@ -0,0 +1,24 @@
+function [ matrix ] = rotationVectorToMatrix(vector)
+// Returns rotation matrix.
+//
+// Calling Sequence
+// matrix = rotationVectorToMatrix(vector);
+//
+// Parameters
+// matrix: rotation matrix
+// vector: 3-D rotation vector
+//
+// Description
+// Converts rotation vector to rotation matrix.
+//
+// Examples
+// vector = pi/4 * [1, 2, 3];
+// matrix = rotationVectorToMatrix(vector);
+//
+// Authors
+// Tanmay Chaudhari
+
+ a=opencv_rotationVectorToMatrix(vector);
+ matrix(:,:,1)=a(1);
+
+endfunction