-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.cs
More file actions
209 lines (194 loc) · 8.38 KB
/
Form1.cs
File metadata and controls
209 lines (194 loc) · 8.38 KB
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
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 Microsoft.VisualBasic;
namespace BarcodeRecoveryCS
{
public partial class Form1 : Form
{
BarcodeToolbox bt = new BarcodeToolbox();
ReadBarcode rbar = new ReadBarcode();
public Form1()
{
InitializeComponent();
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void uploadImageToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenFileDialog open = new OpenFileDialog();
string imageFileLoc;
open.InitialDirectory = @"D:\RecoveredBarcodes";
open.ShowDialog();
imageFileLoc = open.FileName;
picDisplay.ImageLocation = imageFileLoc;
//picDisplay.SizeMode = PictureBoxSizeMode.StretchImage;
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void identifyBarsToolStripMenuItem_Click(object sender, EventArgs e)
{
Bitmap tmp;
try
{
bt = new BarcodeToolbox((Bitmap)picDisplay.Image);
picDisplay.Image = (Image)bt.identifyBars();
}
catch (Exception ex){ }
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void eXITToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void decodeBarcodeToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
MessageBox.Show(rbar.read((Bitmap)picDisplay.Image));
}
catch (Exception ex) { MessageBox.Show("No Barcode to read"); }
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void changeToBWToolStripMenuItem_Click(object sender, EventArgs e)
{
Bitmap tmp;
try
{
bt = new BarcodeToolbox((Bitmap)picDisplay.Image);
tmp = bt.identifyBars();
picDisplay.Image = (Image)tmp;
}
catch (Exception ex) { MessageBox.Show("No Barcode to read"); }
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void traversToolStripMenuItem_Click(object sender, EventArgs e)
{
Bitmap tmp = (Bitmap)picDisplay.Image;
try
{
for (int r = 0; r < tmp.Width; r++)
{
for (int c = 0; c < tmp.Height; c++)
{
if (tmp.GetPixel(r, c).R > 100 && tmp.GetPixel(r, c).G == 0)
tmp.SetPixel(r, c, Color.Black);
}
}
picDisplay.Image = (Image)tmp;
}
catch (Exception ex) { MessageBox.Show("No Barcode to read"); }
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void identifyGoodBarsToolStripMenuItem_Click(object sender, EventArgs e)
{
//try
//{
bt = new BarcodeToolbox((Bitmap)picDisplay.Image);
picDisplay.Image = bt.isGoodBar();
//}
//catch (Exception ex) { MessageBox.Show("No Barcode to read"); }
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void generate128ToolStripMenuItem_Click_1(object sender, EventArgs e)
{
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void generate39ToolStripMenuItem_Click(object sender, EventArgs e)
{
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void convertToBlackAndWhiteToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
ImageProcessing ip = new ImageProcessing();
picDisplay.Image = (Image)ip.toBW((Bitmap)picDisplay.Image);
}
catch (Exception ex) { MessageBox.Show("No Barcode to read"); }
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void thresholdToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
ImageProcessing ip = new ImageProcessing();
picDisplay.Image = (Image)ip.Threshold((Bitmap)picDisplay.Image, 0, 80);
}
catch (Exception ex) { MessageBox.Show("No Barcode to read"); }
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void invertToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
ImageProcessing ip = new ImageProcessing();
picDisplay.Image = (Image)ip.invert((Bitmap)picDisplay.Image);
}
catch (Exception ex) { MessageBox.Show("No Barcode to read"); }
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void saveToolStripMenuItem_Click(object sender, EventArgs e)
{
SaveFileDialog open = new SaveFileDialog();
try
{
open.InitialDirectory = @"D:\RecoveredBarcodes";
open.ShowDialog();
picDisplay.Image.Save(open.FileName + ".jpg");
}
catch (Exception ex) { }
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void blurToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
ImageProcessing ip = new ImageProcessing();
picDisplay.Image = (Image)ip.blur((Bitmap)picDisplay.Image, 3);
}
catch (Exception ex) { MessageBox.Show("No Barcode to read"); }
}
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void reconstructToolStripMenuItem_Click(object sender, EventArgs e)
{
Bitmap btmap=null;
string x;
try
{
for (int i = 0; i < 2; i++)
{
btmap = (Bitmap)picDisplay.Image;
BarcodeToolbox bt = new BarcodeToolbox(btmap);
btmap = bt.Reconstruct(0, i==0);
// read barcode
x = rbar.read(btmap);
if (!string.IsNullOrEmpty(x))
{
picDisplay.Image = (Image)btmap;
MessageBox.Show(x);
return;
}
}
picDisplay.Image = (Image)btmap;
MessageBox.Show("Unable To Recover");
}
catch (Exception ex) { MessageBox.Show(ex.ToString()); }
}
// ///////////////////////////////////////////////////////////////////////////////////////////
private void normalizeToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
ImageProcessing ip = new ImageProcessing();
picDisplay.Image = (Image)ip.bwThresh((Bitmap)picDisplay.Image,0,80);
}
catch (Exception ex) { MessageBox.Show("No Barcode to read"); }
}
}
}