-
Notifications
You must be signed in to change notification settings - Fork 19
/
Image.cpp
77 lines (72 loc) · 2.54 KB
/
Image.cpp
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
/****************************************************************************
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
******************************************************************************/
/****************************************************************************
*
* Image.hpp
*
* Purpose: C++ wrapper for OpenCV IplImage which supports simple and
* efficient access to the image data
*
* Author: Donovan Parks, September 2007
*
* Based on code from:
* http://www.cs.iit.edu/~agam/cs512/lect-notes/opencv-intro/opencv-intro.hpptml
******************************************************************************/
#include "Image.hpp"
ImageBase::~ImageBase()
{
if(imgp != NULL && m_bReleaseMemory)
cvReleaseImage(&imgp);
imgp = NULL;
}
void DensityFilter(BwImage& image, BwImage& filtered, int minDensity, unsigned char fgValue)
{
for(int r = 1; r < image.Ptr()->height-1; ++r)
{
for(int c = 1; c < image.Ptr()->width-1; ++c)
{
int count = 0;
if(image(r,c) == fgValue)
{
if(image(r-1,c-1) == fgValue)
count++;
if(image(r-1,c) == fgValue)
count++;
if(image(r-1,c+1) == fgValue)
count++;
if(image(r,c-1) == fgValue)
count++;
if(image(r,c+1) == fgValue)
count++;
if(image(r+1,c-1) == fgValue)
count++;
if(image(r+1,c) == fgValue)
count++;
if(image(r+1,c+1) == fgValue)
count++;
if(count < minDensity)
filtered(r,c) = 0;
else
filtered(r,c) = fgValue;
}
else
{
filtered(r,c) = 0;
}
}
}
}