Form1.Designer.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. namespace NewSegDll
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.trackBar1 = new System.Windows.Forms.TrackBar();
  29. this.trackBar2 = new System.Windows.Forms.TrackBar();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.trackBar3 = new System.Windows.Forms.TrackBar();
  36. this.button2 = new System.Windows.Forms.Button();
  37. this.button3 = new System.Windows.Forms.Button();
  38. this.radioButton1 = new System.Windows.Forms.RadioButton();
  39. this.radioButton2 = new System.Windows.Forms.RadioButton();
  40. this.radioButton3 = new System.Windows.Forms.RadioButton();
  41. this.radioButton4 = new System.Windows.Forms.RadioButton();
  42. this.label4 = new System.Windows.Forms.Label();
  43. this.trackBar4 = new System.Windows.Forms.TrackBar();
  44. this.button4 = new System.Windows.Forms.Button();
  45. this.button5 = new System.Windows.Forms.Button();
  46. this.button6 = new System.Windows.Forms.Button();
  47. this.label5 = new System.Windows.Forms.Label();
  48. this.trackBar5 = new System.Windows.Forms.TrackBar();
  49. this.label6 = new System.Windows.Forms.Label();
  50. this.trackBar6 = new System.Windows.Forms.TrackBar();
  51. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
  52. ((System.ComponentModel.ISupportInitialize)(this.trackBar2)).BeginInit();
  53. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  54. ((System.ComponentModel.ISupportInitialize)(this.trackBar3)).BeginInit();
  55. ((System.ComponentModel.ISupportInitialize)(this.trackBar4)).BeginInit();
  56. ((System.ComponentModel.ISupportInitialize)(this.trackBar5)).BeginInit();
  57. ((System.ComponentModel.ISupportInitialize)(this.trackBar6)).BeginInit();
  58. this.SuspendLayout();
  59. //
  60. // trackBar1
  61. //
  62. this.trackBar1.Location = new System.Drawing.Point(77, 41);
  63. this.trackBar1.Margin = new System.Windows.Forms.Padding(5);
  64. this.trackBar1.Name = "trackBar1";
  65. this.trackBar1.Size = new System.Drawing.Size(311, 45);
  66. this.trackBar1.TabIndex = 0;
  67. this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
  68. //
  69. // trackBar2
  70. //
  71. this.trackBar2.Location = new System.Drawing.Point(77, 96);
  72. this.trackBar2.Margin = new System.Windows.Forms.Padding(5);
  73. this.trackBar2.Name = "trackBar2";
  74. this.trackBar2.Size = new System.Drawing.Size(311, 45);
  75. this.trackBar2.TabIndex = 1;
  76. this.trackBar2.Scroll += new System.EventHandler(this.trackBar2_Scroll);
  77. //
  78. // label1
  79. //
  80. this.label1.AutoSize = true;
  81. this.label1.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  82. this.label1.Location = new System.Drawing.Point(4, 41);
  83. this.label1.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  84. this.label1.Name = "label1";
  85. this.label1.Size = new System.Drawing.Size(69, 19);
  86. this.label1.TabIndex = 2;
  87. this.label1.Text = "MN-Min";
  88. //
  89. // label2
  90. //
  91. this.label2.AutoSize = true;
  92. this.label2.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  93. this.label2.Location = new System.Drawing.Point(4, 96);
  94. this.label2.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  95. this.label2.Name = "label2";
  96. this.label2.Size = new System.Drawing.Size(69, 19);
  97. this.label2.TabIndex = 3;
  98. this.label2.Text = "MN-Max";
  99. this.label2.Click += new System.EventHandler(this.label2_Click);
  100. //
  101. // button1
  102. //
  103. this.button1.Location = new System.Drawing.Point(24, 440);
  104. this.button1.Margin = new System.Windows.Forms.Padding(5);
  105. this.button1.Name = "button1";
  106. this.button1.Size = new System.Drawing.Size(125, 36);
  107. this.button1.TabIndex = 4;
  108. this.button1.Text = "OT-二值化";
  109. this.button1.UseVisualStyleBackColor = true;
  110. this.button1.Click += new System.EventHandler(this.button1_Click);
  111. //
  112. // pictureBox1
  113. //
  114. this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  115. | System.Windows.Forms.AnchorStyles.Left)
  116. | System.Windows.Forms.AnchorStyles.Right)));
  117. this.pictureBox1.Location = new System.Drawing.Point(396, 12);
  118. this.pictureBox1.Name = "pictureBox1";
  119. this.pictureBox1.Size = new System.Drawing.Size(834, 547);
  120. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  121. this.pictureBox1.TabIndex = 5;
  122. this.pictureBox1.TabStop = false;
  123. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  124. //
  125. // label3
  126. //
  127. this.label3.AutoSize = true;
  128. this.label3.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  129. this.label3.Location = new System.Drawing.Point(4, 152);
  130. this.label3.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  131. this.label3.Name = "label3";
  132. this.label3.Size = new System.Drawing.Size(47, 19);
  133. this.label3.TabIndex = 7;
  134. this.label3.Text = "滤波";
  135. this.label3.Click += new System.EventHandler(this.label3_Click);
  136. //
  137. // trackBar3
  138. //
  139. this.trackBar3.Location = new System.Drawing.Point(77, 152);
  140. this.trackBar3.Margin = new System.Windows.Forms.Padding(5);
  141. this.trackBar3.Name = "trackBar3";
  142. this.trackBar3.Size = new System.Drawing.Size(311, 45);
  143. this.trackBar3.TabIndex = 6;
  144. this.trackBar3.Scroll += new System.EventHandler(this.trackBar3_Scroll);
  145. //
  146. // button2
  147. //
  148. this.button2.Location = new System.Drawing.Point(221, 440);
  149. this.button2.Margin = new System.Windows.Forms.Padding(5);
  150. this.button2.Name = "button2";
  151. this.button2.Size = new System.Drawing.Size(125, 36);
  152. this.button2.TabIndex = 8;
  153. this.button2.Text = "AP-二值化";
  154. this.button2.UseVisualStyleBackColor = true;
  155. this.button2.Click += new System.EventHandler(this.button2_Click);
  156. //
  157. // button3
  158. //
  159. this.button3.Location = new System.Drawing.Point(24, 486);
  160. this.button3.Margin = new System.Windows.Forms.Padding(5);
  161. this.button3.Name = "button3";
  162. this.button3.Size = new System.Drawing.Size(125, 36);
  163. this.button3.TabIndex = 9;
  164. this.button3.Text = "ST-二值化";
  165. this.button3.UseVisualStyleBackColor = true;
  166. this.button3.Click += new System.EventHandler(this.button3_Click);
  167. //
  168. // radioButton1
  169. //
  170. this.radioButton1.AutoSize = true;
  171. this.radioButton1.Location = new System.Drawing.Point(24, 368);
  172. this.radioButton1.Name = "radioButton1";
  173. this.radioButton1.Size = new System.Drawing.Size(84, 23);
  174. this.radioButton1.TabIndex = 10;
  175. this.radioButton1.TabStop = true;
  176. this.radioButton1.Text = "不滤波";
  177. this.radioButton1.UseVisualStyleBackColor = true;
  178. this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
  179. //
  180. // radioButton2
  181. //
  182. this.radioButton2.AutoSize = true;
  183. this.radioButton2.Location = new System.Drawing.Point(221, 368);
  184. this.radioButton2.Name = "radioButton2";
  185. this.radioButton2.Size = new System.Drawing.Size(103, 23);
  186. this.radioButton2.TabIndex = 11;
  187. this.radioButton2.TabStop = true;
  188. this.radioButton2.Text = "中值滤波";
  189. this.radioButton2.UseVisualStyleBackColor = true;
  190. this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
  191. //
  192. // radioButton3
  193. //
  194. this.radioButton3.AutoSize = true;
  195. this.radioButton3.Location = new System.Drawing.Point(24, 398);
  196. this.radioButton3.Name = "radioButton3";
  197. this.radioButton3.Size = new System.Drawing.Size(103, 23);
  198. this.radioButton3.TabIndex = 12;
  199. this.radioButton3.TabStop = true;
  200. this.radioButton3.Text = "均值滤波";
  201. this.radioButton3.UseVisualStyleBackColor = true;
  202. this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
  203. //
  204. // radioButton4
  205. //
  206. this.radioButton4.AutoSize = true;
  207. this.radioButton4.Location = new System.Drawing.Point(221, 398);
  208. this.radioButton4.Name = "radioButton4";
  209. this.radioButton4.Size = new System.Drawing.Size(103, 23);
  210. this.radioButton4.TabIndex = 13;
  211. this.radioButton4.TabStop = true;
  212. this.radioButton4.Text = "高斯滤波";
  213. this.radioButton4.UseVisualStyleBackColor = true;
  214. this.radioButton4.CheckedChanged += new System.EventHandler(this.radioButton4_CheckedChanged);
  215. //
  216. // label4
  217. //
  218. this.label4.AutoSize = true;
  219. this.label4.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  220. this.label4.Location = new System.Drawing.Point(4, 207);
  221. this.label4.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  222. this.label4.Name = "label4";
  223. this.label4.Size = new System.Drawing.Size(59, 19);
  224. this.label4.TabIndex = 15;
  225. this.label4.Text = "Sigma";
  226. //
  227. // trackBar4
  228. //
  229. this.trackBar4.Location = new System.Drawing.Point(77, 207);
  230. this.trackBar4.Margin = new System.Windows.Forms.Padding(5);
  231. this.trackBar4.Name = "trackBar4";
  232. this.trackBar4.Size = new System.Drawing.Size(311, 45);
  233. this.trackBar4.TabIndex = 14;
  234. //
  235. // button4
  236. //
  237. this.button4.Location = new System.Drawing.Point(221, 486);
  238. this.button4.Margin = new System.Windows.Forms.Padding(5);
  239. this.button4.Name = "button4";
  240. this.button4.Size = new System.Drawing.Size(125, 36);
  241. this.button4.TabIndex = 16;
  242. this.button4.Text = "MN-二值化";
  243. this.button4.UseVisualStyleBackColor = true;
  244. this.button4.Click += new System.EventHandler(this.button4_Click);
  245. //
  246. // button5
  247. //
  248. this.button5.Location = new System.Drawing.Point(24, 532);
  249. this.button5.Margin = new System.Windows.Forms.Padding(5);
  250. this.button5.Name = "button5";
  251. this.button5.Size = new System.Drawing.Size(125, 36);
  252. this.button5.TabIndex = 17;
  253. this.button5.Text = "闭合空洞";
  254. this.button5.UseVisualStyleBackColor = true;
  255. this.button5.Click += new System.EventHandler(this.button5_Click);
  256. //
  257. // button6
  258. //
  259. this.button6.Location = new System.Drawing.Point(221, 532);
  260. this.button6.Margin = new System.Windows.Forms.Padding(5);
  261. this.button6.Name = "button6";
  262. this.button6.Size = new System.Drawing.Size(125, 36);
  263. this.button6.TabIndex = 18;
  264. this.button6.Text = "晶界分割";
  265. this.button6.UseVisualStyleBackColor = true;
  266. this.button6.Click += new System.EventHandler(this.button6_Click);
  267. //
  268. // label5
  269. //
  270. this.label5.AutoSize = true;
  271. this.label5.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  272. this.label5.Location = new System.Drawing.Point(4, 262);
  273. this.label5.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  274. this.label5.Name = "label5";
  275. this.label5.Size = new System.Drawing.Size(79, 19);
  276. this.label5.TabIndex = 20;
  277. this.label5.Text = "AP-Radi";
  278. //
  279. // trackBar5
  280. //
  281. this.trackBar5.Location = new System.Drawing.Point(77, 262);
  282. this.trackBar5.Margin = new System.Windows.Forms.Padding(5);
  283. this.trackBar5.Maximum = 10;
  284. this.trackBar5.Name = "trackBar5";
  285. this.trackBar5.Size = new System.Drawing.Size(311, 45);
  286. this.trackBar5.TabIndex = 19;
  287. this.trackBar5.Scroll += new System.EventHandler(this.trackBar5_Scroll);
  288. //
  289. // label6
  290. //
  291. this.label6.AutoSize = true;
  292. this.label6.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  293. this.label6.Location = new System.Drawing.Point(4, 315);
  294. this.label6.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  295. this.label6.Name = "label6";
  296. this.label6.Size = new System.Drawing.Size(79, 19);
  297. this.label6.TabIndex = 22;
  298. this.label6.Text = "AP-Thre";
  299. //
  300. // trackBar6
  301. //
  302. this.trackBar6.Location = new System.Drawing.Point(77, 315);
  303. this.trackBar6.Margin = new System.Windows.Forms.Padding(5);
  304. this.trackBar6.Name = "trackBar6";
  305. this.trackBar6.Size = new System.Drawing.Size(311, 45);
  306. this.trackBar6.TabIndex = 21;
  307. //
  308. // Form1
  309. //
  310. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 19F);
  311. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  312. this.ClientSize = new System.Drawing.Size(1244, 572);
  313. this.Controls.Add(this.label6);
  314. this.Controls.Add(this.trackBar6);
  315. this.Controls.Add(this.label5);
  316. this.Controls.Add(this.trackBar5);
  317. this.Controls.Add(this.button6);
  318. this.Controls.Add(this.button5);
  319. this.Controls.Add(this.button4);
  320. this.Controls.Add(this.label4);
  321. this.Controls.Add(this.trackBar4);
  322. this.Controls.Add(this.radioButton4);
  323. this.Controls.Add(this.radioButton3);
  324. this.Controls.Add(this.radioButton2);
  325. this.Controls.Add(this.radioButton1);
  326. this.Controls.Add(this.button3);
  327. this.Controls.Add(this.button2);
  328. this.Controls.Add(this.label3);
  329. this.Controls.Add(this.trackBar3);
  330. this.Controls.Add(this.pictureBox1);
  331. this.Controls.Add(this.button1);
  332. this.Controls.Add(this.label2);
  333. this.Controls.Add(this.label1);
  334. this.Controls.Add(this.trackBar2);
  335. this.Controls.Add(this.trackBar1);
  336. this.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  337. this.Margin = new System.Windows.Forms.Padding(5);
  338. this.Name = "Form1";
  339. this.Text = "图像二值化";
  340. this.Load += new System.EventHandler(this.Form1_Load);
  341. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
  342. ((System.ComponentModel.ISupportInitialize)(this.trackBar2)).EndInit();
  343. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  344. ((System.ComponentModel.ISupportInitialize)(this.trackBar3)).EndInit();
  345. ((System.ComponentModel.ISupportInitialize)(this.trackBar4)).EndInit();
  346. ((System.ComponentModel.ISupportInitialize)(this.trackBar5)).EndInit();
  347. ((System.ComponentModel.ISupportInitialize)(this.trackBar6)).EndInit();
  348. this.ResumeLayout(false);
  349. this.PerformLayout();
  350. }
  351. #endregion
  352. private System.Windows.Forms.TrackBar trackBar1;
  353. private System.Windows.Forms.TrackBar trackBar2;
  354. private System.Windows.Forms.Label label1;
  355. private System.Windows.Forms.Label label2;
  356. private System.Windows.Forms.Button button1;
  357. private System.Windows.Forms.PictureBox pictureBox1;
  358. private System.Windows.Forms.Label label3;
  359. private System.Windows.Forms.TrackBar trackBar3;
  360. private System.Windows.Forms.Button button2;
  361. private System.Windows.Forms.Button button3;
  362. private System.Windows.Forms.RadioButton radioButton1;
  363. private System.Windows.Forms.RadioButton radioButton2;
  364. private System.Windows.Forms.RadioButton radioButton3;
  365. private System.Windows.Forms.RadioButton radioButton4;
  366. private System.Windows.Forms.Label label4;
  367. private System.Windows.Forms.TrackBar trackBar4;
  368. private System.Windows.Forms.Button button4;
  369. private System.Windows.Forms.Button button5;
  370. private System.Windows.Forms.Button button6;
  371. private System.Windows.Forms.Label label5;
  372. private System.Windows.Forms.TrackBar trackBar5;
  373. private System.Windows.Forms.Label label6;
  374. private System.Windows.Forms.TrackBar trackBar6;
  375. }
  376. }