forked from sjtug/SJTUThesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow_chart.tex
63 lines (57 loc) · 1.8 KB
/
flow_chart.tex
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
% 定义流程图节点
\tikzstyle{startstop} = [
rectangle,
rounded corners,
minimum width=2cm,
minimum height=1cm,
text centered,
draw=black
]
\tikzstyle{io} = [
trapezium,
trapezium left angle=75,
trapezium right angle=105,
minimum width=1cm,
minimum height=1cm,
text centered,
draw=black
]
\tikzstyle{process} = [
rectangle,
minimum width=2cm,
minimum height=1cm,
text centered,
draw=black
]
\tikzstyle{decision} = [
diamond,
minimum width=2cm,
minimum height=1cm,
text centered,
draw=black]
\tikzstyle{arrow} = [thick, ->, >=stealth]
\begin{tikzpicture}[node distance=2cm]
% 设置节点
\node (pic) [startstop] {待测图片};
\node (bg) [io, below of=pic] {读取背景};
\node (pair) [process, below of=bg] {匹配特征点对};
\node (threshold) [decision, below of=pair, yshift=-0.5cm] {多于阈值};
\node (clear) [decision, right of=threshold, xshift=3cm] {清晰?};
\node (capture) [process, right of=pair, xshift=3cm, yshift=0.5cm] {重采};
\node (matrix_p) [process, below of=threshold, yshift=-0.8cm] {透视变换矩阵};
\node (matrix_a) [process, right of=matrix_p, xshift=3cm] {仿射变换矩阵};
\node (reg) [process, below of=matrix_p] {图像修正};
\node (return) [startstop, below of=reg] {配准结果};
% 连接节点
\draw [arrow](pic) -- (bg);
\draw [arrow](bg) -- (pair);
\draw [arrow](pair) -- (threshold);
\draw [arrow](threshold) -- node[anchor=south] {否} (clear);
\draw [arrow](clear) -- node[anchor=west] {否} (capture);
\draw [arrow](capture) |- (pic);
\draw [arrow](clear) -- node[anchor=west] {是} (matrix_a);
\draw [arrow](matrix_a) |- (reg);
\draw [arrow](threshold) -- node[anchor=east] {是} (matrix_p);
\draw [arrow](matrix_p) -- (reg);
\draw [arrow](reg) -- (return);
\end{tikzpicture}