-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
181 lines (163 loc) · 5.19 KB
/
Program.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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
using System;
using System.Collections;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Windows.Media.Media3D;
namespace HoughWithCSharp
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
public static int id;
public static double[,] positions = new double[100, 4];
//public static double[,] pointsVertical = new double[100, 2];
//public static double[,] pointsCross = new double[100, 3];
public static List<Point3D> points = new List<Point3D>();
public static List<int> pointsID = new List<int>();
public static List<PointD> pointsToPaint = new List<PointD>();
public static void DoAnalyse()
{
double pLineIngM = -1.0;
double pLineIngN = -1.0;
double[,] pLineED = new double[100, 2];
Boolean isWritenED = false;
//traverse positions[][][][]
for (int i = 0; i < 100; i++)
{
pLineIngM = positions[i, 2]; //m
pLineIngN = positions[i, 3]; //n
if (pLineIngM == 0.0 || pLineIngN == 0.0)
{
continue;
}
if (!isWritenED)
{
pLineED[0, 0] = pLineIngM;
pLineED[0, 1] = pLineIngN;
isWritenED = true;
continue;
}
//traverse pLineED[][]
for (int j = 0; j < i; j++)
{
//no cross
//if (pLineIngM == pLineED[j, 0])
//{
// continue;
//}
//have cross
double m1, n1;
double m2, n2;
double bb, kk;
m1 = pLineIngM;
n1 = pLineIngN;
m2 = pLineED[j, 0];
n2 = pLineED[j, 1];
bb = (n2 - n1) / (m1 - m2);
kk = m1 * bb + n1;
//get point: (bb, kk) where two lines crossed
Point3D p = new Point3D(bb, kk, 1.0);
DoAnalysePoints(p);
}
pLineED[i, 0] = pLineIngM;
pLineED[i, 1] = pLineIngN;
}
int maxTimes = 0;
int curTimes;
int num1 = points.Count;
for (int i = 0; i < num1; i++)
{
curTimes = (int)points[i].Z;
if (curTimes > maxTimes)
{
maxTimes = curTimes;
pointsID.Clear();
pointsID.Add(i);
}
else if (curTimes == maxTimes)
{
pointsID.Add(i);
}
else
{
//
}
}
int num2 = pointsID.Count;
for (int i = 0; i < num2; i++)
{
int id = pointsID[i];
PointD pt = new PointD();
pt.X = points[id].X;
pt.Y = points[id].Y;
pointsToPaint.Add(pt);
}
}
private static void DoAnalysePoints(Point3D p)
{
if (!points.Any())
{
//empty list!
points.Add(p);
return;
}
//else, not empty list:
int num = points.Count; //how many exsit ED !
int idInPoints = 0;
bool sameAsAny = false;
for (int i = 0; i < num; i++)
{
Point3D pInList = points[i];
double distance = Math.Pow((pInList.X - p.X), 2.0) + Math.Pow((pInList.Y - p.Y), 2.0);
if (distance < 1000.0)
{
//two points close, should be think as one point
idInPoints = i;
sameAsAny = true;
break;
}
}
if (sameAsAny)
{
//two points close, should be think as one point
Point3D pp = new Point3D();
pp.X = points[idInPoints].X;
pp.Y = points[idInPoints].Y;
pp.Z = points[idInPoints].Z + 1.0;
points[idInPoints] = pp;
}
else
{
//normal, should add this new point into the list
points.Add(p);
}
}
}
public struct PointD
{
public double X;
public double Y;
public PointD(double x, double y)
{
X = x;
Y = y;
}
public Point ToPoint()
{
return new Point((int)X, (int)Y);
}
}
}