diff options
author | shamikam | 2017-01-16 02:56:17 +0530 |
---|---|---|
committer | shamikam | 2017-01-16 02:56:17 +0530 |
commit | a6df67e8bcd5159cde27556f4f6a315f8dc2215f (patch) | |
tree | e806e966b06a53388fb300d89534354b222c2cad /sci_gateway/cpp/opencv_bwulterode.cpp | |
download | FOSSEE_Image_Processing_Toolbox-master.tar.gz FOSSEE_Image_Processing_Toolbox-master.tar.bz2 FOSSEE_Image_Processing_Toolbox-master.zip |
Diffstat (limited to 'sci_gateway/cpp/opencv_bwulterode.cpp')
-rw-r--r-- | sci_gateway/cpp/opencv_bwulterode.cpp | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/sci_gateway/cpp/opencv_bwulterode.cpp b/sci_gateway/cpp/opencv_bwulterode.cpp new file mode 100644 index 0000000..e9d0206 --- /dev/null +++ b/sci_gateway/cpp/opencv_bwulterode.cpp @@ -0,0 +1,92 @@ +/******************************************************** +Author: Vinay Bhat +******************************************************** +Usage: return_image = bwulterode(input_image) +********************************************************/ + +#include <numeric> +#include "opencv2/core/core.hpp" +#include "opencv2/highgui/highgui.hpp" +#include "opencv2/opencv.hpp" +#include <iostream> +using namespace cv; +using namespace std; +extern "C" +{ + #include "api_scilab.h" + #include "Scierror.h" + #include "BOOL.h" + #include <localization.h> + #include "sciprint.h" + #include "../common.h" + + void bwulterode_imreconstruct(Mat, Mat, Mat&); + + int opencv_bwulterode(char *fname, unsigned long fname_len) + { + + SciErr sciErr; + int intErr = 0; + int *piAddr = NULL; + + //checking input argument + CheckInputArgument(pvApiCtx, 1, 1); + CheckOutputArgument(pvApiCtx, 1, 1); + + // Get the input image from the Scilab environment + Mat gray_image, fin_image, m, image; + retrieveImage(gray_image, 1); + + for (int i = 0; i < gray_image.cols; i++) + { + for (int j = 0; j < gray_image.rows; j++) + { + unsigned char val = gray_image.at<uchar>(i,j); + if (!(val == 0 || val == 1 || val == 255)) + { + sciprint("Please enter binary image."); + return 0; + } + } + } + + if (gray_image.type() != CV_8UC1) + { + Mat temp; + temp = gray_image.clone(); + cvtColor(temp, gray_image, CV_BGR2GRAY); + } + + distanceTransform(gray_image, image, CV_DIST_L2, DIST_MASK_5); + subtract(image, 1, gray_image); + bwulterode_imreconstruct(image, gray_image, m); + subtract(image, m, gray_image); + fin_image = gray_image * 255; + + string tempstring = type2str(fin_image.type()); + char *checker; + checker = (char *)malloc(tempstring.size() + 1); + memcpy(checker, tempstring.c_str(), tempstring.size() + 1); + returnImage(checker, fin_image, 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; + + } + void bwulterode_imreconstruct(Mat g, Mat f, Mat& dest) + { + Mat m0, m1, m; + m1 = f; + do { + m0 = m1.clone(); + dilate(m0, m, Mat()); + min(g, m, m1); + } while(countNonZero(m1 != m0) != 0); + dest = m1.clone(); + } +/* ==================================================================== */ +} |