-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyForm.cpp
149 lines (127 loc) · 4.28 KB
/
MyForm.cpp
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
#include "MyForm.h"
#include "cluster.h"
#include <msclr\marshal_cppstd.h>
using namespace kursProject;
using namespace System::IO;
cluster my;
[STAThread]
void Main(array<String^>^ args)
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
MyForm form;
Application::Run(%form);
my = cluster();
}
System::Void kursProject::MyForm::btnOverview_Click(System::Object ^ sender, System::EventArgs ^ e)
{
if (openFileDialog1->ShowDialog() == System::Windows::Forms::DialogResult::OK)
{
unsigned int nnp = 0;
for each(String^ file in openFileDialog1->FileNames)
{
textBox1->Text += "\r\n" + Path::GetFileName(file);
dataGridView1->Rows->Add(Path::GetFileName(file), gcnew Bitmap(file));
Bitmap^ bbb = my.toGrayScale(gcnew Bitmap(file));
//dataGridView1->Rows->Add(Path::GetFileName(file), bbb);
P vectP = my.vectorization(bbb);
msclr::interop::marshal_context context;
vectP.pathToFile = context.marshal_as<std::string>(file);
my.koord.push_back(vectP);
nnp++;
Bitmap^ clear(bbb);
//for(unsigned int i = 0; i < 100; i++) textBox1->Text += "\t" + vectP.x[i];
}
my.n = 100; //dimension
my.np = nnp; //number of point
}
}
System::Void kursProject::MyForm::btnDo_Click(System::Object ^ sender, System::EventArgs ^ e)
{
if (!my.koord.empty() && my.koord.size() > 1 && Convert::ToInt32(textBox2->Text) > 1)
{
my.k = Convert::ToInt32(textBox2->Text);
my.choosecenters();
my.previouscentry.clear();
for (unsigned int g = 0; g < my.k; g++)
{
my.previouscentry.push_back(my.centry[g]);//dlja kmeans
}
my.end = 0;
my.bindpoints();// -->kmeans
textBox1->Text += "\r\n" + "---------------------------------------------\r\nÐîçïîä³ë çîáðàæåíü\r\n";
for (unsigned int g = 0; g < my.kser.size(); g++)
{
textBox1->Text += "\r\n"+(g + 1) + " êëàñòåðó íàëåæèòü " + (my.kser[g].size()-1) + " çîáðàæåíü\r\n";
for (unsigned int j = 1; j < my.kser[g].size(); j++)
{
String^ str3 = gcnew String(my.kser[g][j].pathToFile.c_str());
textBox1->Text += " " + Path::GetFileName(gcnew String(str3)) +"\r\n";
}
}
/*textBox1->Text += "\r\n" + "---------------------------------------------";
for (unsigned int g = 0; g < my.kser.size(); g++)
{
textBox1->Text += "\r\n"+(g + 1) + " cluster " + my.kser[g].size() + " points\r\n";
for (unsigned int j = 1; j < my.kser[g].size(); j++)
{
String^ str3 = gcnew String(my.kser[g][j].pathToFile.c_str());
textBox1->Text += " " + Path::GetFileName(gcnew String(str3)) +" p( ";
for (unsigned int i = 0; i < my.kser[g][j].x.size(); i++)
{
if (i == my.n - 1) textBox1->Text += my.kser[g][j].x[i];
else textBox1->Text += my.kser[g][j].x[i] + ", ";
}
textBox1->Text += " )\r\n";
}
}*/
}
}
System::Void kursProject::MyForm::btnAddNewPict_Click(System::Object ^ sender, System::EventArgs ^ e)
{
if (!my.koord.empty() && !my.kser.empty())
{
if (openFileDialog1->ShowDialog() == System::Windows::Forms::DialogResult::OK)
{
textBox1->Text += "\r\n" + "---------------------------------------------";
unsigned int nnp = 0;
for each(String^ file in openFileDialog1->FileNames)
{
textBox1->Text += "\r\n" + Path::GetFileName(file);
dataGridView1->Rows->Add(Path::GetFileName(file), gcnew Bitmap(file));
Bitmap^ bbb = my.toGrayScale(gcnew Bitmap(file));
dataGridView1->Rows->Add(Path::GetFileName(file), bbb);
my.pointkNN = my.vectorization(bbb);
msclr::interop::marshal_context context;
my.pointkNN.pathToFile = context.marshal_as<std::string>(file);
my.koord.push_back(my.pointkNN);
nnp++;
for (unsigned int i = 0; i < 100; i++)
{
textBox1->Text += "\t" + my.pointkNN.x[i];
}
///////////////////////////////////////////////////////
my.kNearest();
textBox1->Text += ")\r\n Çîáðàæåííÿ ïîòðàïèëî â " + (my.ki + 1) + " êëàñòåð";
my.pointkNN.x.clear();
}
my.np += nnp;
}
}
}
System::Void kursProject::MyForm::btnClear_Click(System::Object ^ sender, System::EventArgs ^ e)
{
my.koord.clear();
my.centry.clear();
my.previouscentry.clear();
my.kser.clear();
my.end = 0;
my.vidstani.clear();
my.pointkNN.x.clear();
my.pointkNN.pathToFile.clear();
my.np = 0;
textBox1->Text = "";
textBox2->Text = "2";
dataGridView1->Rows->Clear();
dataGridView1->Refresh();
}