From a6df67e8bcd5159cde27556f4f6a315f8dc2215f Mon Sep 17 00:00:00 2001 From: shamikam Date: Mon, 16 Jan 2017 02:56:17 +0530 Subject: First Commit --- sci_gateway/cpp/opencv_affine2d.cpp | 122 ++++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 sci_gateway/cpp/opencv_affine2d.cpp (limited to 'sci_gateway/cpp/opencv_affine2d.cpp') diff --git a/sci_gateway/cpp/opencv_affine2d.cpp b/sci_gateway/cpp/opencv_affine2d.cpp new file mode 100644 index 0000000..8dc1200 --- /dev/null +++ b/sci_gateway/cpp/opencv_affine2d.cpp @@ -0,0 +1,122 @@ +/******************************************************************* +Author : Yash S. Bhalgat +******************************************************************** +Usage : T = affine2d(A); +Output: T - 3x3 matrix equivalent to tform.T matrix in Matlab output +********************************************************************/ + +#include +#include "opencv2/core/core.hpp" +#include "opencv2/highgui/highgui.hpp" +#include "opencv2/opencv.hpp" +#include +using namespace cv; +using namespace std; +extern "C" +{ + #include "api_scilab.h" + #include "Scierror.h" + #include "BOOL.h" + #include + #include + #include "../common.h" + + int opencv_affine2d(char *fname, unsigned long fname_len) + { + + SciErr sciErr; + int intErr=0; + int iRows=0,iCols=0; + int *piLen = NULL; + int *piAddr1 = NULL; + char **ddepth = NULL; + int i,j,k; + double *inpMatrix; + + //checking input argument + CheckInputArgument(pvApiCtx, 1, 1); + CheckOutputArgument(pvApiCtx, 1, 1) ; + + //for inputMatrix + sciErr = getVarAddressFromPosition(pvApiCtx,1,&piAddr1); + if (sciErr.iErr) + { + printError(&sciErr, 0); + return 0; + } + sciErr = getMatrixOfDouble(pvApiCtx, piAddr1, &iRows, &iCols ,&inpMatrix); + if(sciErr.iErr) + { + printError(&sciErr, 0); + return 0; + } + + int n=iRows; + double inputMatrix[n][n]; + //assigning values to actual kernelMatrix + for(i=0;i(i,j) = warp_mat_t.at(i,j); + + outputMatrix.at(0,2) = 0; + outputMatrix.at(1,2) = 0; + outputMatrix.at(2,2) = 1.0; + + //returning image + string tempstring = type2str(outputMatrix.type()); + char *checker; + checker = (char *)malloc(tempstring.size() + 1); + memcpy(checker, tempstring.c_str(), tempstring.size() + 1); + returnImage(checker,outputMatrix,1); + free(checker); + + //Assigning the list as the Output Variable + AssignOutputVariable(pvApiCtx, 1) = nbInputArgument(pvApiCtx) + 1; + //Returning the Output Variables as arguments to the Scilab environment + ReturnArguments(pvApiCtx); + return 0; + + } +/* ==================================================================== */ +} + -- cgit