您當前的位置:首頁 > 收藏

latex製作流程圖精選模板一則

作者:由 微塵-黃含馳 發表于 收藏時間:2020-06-14

latex製作流程圖精選模板一則

\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}

標簽: node  draw  Arrow  Matrix  below