I have for example a handwritten graph:
I am looking for a website (or alternative solution) like Mathpix, which transforms my handwritten graph into a tikzpicture code. So that my output looks like followed:
\begin{tikzpicture}[thick, auto, scale=0.8, transform shape]
\node [state] (v0) {$v_0$};
\node [state, above right=of v0] (v1) {$v_1$};
\node [state, below right=of v0] (v2) {$v_2$};
\node [state, below=of v0] (v3) {$v_3$};
\node [state, below=of v3] (v4) {$v_4$};
\node [state, below right=of v3] (v5) {$v_5$};
\node [state, below right =of v4] (v6) {$v_6$};
\path
(v0) edge[-] node {} (v1);
\path
(v0) edge[-] node {} (v2);
\path
(v0) edge[-] node {} (v5);
\path
(v3) edge[-] node {} (v6);
\path
(v4) edge[-] node {} (v2);
\path
(v4) edge[-] node {} (v6);
\end{tikzpicture}

