-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
92 lines (80 loc) · 2.47 KB
/
Form1.cs
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml.XPath;
namespace HoughWithCSharp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
init();
}
private void init()
{
Program.id = 0;
Array.Clear(Program.positions, 0, Program.positions.Length);
Program.points.Clear();
Program.pointsID.Clear();
Program.pointsToPaint.Clear();
panel1.Refresh();
}
//start
private void button1_Click(object sender, EventArgs e)
{
Program.DoAnalyse();
int num = Program.pointsToPaint.Count;
for (int i = 0; i < num; i++)
{
//retraverse
double b = Program.pointsToPaint[i].X;
double k = Program.pointsToPaint[i].Y;
double y = k * 1150 + b;
Point pt1 = new Point(0, (int)b);
Point pt2 = new Point(1150, (int)y);
doPaintLine(pt1, pt2);
}
}
//clean
private void button2_Click(object sender, EventArgs e)
{
init();
}
//record
private void panelMouseDown(object sender, MouseEventArgs e)
{
if (Program.id >= 100){return;}
Point mp = panel1.PointToClient(Control.MousePosition);
double m = - 1.0 / (double)mp.X;
double n = (double)mp.Y / (double)mp.X;
int[] toPaint = new int[] { mp.X, mp.Y };
doPaint(toPaint);
Program.positions[Program.id, 0] = mp.X;
Program.positions[Program.id, 1] = mp.Y;
Program.positions[Program.id, 2] = m;
Program.positions[Program.id, 3] = n;
Program.id++;
}
private void doPaint(int[] i)
{
int x = i[0];
int y = i[1];
int r = 5;
Graphics g = panel1.CreateGraphics();
g.FillEllipse(Brushes.Black, x - r, y - r, r * 2, r * 2);
}
public void doPaintLine(Point pt1, Point pt2)
{
Graphics g = panel1.CreateGraphics();
Pen pen = new Pen(Color.Blue, 2f);
g.DrawLine(pen, pt1, pt2);
}
}
}