summaryrefslogtreecommitdiffstats
path: root/modules/proc/src/proc_coins.cpp
blob: 676e214e516780ad32ce1f417c163b28c62b222a (plain) (blame)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/******************************************************************************
 *	Copyright (C) 2018	Alejandro Colomar Andrés		      *
 ******************************************************************************/


/******************************************************************************
 ******* headers **************************************************************
 ******************************************************************************/
/* Standard C ----------------------------------------------------------------*/
		/* snprintf() & fflush() */
	#include <cstdio>

/* Packages ------------------------------------------------------------------*/
		/* openCV */
	#include <opencv2/opencv.hpp>

/* Project -------------------------------------------------------------------*/
		/* constants */
	#include "img_iface.hpp"
		/* user_iface_log */
	#include "user_iface.hpp"

/* Module --------------------------------------------------------------------*/
	#include "proc_common.hpp"

	#include "proc_coins.hpp"


/******************************************************************************
 ******* variables ************************************************************
 ******************************************************************************/
/* Global --------------------------------------------------------------------*/

/* Static --------------------------------------------------------------------*/
static	std::vector <std::vector <cv::Point_ <int>>>	contours;
static	class cv::Mat					hierarchy;


/******************************************************************************
 ******* static functions *****************************************************
 ******************************************************************************/
static	void	result_coins		(int status);

static	int	coins_find		(void);


/******************************************************************************
 ******* global functions *****************************************************
 ******************************************************************************/
int	proc_coins			(void)
{
	int	status;

	proc_save_mem(0);
	/* Find coins */
	{
		/* Measure time */
		clock_start();

		status	= coins_find();
		if (status) {
			result_coins(status);
			return	status;
		}

		/* Measure time */
		clock_stop("Find coins");
	}

	status	= COINS_OK;
	result_coins(status);
	return	status;
}


/******************************************************************************
 ******* static functions *****************************************************
 ******************************************************************************/
static	void	result_coins		(int status)
{
	/* Cleanup */

	/* Write result into log */
	char	result [LOG_LINE_LEN];
	switch (status) {
	case COINS_OK:
		snprintf(user_iface_log.line[user_iface_log.len], LOG_LINE_LEN,
						"Coin:  OK");
		break;
	case COINS_NOK_COINS:
		snprintf(user_iface_log.line[user_iface_log.len], LOG_LINE_LEN,
						"Coin:  NOK_COINS");
		break;
	case COINS_NOK_OVERLAP:
		snprintf(user_iface_log.line[user_iface_log.len], LOG_LINE_LEN,
						"Coin:  NOK_OVERLAP");
		break;
	default:
		snprintf(user_iface_log.line[user_iface_log.len], LOG_LINE_LEN,
						"Coin:  NOK");
		break;
	}
	user_iface_log.lvl[user_iface_log.len]	= 0;
	(user_iface_log.len)++;
}

static	int	coins_find		(void)
{
	int	status;

	proc_load_mem(0);

	proc_cmp(IMG_IFACE_CMP_BLUE);
//	proc_smooth(IMGI_SMOOTH_MEDIAN, 11);
	proc_threshold(cv::THRESH_BINARY_INV, IMG_IFACE_THR_OTSU);
//	proc_threshold(cv::THRESH_BINARY_INV, 100);
	proc_distance_transform();
	proc_local_max();
	proc_dilate(8);
	proc_save_mem(1);

	proc_contours(&contours, &hierarchy);

	/* If no contour is found, error:  NOK_COINS */
	if (!contours.size()) {
		status	= COINS_NOK_COINS;
		return	status;
	}

	status	= COINS_OK;
	return	status;
}


/******************************************************************************
 ******* end of file **********************************************************
 ******************************************************************************/