-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvectorizeLineSmart.m
125 lines (111 loc) · 4.56 KB
/
vectorizeLineSmart.m
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
function [svgIntermediate, svgDataSimple, svgDataDense] = vectorizeLineSmart(image)
%Converts a bitmap line drawing into a set of coordinates writeable to svg
%Use in conjuction with either printSVGpoly.m or printSVG.m
%
% EXAMPLE:
% svgIntermediate = vectorizeLineSmart('myimage.png');
% [svgDataIntermediate, svgDataSimple] = vectorizeLineSmart(imageBW);
% [svgDataIntermediate, svgDataSimple, svgDataDense] = vectorizeLineSmart(imageColor)
%
% IN:
% image - an image either as logical, colour, or a file extension
%
% OUT:
% svgIntermediate - an array of data to be processed by the
% printSVGpoly function
% svgDataSimple - a list of simplified coordinate pairs to draw lines between,
% formatted to be readable in an svg file
% svgData - a complete list of coordinate pairs
%
% This function attempts to reduce the number of nodes necessary in the
% svg file. Lines drawn in one of the 8 cardinal or intercardinal
% directions should be calculated as a single line rather than many short
% lines
image = im2binary(image);
bitmapPadded = padarray(image,[1,1]);
[ySize, xSize] = size(image);
svgDataDense = zeros(4,1);
svgDataSimple = zeros(4,1);
dataNum = 1;
dataNum2 = 1;
entry = 1;
svgIntermediate = zeros(1,1);
connectionArray = zeros(ySize,xSize,3,3);
%search
for y=1:ySize
for x=1:xSize
%tally adjancencies
adj = -1;
%if not valid, -1
if image(y,x)==1
for j=-1:1
for i=-1:1
if bitmapPadded(y+j+1,x+i+1) == 1
adj = adj + 1;
end
end
end
end
%end points
if adj==1 || 3<=adj
for asdf=1:adj
y2=y;
x2=x;
xL=x;
yL=y;
firstFlag=true;
headingOld = [2,2]; %impossible
exFlag = false;
connection=1;
while ~exFlag
exFlag = true;
for j=-1:1
if(exFlag == false)
break
end
for i=-1:1
dupeFlag = false;
if bitmapPadded(y2+j+1,x2+i+1) == 1 && ~isequal([j,i],[0,0])
if connectionArray(y2,x2,j+2,i+2) == 1 || connectionArray(y2+j,x2+i,-j+2,-i+2)==1
dupeFlag = true;
end
if dupeFlag == false
headingNew = [i,j];
if ~isequal(headingNew, headingOld) && ~firstFlag
svgDataSimple(:,dataNum2) = [xL;yL;x2;y2];
dataNum2 = dataNum2 + 1;
headingOld = headingNew;
svgIntermediate(entry,connection)=xL;
svgIntermediate(entry,connection+1)=yL;
connection = connection+2;
xL = x2;
yL = y2;
end
exFlag = false;
svgDataDense(:,dataNum) = [x2;y2;x2+i;y2+j];
connectionArray(y2,x2,j+2,i+2) = 1;
connectionArray(y2+j,x2+i,-j+2,-i+2) = 1;
firstFlag = false;
dataNum = dataNum + 1;
y2 = y2 + j;
x2 = x2 + i;
break
end
end
end
end
end
if ~firstFlag
svgDataSimple(:,dataNum2) = [xL;yL;x2;y2];
svgIntermediate(entry,connection)=xL;
svgIntermediate(entry,connection+1)=yL;
svgIntermediate(entry,connection+2)=x2;
svgIntermediate(entry,connection+3)=y2;
dataNum2 = dataNum2 + 1;
entry = entry + 1;
end
end
end
end
end
end