summaryrefslogtreecommitdiff
path: root/sci_gateway/cpp/opencv_bwulterode.cpp
blob: e9d02062c6aeb312eed0ea0aad18dc8b54644f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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();
  }
/* ==================================================================== */
}