91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 3.99MB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發布日期: 2023-09-16
  • 語言: 其他
  • 標簽: MT9V034??KV58ARM??

資源簡介

里面包含了十幾種動態二值化閾值的算法,能夠采集和保存智能車圖像信息,也能在上面編寫程序實現圖像處理算法。

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Threading.Tasks;
using?System.Windows.Forms;

namespace?WindowsFormsApplication1
{
????class?AutoSizeFormClass
????{
????????//(1).聲明結構只記錄窗體和其控件的初始位置和大小。
????????public?struct?controlRect
????????{
????????????public?int?Left;
????????????public?int?Top;
????????????public?int?Width;
????????????public?int?Height;
????????????public?float?FontSize;
????????????public?string?FontName;
????????????public?Fontstyle?Fontstyle;
????????}
????????//存儲控件名和他的位置
????????public?Dictionary?oldCtrl?=?new?Dictionary();

????????int?ctrlNo?=?0;//1;
????????//(3).?創建兩個函數
????????//(3.1)記錄窗體和其控件的初始位置和大小
????????public?void?controllInitializeSize(Control?mForm)
????????{
????????????controlRect?cR;
????????????cR.Left?=?mForm.Left;
????????????cR.Top?=?mForm.Top;
????????????cR.Width?=?mForm.Width;
????????????cR.Height?=?mForm.Height;
????????????cR.FontSize?=?mForm.Font.Size;
????????????cR.FontName?=?mForm.Font.Name;
????????????cR.Fontstyle?=?mForm.Font.style;
????????????insertDictionary(mForm.Name?cR);
????????????AddControl(mForm);//窗體內其余控件還可能嵌套控件(比如panel)要單獨抽出因為要遞歸調用
????????}
????????private?void?AddControl(Control?ctl)
????????{
????????????foreach?(Control?c?in?ctl.Controls)
????????????{
????????????????controlRect?objCtrl;
????????????????objCtrl.Left?=?c.Left;
????????????????objCtrl.Top?=?c.Top;
????????????????objCtrl.Width?=?c.Width;
????????????????objCtrl.Height?=?c.Height;
????????????????objCtrl.FontSize?=?c.Font.Size;
????????????????objCtrl.FontName?=?c.Font.Name;
????????????????objCtrl.Fontstyle?=?c.Font.style;
????????????????insertDictionary(c.Name?objCtrl);

????????????????if?(c.Controls.Count?>?0)
????????????????????AddControl(c);
????????????}
????????}
????????//(3.2)控件自適應大小
????????public?void?controlAutoSize(Control?mForm)
????????{
????????????if?(ctrlNo?==?0)
????????????{
????????????????AddControl(mForm);??????????????????????????????????????????//窗體內其余控件可能嵌套其它控件(比如panel)故單獨抽出以便遞歸調用
????????????}
????????????float?wScale?=?(float)mForm.Width?/?oldCtrl[mForm.Name].Width;?;//新舊窗體之間的比例,與最早的舊窗體
????????????float?hScale?=?(float)mForm.Height?/?oldCtrl[mForm.Name].Height;?;//.Height;

????????????ctrlNo?=?1;?????????????????????????????????????????????????????//進入=1,第0個為窗體本身窗體內的控件從序號1開始
????????????AutoScaleControl(mForm?wScale?hScale);????????????????????????//窗體內其余控件還可能嵌套控件(比如panel)要單獨抽出因為要遞歸調用
????????}
????????private?void?insertDictionary(String?name?controlRect?cr)??????????//添加控件名和位置,如果名稱重復則更新
????????{
????????????Dictionary?temp?=?new?Dictionary();
????????????bool?flag?=?false;
????????????foreach?(var?pair?in?oldCtrl)
????????????{
????????????????if?(pair.Key.ToString()?==?name)
????????????????{
????????????????????temp.Ad

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????1041??2018-02-11?21:40??WindowsFormsApplication1.sln
?????文件???????51200??2018-03-07?14:35??WindowsFormsApplication1.v12.suo
?????目錄???????????0??2018-03-07?12:38??WindowsFormsApplication1\
?????文件?????????187??2018-02-11?21:40??WindowsFormsApplication1\App.config
?????文件????????7025??2018-02-11?21:40??WindowsFormsApplication1\AutoSizeFormClass.cs
?????目錄???????????0??2018-02-11?21:41??WindowsFormsApplication1\bin\
?????目錄???????????0??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\
?????目錄???????????0??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\AutoPicture\
?????目錄???????????0??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\
?????文件???????91041??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\1.png
?????文件??????111570??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\2.png
?????文件???????86634??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\3.png
?????文件???????95974??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\5.png
?????文件??????215321??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\56d94cfa0e328.png
?????文件??????101232??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\6.png
?????文件??????261360??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\Blue.png
?????文件???????36474??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\Close.png
?????文件???????40106??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\huanyuan.png
?????文件??????586808??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\MIn.bmp
?????文件???????35408??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\MIn.png
?????文件??????230846??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\ButtonPicture\Red.png
?????目錄???????????0??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\icon\
?????文件??????115535??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\icon\m4.ico
?????目錄???????????0??2018-03-07?13:14??WindowsFormsApplication1\bin\Debug\Picture\
?????文件???????23638??2018-03-06?22:11??WindowsFormsApplication1\bin\Debug\Picture\Image0.bmp
?????文件??????640054??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\Picture\Image1.bmp
?????文件????????4750??2018-03-06?21:03??WindowsFormsApplication1\bin\Debug\Picture\Imaged1.bmp
?????文件??????640054??2018-02-11?21:41??WindowsFormsApplication1\bin\Debug\Picture\Imageing0.bmp
?????文件???????23638??2018-03-07?13:14??WindowsFormsApplication1\bin\Debug\Picture\Imaging0.bmp
?????文件???????23638??2018-03-06?22:19??WindowsFormsApplication1\bin\Debug\Picture\imaging1.bmp
?????文件???????23638??2018-03-06?22:09??WindowsFormsApplication1\bin\Debug\Picture\Imaging2.bmp
............此處省略65個文件信息

評論

共有 條評論