123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693 |
- using OpenCvSharp;
- using OpenCvSharp.Extensions;
- using PaintDotNet.Base;
- using PaintDotNet.Base.Enum;
- using PaintDotNet.Base.Functionodel;
- using PaintDotNet.CustomControl;
- using PaintDotNet.Data.Param;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.IO;
- using System.Windows.Forms;
- using PaintDotNet.DbOpreate.DbBll;
- using PaintDotNet.DbOpreate.DbModel;
- using PaintDotNet.Base.CommTool;
- using System.Linq;
- using PaintDotNet.Instrument;
- using Metis.ParameterSet;
- using static Metis.ParameterSet.GeneralAnalysisModel;
- using static Metis.ParameterSet.GeneralAnalysisModel.PolyphaseMutiAreaContentModel;
- namespace PaintDotNet.GeneralAnalysis
- {
- /// <summary>
- /// 多相含量
- /// </summary>
- internal class PolyphaseMutiAreaContent : PdnBaseForm
- {
- #region 控件
- private System.Windows.Forms.GroupBox groupBox4;
- private System.Windows.Forms.ListView listView1;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.CheckBox checkBox1;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.GroupBox groupBox_review;
- private System.Windows.Forms.GroupBox groupBox5;
- private System.Windows.Forms.GroupBox groupBox6;
- private System.Windows.Forms.GroupBox groupBox7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.ImageList imageList1;
- private DataGridView dataGridView_results;
- private Button button_remove;
- private Button button_all;
- private IContainer components;
- private List<CounterResult> finalResults = new List<CounterResult>();
- private List<CounterResult> counterResults = new List<CounterResult>();
- private Button btn_close;
- private GroupBox groupBox2;
- private CheckBox cb8;
- private CheckBox cb6;
- private CheckBox cb4;
- private CheckBox cb7;
- private CheckBox cb5;
- private CheckBox cb3;
- private CheckBox cb2;
- private CheckBox cb1;
- private Label label7;
- private Label label6;
- private Label label5;
- private TextBox txt_phaseName;
- private Label label4;
- private ComboBox cb_SelectPhase;
- private Label label3;
- private RadioButton rb8;
- private RadioButton rb7;
- private RadioButton rb6;
- private RadioButton rb5;
- private RadioButton rb4;
- private RadioButton rb3;
- private RadioButton rb2;
- private RadioButton rb1;
- private Label label2;
- private Panel panel1;
- private GroupBox groupBox3;
- private CheckBox checkBox11;
- private CheckBox checkBox10;
- private Button But_DeleteSX;
- private Button But_DeleteKD;
- private Panel panel2;
- private NumericUpDown numericUpDown_RangeEnd;
- private NumericUpDown numericUpDown_RangeStart;
- private NumericUpDown numericUpDown_SXEnd;
- private NumericUpDown numericUpDown_SXStart;
- private NumericUpDown numericUpDown_KDEnd;
- private NumericUpDown numericUpDown_KDStart;
- private ColorRangeControl cRControl;
- private NumericUpDown numericUpDown1;
- private Button button6;
- private Button button5;
- #endregion
- private GeneralAnalysisCommonControlButtons commonControlButtons;
- /// <summary>
- /// 主空间
- /// </summary>
- private AppWorkspace appWorkspace;
- /// <summary>
- /// 图像面板
- /// </summary>
- private DocumentWorkspaceWindow documentWorkspace;
- /// <summary>
- /// 选中图片的bitmap
- /// </summary>
- private Bitmap bitmap;
- /// <summary>
- /// 默认八个颜色的值
- /// </summary>
- private Color[] DefaultColor = new Color[] { Color.Red, Color.Blue, Color.Yellow, Color.Green, Color.Gray, Color.Black, Color.Gold, Color.DeepSkyBlue };
- /// <summary>
- /// 原相
- /// </summary>
- private List<PhaseModel> phaseModels = new List<PhaseModel>();
- /// <summary>
- /// 加工后的相
- /// </summary>
- private List<PhaseModel> viewModels = new List<PhaseModel>();
- private List<MutiPolyphaseModel> mPhaseModels = new List<MutiPolyphaseModel>();
- private List<PhaseModel> orginPhaseModels = new List<PhaseModel>();
- private List<RangeColor> rangeColors = new List<RangeColor>();
- private ColorsForm colorsFormGrid;
- private int imgIndex = -1;
- /// <summary>
- /// 处理程序
- /// </summary>
- private ParamObject action = new Data.Action.Action1010();
- private ParamObject action914 = new Data.Action.Action914();
- private ParamObject action911 = new Data.Action.Action911();
- private List<PolyphaseAnalysisResult> mainPolyphaseAnalysisResults = new List<PolyphaseAnalysisResult>();
- private List<PolyphaseAnalysisResult> viewPolyphaseAnalysisResults = new List<PolyphaseAnalysisResult>();
- private int decnum = 2;
- private int is_all = 0;
- private int xiang_num = 0;
- private GeneralAnalysisModel generalAnalysisModel = new GeneralAnalysisModel();
- private bool userAll = false;
- private string selectedImg = string.Empty;
- private bool isExportResults = false;
- private bool isExportReports = false;
- private bool isExportProjects = false;
- private int menuId;
- private string menuName;
- /// <summary>
- /// 是否脚本运行
- /// </summary>
- private Boolean initScriptValues = false;
- /// <summary>
- /// 初始系统参数配置值
- /// </summary>
- private int selectIndex;
- private List<Bitmap> bitList = new List<Bitmap>();
- private Button button9;
- private CheckedListBox listBox_analysisResult;
- private DataGridViewTextBoxColumn Column5;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private Dictionary<string, List<Bitmap>> bitDic = new Dictionary<string, List<Bitmap>>();
- private Dictionary<string, PolyphaseMutiAreaContentModel> everyImgData = new Dictionary<string, PolyphaseMutiAreaContentModel>();
- public PolyphaseMutiAreaContent(AppWorkspace appWorkspace,PdnMenuItem menuItem)
- {
- InitializeComponent();
- InitializeLanguageText();
- this.appWorkspace = appWorkspace;
- this.colorsFormGrid = new ColorsForm();
- this.colorsFormGrid.StartPosition = FormStartPosition.CenterScreen;
- this.documentWorkspace = new DocumentWorkspaceWindow(appWorkspace);
- this.documentWorkspace.Dock = DockStyle.Fill;
- this.documentWorkspace.HookMouseEvents();
- this.documentWorkspace.AuxiliaryLineEnabled = false;
- this.documentWorkspace.Visible = false;
- this.groupBox_review.Controls.Add(documentWorkspace);
- this.commonControlButtons = new GeneralAnalysisCommonControlButtons();
- this.commonControlButtons.Dock = DockStyle.Top;
- this.commonControlButtons.Height = 30;
- this.commonControlButtons.WithTrackBar();
- this.commonControlButtons.trackBar.Minimum = 0;
- this.commonControlButtons.trackBar.Maximum = 255;
- this.commonControlButtons.trackBar.Value = 255;
- this.commonControlButtons.trackLabel.Text = PdnResources.GetString("Menu.transparency.text")+":";
- this.groupBox_review.Controls.Add(commonControlButtons);
- cRControl = new ColorRangeControl();
- cRControl.Height = this.panel1.Height;
- this.panel1.Controls.Add(cRControl);
- cRControl.Click += CRControl_Click;
- cRControl.ColorRangeChangeEvent += new EventHandler(this.ColorRangeChangeEvent);
- this.groupBox2.Enabled = false;
- this.menuId = menuItem.MenuId;
- this.menuName = menuItem.Text;
- Init_CheckBoxes();
- InitPicList();
- SetAnalyzeModelFromXml("Template.Manager.item2.PolyphaseMutiAreaContent");
- SetStyle(ControlStyles.UserPaint, true);
- SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景.
- SetStyle(ControlStyles.DoubleBuffer, true); // 双缓冲
- InitCommonButtonEvent();
- this.Shown += showImg;
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.saveLastData);
- }
- /// <summary>
- /// 获取上次操作参数
- /// </summary>
- private void getLastData() {
- string filePath = Application.StartupPath + "\\Config\\Default\\ParameterSaving\\ParameterGeneralAnalysis.xml";
- if (!System.IO.File.Exists(filePath))
- {
- generalAnalysisModel = new GeneralAnalysisModel();
- generalAnalysisModel.PolyphaseMutiAreaContentModels = new PolyphaseMutiAreaContentModel();
- generalAnalysisModel.PolyphaseCounterAnalysisModels = new PolyphaseCounterAnalysisModel();
- generalAnalysisModel.TwoPhaseScaleModels = new TwoPhaseScaleModel();
- generalAnalysisModel.PolyphaseContentModels = new PolyphaseContentModel();
- generalAnalysisModel.PolyphaseDistanceModels = new PolyphaseDistanceModel();
- generalAnalysisModel.DebrisSelectionModels = new GeneralAnalysisModel.DebrisSelectionModel();
- generalAnalysisModel.CountNumberAnalysisModels = new CountNumberAnalysisModel();
- generalAnalysisModel.PolyphaseMutiAreaContentModels.hasUsed = false;
- generalAnalysisModel.PolyphaseCounterAnalysisModels.hasUsed = false;
- generalAnalysisModel.TwoPhaseScaleModels.hasUsed = false;
- generalAnalysisModel.PolyphaseContentModels.hasUsed = false;
- generalAnalysisModel.PolyphaseDistanceModels.hasUsed = false;
- generalAnalysisModel.DebrisSelectionModels.hasUsed = false;
- generalAnalysisModel.CountNumberAnalysisModels.hasUsed = false;
- string porosityInfoXml = XmlSerializeHelper.XmlSerialize<GeneralAnalysisModel>(generalAnalysisModel);
- Directory.CreateDirectory(Application.StartupPath + "\\Config\\Default\\ParameterSaving\\");
- FileOperationHelper.WriteStringToFile(porosityInfoXml, filePath, FileMode.CreateNew);
- }
- else
- {
- generalAnalysisModel = XmlSerializeHelper.DESerializer<GeneralAnalysisModel>(FileOperationHelper.ReadStringFromFile(filePath, FileMode.Open));
- if (generalAnalysisModel.PolyphaseMutiAreaContentModels == null) {
- generalAnalysisModel.PolyphaseMutiAreaContentModels = new PolyphaseMutiAreaContentModel();
- }
- if (generalAnalysisModel.PolyphaseMutiAreaContentModels.hasUsed) {
- #region [多相数量]
- switch (generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter1)
- {
- case 0:
- rb1.Checked = true;
- break;
- case 1:
- rb1.Checked = true;
- break;
- case 2:
- rb1.Checked = true;
- rb2.Checked = true;
- break;
- case 3:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- break;
- case 4:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- break;
- case 5:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- break;
- case 6:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- rb6.Checked = true;
- break;
- case 7:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- rb6.Checked = true;
- rb7.Checked = true;
- break;
- case 8:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- rb6.Checked = true;
- rb7.Checked = true;
- rb8.Checked = true;
- break;
- }
- #endregion
- #region [显示物相]
- string[] allNum = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter4.Split(',');
- if (allNum.Contains("1"))
- {
- cb1.Checked = true;
- }
- else
- {
- cb1.Checked = false;
- }
- if (allNum.Contains("2"))
- {
- cb2.Checked = true;
- }
- else
- {
- cb2.Checked = false;
- }
- if (allNum.Contains("3"))
- {
- cb3.Checked = true;
- }
- else
- {
- cb3.Checked = false;
- }
- if (allNum.Contains("4"))
- {
- cb4.Checked = true;
- }
- else
- {
- cb4.Checked = false;
- }
- if (allNum.Contains("5"))
- {
- cb5.Checked = true;
- }
- else
- {
- cb5.Checked = false;
- }
- if (allNum.Contains("6"))
- {
- cb6.Checked = true;
- }
- else
- {
- cb6.Checked = false;
- }
- if (allNum.Contains("7"))
- {
- cb7.Checked = true;
- }
- else
- {
- cb7.Checked = false;
- }
- if (allNum.Contains("8"))
- {
- cb8.Checked = true;
- }
- else
- {
- cb8.Checked = false;
- }
- #endregion
- #region [相信息]
- for (int i = 0; i < generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter3.Count; i++)
- {
- PolyphaseData data = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter3[i];
- viewModels[i].color = data.color;
- mPhaseModels[i].Model.color = data.color;
- mPhaseModels[i].ColorStart = data.downNum;
- mPhaseModels[i].ColorEnd = data.upNum;
- cRControl.SetColor(i, Color.FromArgb(data.color));
- PhaseModel model = this.applyButtonImpl(Color.FromArgb(data.color), data.downNum, data.upNum);
- this.documentWorkspace.phaseModels[i] = model;
- this.phaseModels[i] = model;
- }
- this.documentWorkspace.Refresh();
- #endregion
- checkBox1.Checked = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter12;
- cb_SelectPhase.SelectedItem = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter2;
- if (cb_SelectPhase.SelectedIndex == -1) {
- numericUpDown_RangeStart.Value = mPhaseModels[0].ColorStart;
- numericUpDown_RangeEnd.Value = mPhaseModels[0].ColorEnd;
- }
- else
- {
- numericUpDown_RangeStart.Value = mPhaseModels[cb_SelectPhase.SelectedIndex].ColorStart;
- numericUpDown_RangeEnd.Value = mPhaseModels[cb_SelectPhase.SelectedIndex].ColorEnd;
- }
- commonControlButtons.trackBar.Value = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter13;
- if (generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter5) {
- checkBox10.Checked = true;
- numericUpDown_KDStart.Value = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter7;
- numericUpDown_KDEnd.Value = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter8;
- }
- if (generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter6)
- {
- checkBox11.Checked = true;
- numericUpDown_SXStart.Value = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter9;
- numericUpDown_SXEnd.Value = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter10;
- }
- numericUpDown1.Value = generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter11;
- for (int i = 0; i < listView1.Items.Count; i++) {
- if (everyImgData.ContainsKey(listView1.Items[i].Name))
- {
- everyImgData[listView1.Items[i].Name] = generalAnalysisModel.PolyphaseMutiAreaContentModels;
- }
- else {
- everyImgData.Add(listView1.Items[i].Name, generalAnalysisModel.PolyphaseMutiAreaContentModels);
- }
- }
- }
- }
- }
- /// <summary>
- /// 保存上次操作参数
- /// </summary>
- private void saveLastData(object sender, EventArgs e)
- {
- #region [开启脚本录制]
- if (appWorkspace.startScriptRecording)
- {
- getScriptRecording();
- }
- #endregion
- if (generalAnalysisModel.PolyphaseMutiAreaContentModels == null)
- {
- generalAnalysisModel.PolyphaseMutiAreaContentModels = new PolyphaseMutiAreaContentModel();
- }
- generalAnalysisModel.PolyphaseMutiAreaContentModels.hasUsed = true;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter1 = xiang_num;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter12 = checkBox1.Checked;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter13 = commonControlButtons.trackBar.Value;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter2 = cb_SelectPhase.SelectedItem == null ? "" : cb_SelectPhase.SelectedItem.ToString();
- if (generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter3 == null)
- {
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter3 = new List<PolyphaseData>();
- }
- var list = new List<PolyphaseData>();
- foreach (var s in mPhaseModels)
- {
- PolyphaseData data = new PolyphaseData();
- data.color = s.Model.color;
- data.downNum = s.ColorStart;
- data.upNum = s.ColorEnd;
- list.Add(data);
- }
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter3 = list;
- #region [保存物相选择]
- string all = String.Empty;
- if (cb1.Checked)
- {
- all += "1,";
- }
- if (cb2.Checked)
- {
- all += "2,";
- }
- if (cb3.Checked)
- {
- all += "3,";
- }
- if (cb4.Checked)
- {
- all += "4,";
- }
- if (cb5.Checked)
- {
- all += "5,";
- }
- if (cb6.Checked)
- {
- all += "6,";
- }
- if (cb7.Checked)
- {
- all += "7,";
- }
- if (cb8.Checked)
- {
- all += "8,";
- }
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter4 = all;
- #endregion
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter5 = checkBox10.Checked;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter6 = checkBox11.Checked;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter7 = (int)numericUpDown_KDStart.Value;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter8 = (int)numericUpDown_KDEnd.Value;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter9 = (int)numericUpDown_SXStart.Value;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter10 = (int)numericUpDown_SXEnd.Value;
- generalAnalysisModel.PolyphaseMutiAreaContentModels.parameter11 = (int)numericUpDown1.Value;
- string filePath = Application.StartupPath + "\\Config\\Default\\ParameterSaving\\ParameterGeneralAnalysis.xml";
- string porosityInfoXml = XmlSerializeHelper.XmlSerialize<GeneralAnalysisModel>(generalAnalysisModel);
- FileOperationHelper.WriteStringToFile(porosityInfoXml, filePath, FileMode.Create);
- }
- private void showImg(object sender, EventArgs e)
- {
- listView1.Focus();
- if (this.imgIndex != -1)
- {
- //滚动到指定的行位置
- this.listView1.EnsureVisible(this.imgIndex);
- this.listView1.Items[imgIndex].Focused = true;
- this.listView1.Items[imgIndex].Selected = true;
- //如果是脚本执行,将参数带入
- if (appWorkspace.ScriptRunning && appWorkspace.ScriptCurrentParam != null)
- {
- this.initScriptValues = true;//ScriptAutomatic
- //Boolean initScriptValues = true;
- ////在这里反射出对应功能的参数类
- string className = InvariantData.path_Action + ".Action" + menuId;
- ParamObject param = (ParamObject)System.Reflection.Assembly.Load(InvariantData.assembly_Data).CreateInstance(className);
- foreach (Args arg in param.Lists)
- {
- Args param1 = appWorkspace.ScriptCurrentParam.Lists.Find(m => m.Key.Equals(arg.Key));
- if (param1.value != null)
- arg.Value = param1.value;
- getValue(arg.key, arg.Value);
- }
- appWorkspace.ScriptCurrentParam = null;//阻止第二次进入仍然被赋值参数
- }
- else
- {//读取上次关闭窗口时保存的参数
- getLastData();
- }
- }
- if (this.initScriptValues && this.appWorkspace.ScriptAutomatic)
- this.startScriptAutomaticAction();
- }
- /// <summary>
- /// 执行脚本自动化的步骤
- /// </summary>
- private void startScriptAutomaticAction()
- {
- //this.button8.PerformClick();
- //this.button7.PerformClick();
- button8_Click();
- button7_Click();
- if (isExportResults)//导出结果
- this.button4.PerformClick();
- if (isExportReports)//生成报告
- this.button3.PerformClick();
- if (isExportProjects)//导出项目
- this.button9.PerformClick();
- this.appWorkspace.ScriptAutomatic = false;
- this.Close();
- }
- private void ColorRangeChangeEvent(object sender, EventArgs e)
- {
- this.numericUpDown_RangeStart.ValueChanged -= this.numericUpDown_RangeStart_ValueChanged;
- this.numericUpDown_RangeEnd.ValueChanged -= this.numericUpDown_RangeEnd_ValueChanged;
- this.numericUpDown_RangeStart.Value = rangeColors[selectIndex].Start;
- this.numericUpDown_RangeEnd.Value = rangeColors[selectIndex].End;
- mPhaseModels[cRControl.SelectIndex].ColorStart = rangeColors[selectIndex].Start;
- mPhaseModels[cRControl.SelectIndex].ColorEnd = rangeColors[selectIndex].End;
- try
- {
- mPhaseModels[cRControl.SelectIndex + 1].ColorStart = rangeColors[selectIndex + 1].Start;
- }
- catch (Exception)
- {
- }
- for (int i = 0; i < this.documentWorkspace.phaseModels.Count; i++)
- {
- this.documentWorkspace.phaseModels[i] = applyButtonImpl(rangeColors[i].Color, rangeColors[i].Start, rangeColors[i].End);
- Bitmap bmp = MakeTransparent(this.documentWorkspace.phaseModels[i].mat.ToBitmap(), this.commonControlButtons.trackBar.Value);
- this.documentWorkspace.phaseModels[i].mat = bmp.ToMat();
- }
- this.documentWorkspace.Refresh();
- this.numericUpDown_RangeStart.ValueChanged += this.numericUpDown_RangeStart_ValueChanged;
- this.numericUpDown_RangeEnd.ValueChanged += this.numericUpDown_RangeEnd_ValueChanged;
- }
- private void InitCommonButtonEvent()
- {
- this.commonControlButtons.zoomInButton.Click += new EventHandler(zoomInButton_Click);
- this.commonControlButtons.zoomOutButton.Click += new EventHandler(zoomOutButton_Click);
- this.commonControlButtons.zoomToWindowButton.Click += new EventHandler(zoomToWindowButton_Click);
- this.commonControlButtons.actualSizeButton.Click += new EventHandler(actualSizeButton_Click);
- this.commonControlButtons.pointerButton.Click += new EventHandler(pointerButton_Click);
- this.commonControlButtons.mobileModeButton.Click += new EventHandler(mobileModeButton_Click);
- this.commonControlButtons.trackBar.ValueChanged += new EventHandler(TrackBar_ValueChanged);
- }
- public Bitmap MakeTransparent(Bitmap src, int num)
- {
- try
- {
- int w = src.Width;
- int h = src.Height;
- Bitmap dstBitmap = new Bitmap(src.Width, src.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
- System.Drawing.Imaging.BitmapData srcData = src.LockBits(new Rectangle(0, 0, w, h), System.Drawing.Imaging.ImageLockMode.ReadOnly, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
- System.Drawing.Imaging.BitmapData dstData = dstBitmap.LockBits(new Rectangle(0, 0, w, h), System.Drawing.Imaging.ImageLockMode.WriteOnly, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
- unsafe
- {
- byte* pIn = (byte*)srcData.Scan0.ToPointer();
- byte* pOut = (byte*)dstData.Scan0.ToPointer();
- byte* p;
- int stride = srcData.Stride;
- int r, g, b, a;
- for (int y = 0; y < h; y++)
- {
- for (int x = 0; x < w; x++)
- {
- p = pIn;
- b = pIn[0];
- g = pIn[1];
- r = pIn[2];
- a = pIn[3];
- pOut[0] = (byte)b;
- pOut[1] = (byte)g;
- pOut[2] = (byte)r;
- if (a != 0)
- {
- pOut[3] = (byte)num;
- }else
- {
- pOut[3] = (byte)a;
- }
-
- pIn += 4;
- pOut += 4;
- }
- pIn += srcData.Stride - w * 4;
- pOut += srcData.Stride - w * 4;
- }
- src.UnlockBits(srcData);
- dstBitmap.UnlockBits(dstData);
- return dstBitmap;
- }
- }
- catch (Exception)
- {
- return null;
- }
- }
- private void TrackBar_ValueChanged(object sender, EventArgs e)
- {
- for (int i = 0; i < this.documentWorkspace.phaseModels.Count; i++)
- {
- this.documentWorkspace.phaseModels[i] = applyButtonImpl(rangeColors[i].Color, rangeColors[i].Start, rangeColors[i].End);
- Bitmap bmp = MakeTransparent(this.documentWorkspace.phaseModels[i].mat.ToBitmap(),this.commonControlButtons.trackBar.Value);
- this.documentWorkspace.phaseModels[i].mat = bmp.ToMat();
- }
- this.documentWorkspace.Refresh();
- }
- private void zoomInButton_Click(object sender, EventArgs e)
- {
- if (this.bitmap!=null)
- this.documentWorkspace.ZoomIn();
- }
- private void zoomOutButton_Click(object sender, EventArgs e)
- {
- if (this.bitmap != null)
- this.documentWorkspace.ZoomOut();
- }
- private void zoomToWindowButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ZoomBasis = ZoomBasis.FitToWindow;
- }
- private void actualSizeButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ZoomBasis = ZoomBasis.ScaleFactor;
- this.documentWorkspace.ScaleFactor = ScaleFactor.OneToOne;
- }
- private void pointerButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ActiveTool = Annotation.Enum.DrawToolType.Pointer;
- }
- private void mobileModeButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ActiveTool = Annotation.Enum.DrawToolType.MoveMode;
- }
- private void CRControl_Click(object sender, EventArgs e)
- {
- showParams(mPhaseModels[cRControl.SelectIndex]);
- }
- public void InitPicList()
- {
- //初始化图片列表
- for (int i = 0; i < this.appWorkspace.DocumentWorkspaces.Length; i++)
- {
- this.imageList1.Images.Add("img" + i, this.appWorkspace.DocumentWorkspaces[i].BinarizationThumbnail);
- this.listView1.Items.Add("", i);
- this.listView1.Items[i].ImageIndex = i;
- String imageName = this.appWorkspace.DocumentWorkspaces[i].GetFriendlyName();
- if (listView1.Items.Find(imageName, false).Count() > 0)
- {
- if (imageName.Split('.').Count() > 1)
- {
- imageName = imageName.Split('.')[0] + "(" + listView1.Items.Find(imageName, false).Count() + ")." + imageName.Split('.')[1];
- }
- }
- this.listView1.Items[i].Text = imageName;
- this.listView1.Items[i].Name = imageName;
- if (this.appWorkspace.DocumentWorkspaces[i].Equals(this.appWorkspace.ActiveDocumentWorkspace))
- {
- this.imgIndex = i;
- }
- }
- }
- #region init
- private void InitializeLanguageText()
- {
- this.But_DeleteKD.Text = PdnResources.GetString("Menu.application.text");
- this.checkBox11.Text = PdnResources.GetString("Menu.Clasticdelete.text") + "(μm²)";
- this.checkBox10.Text = PdnResources.GetString("Menu.BinaryAction.HoleRemoval.Text") + "(μm²)";
- this.Text = PdnResources.GetString("Menu.GeneralAnalysis.MultiphaseContent.Text");
- this.label6.Text = PdnResources.GetString("Menu.Generalanalysis.Multiphasecontent.Phaseinterval.text");
- this.label5.Text = PdnResources.GetString("Menu.Generalanalysis.Multiphasecontent.Phasecolor.text");
- this.label4.Text = PdnResources.GetString("Menu.Generalanalysis.Multiphasecontent.Phasename.text");
- this.label3.Text = PdnResources.GetString("Menu.Generalanalysis.Multiphasecontent.Phaseselection.text");
- this.label2.Text = PdnResources.GetString("Menu.Numberofmultiphase.Text");
- this.groupBox3.Text = PdnResources.GetString("Menu.BinaryAction.Text");
- this.But_DeleteSX.Text = PdnResources.GetString("Menu.application.text");
- this.button5.Text = PdnResources.GetString("Menu.LabelAction.SelectAllLabel.Text");
- this.cb8.Text = PdnResources.GetString("Menu.phase.text") + "8";
- this.cb6.Text = PdnResources.GetString("Menu.phase.text") + "6";
- this.cb4.Text = PdnResources.GetString("Menu.phase.text") + "4";
- this.cb7.Text = PdnResources.GetString("Menu.phase.text") + "7";
- this.cb5.Text = PdnResources.GetString("Menu.phase.text") + "5";
- this.cb3.Text = PdnResources.GetString("Menu.phase.text") + "3";
- this.cb2.Text = PdnResources.GetString("Menu.phase.text") + "2";
- this.cb1.Text = PdnResources.GetString("Menu.phase.text") + "1";
- this.label7.Text = PdnResources.GetString("Menu.Generalanalysis.Multiphasecontent.displayphase.text");
- this.dataGridViewTextBoxColumn3.HeaderText = PdnResources.GetString("Menu.proportion.text");
- this.dataGridViewTextBoxColumn4.HeaderText = PdnResources.GetString("Menu.Phasecontent.text");
- this.button9.Text = PdnResources.GetString("Menu.Tools.OpenProject.Text");
- this.label1.Text = PdnResources.GetString("Menu.Decimal.text");
- this.button4.Text = PdnResources.GetString("Menu.Exportresults.text");
- this.button3.Text = PdnResources.GetString("Menu.Tools.CreateReport.Text");
- this.groupBox2.Text = PdnResources.GetString("Menu.Generalanalysis.Multiphasecontent.Phasesetting.text");
- this.button6.Text = PdnResources.GetString("Menu.Theoriginalcolor.text");
- this.groupBox4.Text = PdnResources.GetString("Menu.Tools.ImageIndex.Text");
- this.groupBox1.Text = PdnResources.GetString("Menu.operation.text");
- this.btn_close.Text = PdnResources.GetString("Menu.File.Close.Text");
- this.button2.Text = PdnResources.GetString("Menu.Saveresult.text");
- this.checkBox1.Text = PdnResources.GetString("Menu.Opensettingsatingreport.text");
- this.button1.Text = PdnResources.GetString("Menu.Setting.Text");
- this.groupBox_review.Text = PdnResources.GetString("Menu.Preview.text");
- this.groupBox5.Text = PdnResources.GetString("Menu.Analysisresult.text");
- this.button_remove.Text = PdnResources.GetString("Menu.Edit.Delete.Text");
- this.button_all.Text = PdnResources.GetString("Menu.Showall.text");
- this.Column5.HeaderText = PdnResources.GetString("Menu.picture.Text");
- this.dataGridViewTextBoxColumn1.HeaderText = PdnResources.GetString("Menu.Phasename.text");
- this.dataGridViewTextBoxColumn2.HeaderText = PdnResources.GetString("Menu.Phasearea.text");
- }
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.groupBox4 = new System.Windows.Forms.GroupBox();
- this.listView1 = new System.Windows.Forms.ListView();
- this.imageList1 = new System.Windows.Forms.ImageList(this.components);
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.btn_close = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.button1 = new System.Windows.Forms.Button();
- this.groupBox_review = new System.Windows.Forms.GroupBox();
- this.groupBox5 = new System.Windows.Forms.GroupBox();
- this.listBox_analysisResult = new System.Windows.Forms.CheckedListBox();
- this.button_remove = new System.Windows.Forms.Button();
- this.button_all = new System.Windows.Forms.Button();
- this.groupBox6 = new System.Windows.Forms.GroupBox();
- this.dataGridView_results = new System.Windows.Forms.DataGridView();
- this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.groupBox7 = new System.Windows.Forms.GroupBox();
- this.button9 = new System.Windows.Forms.Button();
- this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.button6 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.numericUpDown_RangeEnd = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_RangeStart = new System.Windows.Forms.NumericUpDown();
- this.panel2 = new System.Windows.Forms.Panel();
- this.cb8 = new System.Windows.Forms.CheckBox();
- this.cb6 = new System.Windows.Forms.CheckBox();
- this.cb4 = new System.Windows.Forms.CheckBox();
- this.cb7 = new System.Windows.Forms.CheckBox();
- this.cb5 = new System.Windows.Forms.CheckBox();
- this.cb3 = new System.Windows.Forms.CheckBox();
- this.cb2 = new System.Windows.Forms.CheckBox();
- this.cb1 = new System.Windows.Forms.CheckBox();
- this.label7 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.txt_phaseName = new System.Windows.Forms.TextBox();
- this.label4 = new System.Windows.Forms.Label();
- this.cb_SelectPhase = new System.Windows.Forms.ComboBox();
- this.label3 = new System.Windows.Forms.Label();
- this.rb8 = new System.Windows.Forms.RadioButton();
- this.rb7 = new System.Windows.Forms.RadioButton();
- this.rb6 = new System.Windows.Forms.RadioButton();
- this.rb5 = new System.Windows.Forms.RadioButton();
- this.rb4 = new System.Windows.Forms.RadioButton();
- this.rb3 = new System.Windows.Forms.RadioButton();
- this.rb2 = new System.Windows.Forms.RadioButton();
- this.rb1 = new System.Windows.Forms.RadioButton();
- this.label2 = new System.Windows.Forms.Label();
- this.panel1 = new System.Windows.Forms.Panel();
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_SXEnd = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_SXStart = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_KDEnd = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_KDStart = new System.Windows.Forms.NumericUpDown();
- this.But_DeleteSX = new System.Windows.Forms.Button();
- this.But_DeleteKD = new System.Windows.Forms.Button();
- this.checkBox11 = new System.Windows.Forms.CheckBox();
- this.checkBox10 = new System.Windows.Forms.CheckBox();
- this.groupBox4.SuspendLayout();
- this.groupBox1.SuspendLayout();
- this.groupBox5.SuspendLayout();
- this.groupBox6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView_results)).BeginInit();
- this.groupBox7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
- this.groupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_RangeEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_RangeStart)).BeginInit();
- this.groupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SXEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SXStart)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_KDEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_KDStart)).BeginInit();
- this.SuspendLayout();
- //
- // groupBox4
- //
- this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.groupBox4.Controls.Add(this.listView1);
- this.groupBox4.Location = new System.Drawing.Point(13, 72);
- this.groupBox4.Margin = new System.Windows.Forms.Padding(4);
- this.groupBox4.Name = "groupBox4";
- this.groupBox4.Padding = new System.Windows.Forms.Padding(4);
- this.groupBox4.Size = new System.Drawing.Size(158, 483);
- this.groupBox4.TabIndex = 9;
- this.groupBox4.TabStop = false;
- this.groupBox4.Text = "图像索引";
- //
- // listView1
- //
- this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.listView1.HideSelection = false;
- this.listView1.LargeImageList = this.imageList1;
- this.listView1.Location = new System.Drawing.Point(8, 26);
- this.listView1.Margin = new System.Windows.Forms.Padding(4);
- this.listView1.MultiSelect = false;
- this.listView1.Name = "listView1";
- this.listView1.Size = new System.Drawing.Size(140, 449);
- this.listView1.TabIndex = 0;
- this.listView1.UseCompatibleStateImageBehavior = false;
- this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
- //
- // imageList1
- //
- this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
- this.imageList1.ImageSize = new System.Drawing.Size(64, 64);
- this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
- //
- // groupBox1
- //
- this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.groupBox1.Controls.Add(this.btn_close);
- this.groupBox1.Controls.Add(this.button2);
- this.groupBox1.Controls.Add(this.checkBox1);
- this.groupBox1.Controls.Add(this.button1);
- this.groupBox1.Location = new System.Drawing.Point(20, 12);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(1145, 53);
- this.groupBox1.TabIndex = 10;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "操作";
- //
- // btn_close
- //
- this.btn_close.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.btn_close.Location = new System.Drawing.Point(972, 21);
- this.btn_close.Name = "btn_close";
- this.btn_close.Size = new System.Drawing.Size(75, 23);
- this.btn_close.TabIndex = 3;
- this.btn_close.Text = "关闭";
- this.btn_close.UseVisualStyleBackColor = true;
- this.btn_close.Click += new System.EventHandler(this.btn_close_Click);
- //
- // button2
- //
- this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.button2.Location = new System.Drawing.Point(1053, 21);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(75, 23);
- this.button2.TabIndex = 2;
- this.button2.Text = "保存结果";
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // checkBox1
- //
- this.checkBox1.AutoSize = true;
- this.checkBox1.Location = new System.Drawing.Point(98, 24);
- this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(132, 16);
- this.checkBox1.TabIndex = 1;
- this.checkBox1.Text = "生成报告时打开设置";
- this.checkBox1.UseVisualStyleBackColor = true;
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(6, 24);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(75, 23);
- this.button1.TabIndex = 0;
- this.button1.Text = "设置";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // groupBox_review
- //
- this.groupBox_review.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.groupBox_review.Location = new System.Drawing.Point(590, 72);
- this.groupBox_review.Name = "groupBox_review";
- this.groupBox_review.Size = new System.Drawing.Size(575, 483);
- this.groupBox_review.TabIndex = 12;
- this.groupBox_review.TabStop = false;
- this.groupBox_review.Text = "预览";
- //
- // groupBox5
- //
- this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.groupBox5.Controls.Add(this.listBox_analysisResult);
- this.groupBox5.Controls.Add(this.button_remove);
- this.groupBox5.Controls.Add(this.button_all);
- this.groupBox5.Location = new System.Drawing.Point(12, 562);
- this.groupBox5.Name = "groupBox5";
- this.groupBox5.Size = new System.Drawing.Size(224, 165);
- this.groupBox5.TabIndex = 13;
- this.groupBox5.TabStop = false;
- this.groupBox5.Text = "分析结果";
- //
- // listBox_analysisResult
- //
- this.listBox_analysisResult.CheckOnClick = true;
- this.listBox_analysisResult.FormattingEnabled = true;
- this.listBox_analysisResult.HorizontalScrollbar = true;
- this.listBox_analysisResult.Location = new System.Drawing.Point(11, 59);
- this.listBox_analysisResult.Name = "listBox_analysisResult";
- this.listBox_analysisResult.Size = new System.Drawing.Size(202, 100);
- this.listBox_analysisResult.TabIndex = 11;
- this.listBox_analysisResult.SelectedIndexChanged += new System.EventHandler(this.listBox_analysisResult_SelectedIndexChanged);
- //
- // button_remove
- //
- this.button_remove.Location = new System.Drawing.Point(130, 24);
- this.button_remove.Name = "button_remove";
- this.button_remove.Size = new System.Drawing.Size(75, 23);
- this.button_remove.TabIndex = 8;
- this.button_remove.Text = "删除";
- this.button_remove.UseVisualStyleBackColor = true;
- this.button_remove.Click += new System.EventHandler(this.button_remove_Click);
- //
- // button_all
- //
- this.button_all.Location = new System.Drawing.Point(14, 24);
- this.button_all.Name = "button_all";
- this.button_all.Size = new System.Drawing.Size(75, 23);
- this.button_all.TabIndex = 1;
- this.button_all.Text = "全部显示";
- this.button_all.UseVisualStyleBackColor = true;
- this.button_all.Click += new System.EventHandler(this.button_all_Click);
- //
- // groupBox6
- //
- this.groupBox6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.groupBox6.Controls.Add(this.dataGridView_results);
- this.groupBox6.Location = new System.Drawing.Point(249, 562);
- this.groupBox6.Name = "groupBox6";
- this.groupBox6.Size = new System.Drawing.Size(769, 165);
- this.groupBox6.TabIndex = 14;
- this.groupBox6.TabStop = false;
- //
- // dataGridView_results
- //
- this.dataGridView_results.AllowUserToAddRows = false;
- this.dataGridView_results.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dataGridView_results.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.dataGridView_results.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridView_results.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Column5,
- this.dataGridViewTextBoxColumn1,
- this.dataGridViewTextBoxColumn2,
- this.dataGridViewTextBoxColumn3,
- this.dataGridViewTextBoxColumn4});
- this.dataGridView_results.Location = new System.Drawing.Point(16, 20);
- this.dataGridView_results.Name = "dataGridView_results";
- this.dataGridView_results.RowHeadersVisible = false;
- this.dataGridView_results.RowHeadersWidth = 51;
- this.dataGridView_results.RowTemplate.Height = 27;
- this.dataGridView_results.Size = new System.Drawing.Size(733, 139);
- this.dataGridView_results.TabIndex = 1;
- //
- // Column5
- //
- this.Column5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.Column5.HeaderText = "Column5";
- this.Column5.MinimumWidth = 6;
- this.Column5.Name = "Column5";
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.dataGridViewTextBoxColumn1.HeaderText = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.MinimumWidth = 6;
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.dataGridViewTextBoxColumn2.HeaderText = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.MinimumWidth = 6;
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.dataGridViewTextBoxColumn3.HeaderText = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.MinimumWidth = 6;
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.dataGridViewTextBoxColumn4.HeaderText = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.MinimumWidth = 6;
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- //
- // groupBox7
- //
- this.groupBox7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.groupBox7.Controls.Add(this.button9);
- this.groupBox7.Controls.Add(this.numericUpDown1);
- this.groupBox7.Controls.Add(this.label1);
- this.groupBox7.Controls.Add(this.button4);
- this.groupBox7.Controls.Add(this.button3);
- this.groupBox7.Location = new System.Drawing.Point(1031, 562);
- this.groupBox7.Name = "groupBox7";
- this.groupBox7.Size = new System.Drawing.Size(133, 165);
- this.groupBox7.TabIndex = 15;
- this.groupBox7.TabStop = false;
- //
- // button9
- //
- this.button9.Location = new System.Drawing.Point(29, 89);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(75, 23);
- this.button9.TabIndex = 7;
- this.button9.Text = "项目工程";
- this.button9.UseVisualStyleBackColor = true;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // numericUpDown1
- //
- this.numericUpDown1.Location = new System.Drawing.Point(62, 127);
- this.numericUpDown1.Maximum = new decimal(new int[] {
- 10,
- 0,
- 0,
- 0});
- this.numericUpDown1.Name = "numericUpDown1";
- this.numericUpDown1.Size = new System.Drawing.Size(42, 21);
- this.numericUpDown1.TabIndex = 4;
- this.numericUpDown1.Value = new decimal(new int[] {
- 2,
- 0,
- 0,
- 0});
- this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(27, 129);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(41, 12);
- this.label1.TabIndex = 3;
- this.label1.Text = "小数:";
- //
- // button4
- //
- this.button4.Location = new System.Drawing.Point(29, 53);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(75, 23);
- this.button4.TabIndex = 1;
- this.button4.Text = "导出结果";
- this.button4.UseVisualStyleBackColor = true;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.Location = new System.Drawing.Point(29, 18);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(75, 23);
- this.button3.TabIndex = 0;
- this.button3.Text = "生成报告";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // groupBox2
- //
- this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.groupBox2.Controls.Add(this.button6);
- this.groupBox2.Controls.Add(this.button5);
- this.groupBox2.Controls.Add(this.numericUpDown_RangeEnd);
- this.groupBox2.Controls.Add(this.numericUpDown_RangeStart);
- this.groupBox2.Controls.Add(this.panel2);
- this.groupBox2.Controls.Add(this.cb8);
- this.groupBox2.Controls.Add(this.cb6);
- this.groupBox2.Controls.Add(this.cb4);
- this.groupBox2.Controls.Add(this.cb7);
- this.groupBox2.Controls.Add(this.cb5);
- this.groupBox2.Controls.Add(this.cb3);
- this.groupBox2.Controls.Add(this.cb2);
- this.groupBox2.Controls.Add(this.cb1);
- this.groupBox2.Controls.Add(this.label7);
- this.groupBox2.Controls.Add(this.label6);
- this.groupBox2.Controls.Add(this.label5);
- this.groupBox2.Controls.Add(this.txt_phaseName);
- this.groupBox2.Controls.Add(this.label4);
- this.groupBox2.Controls.Add(this.cb_SelectPhase);
- this.groupBox2.Controls.Add(this.label3);
- this.groupBox2.Controls.Add(this.rb8);
- this.groupBox2.Controls.Add(this.rb7);
- this.groupBox2.Controls.Add(this.rb6);
- this.groupBox2.Controls.Add(this.rb5);
- this.groupBox2.Controls.Add(this.rb4);
- this.groupBox2.Controls.Add(this.rb3);
- this.groupBox2.Controls.Add(this.rb2);
- this.groupBox2.Controls.Add(this.rb1);
- this.groupBox2.Controls.Add(this.label2);
- this.groupBox2.Controls.Add(this.panel1);
- this.groupBox2.Location = new System.Drawing.Point(178, 72);
- this.groupBox2.Margin = new System.Windows.Forms.Padding(3, 3, 3, 112);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(406, 366);
- this.groupBox2.TabIndex = 18;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "相设置";
- //
- // button6
- //
- this.button6.Location = new System.Drawing.Point(279, 311);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(75, 23);
- this.button6.TabIndex = 32;
- this.button6.Text = "原图";
- this.button6.UseVisualStyleBackColor = true;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button5
- //
- this.button5.Location = new System.Drawing.Point(188, 311);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(75, 23);
- this.button5.TabIndex = 31;
- this.button5.Text = "全选";
- this.button5.UseVisualStyleBackColor = true;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // numericUpDown_RangeEnd
- //
- this.numericUpDown_RangeEnd.Location = new System.Drawing.Point(270, 187);
- this.numericUpDown_RangeEnd.Maximum = new decimal(new int[] {
- 256,
- 0,
- 0,
- 0});
- this.numericUpDown_RangeEnd.Name = "numericUpDown_RangeEnd";
- this.numericUpDown_RangeEnd.Size = new System.Drawing.Size(52, 21);
- this.numericUpDown_RangeEnd.TabIndex = 30;
- this.numericUpDown_RangeEnd.ValueChanged += new System.EventHandler(this.numericUpDown_RangeEnd_ValueChanged);
- this.numericUpDown_RangeEnd.KeyUp += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_RangeEnd_KeyUp);
- //
- // numericUpDown_RangeStart
- //
- this.numericUpDown_RangeStart.Location = new System.Drawing.Point(187, 187);
- this.numericUpDown_RangeStart.Maximum = new decimal(new int[] {
- 256,
- 0,
- 0,
- 0});
- this.numericUpDown_RangeStart.Name = "numericUpDown_RangeStart";
- this.numericUpDown_RangeStart.Size = new System.Drawing.Size(51, 21);
- this.numericUpDown_RangeStart.TabIndex = 29;
- this.numericUpDown_RangeStart.ValueChanged += new System.EventHandler(this.numericUpDown_RangeStart_ValueChanged);
- this.numericUpDown_RangeStart.KeyUp += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_RangeStart_KeyUp);
- //
- // panel2
- //
- this.panel2.BackColor = System.Drawing.Color.White;
- this.panel2.Location = new System.Drawing.Point(187, 150);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(135, 22);
- this.panel2.TabIndex = 28;
- this.panel2.Click += new System.EventHandler(this.panel2_Click);
- //
- // cb8
- //
- this.cb8.AutoSize = true;
- this.cb8.Location = new System.Drawing.Point(247, 288);
- this.cb8.Name = "cb8";
- this.cb8.Size = new System.Drawing.Size(42, 16);
- this.cb8.TabIndex = 27;
- this.cb8.Text = "相8";
- this.cb8.UseVisualStyleBackColor = true;
- this.cb8.CheckedChanged += new System.EventHandler(this.cb8_CheckedChanged);
- //
- // cb6
- //
- this.cb6.AutoSize = true;
- this.cb6.Location = new System.Drawing.Point(247, 266);
- this.cb6.Name = "cb6";
- this.cb6.Size = new System.Drawing.Size(42, 16);
- this.cb6.TabIndex = 26;
- this.cb6.Text = "相6";
- this.cb6.UseVisualStyleBackColor = true;
- this.cb6.CheckedChanged += new System.EventHandler(this.cb6_CheckedChanged);
- //
- // cb4
- //
- this.cb4.AutoSize = true;
- this.cb4.Location = new System.Drawing.Point(247, 244);
- this.cb4.Name = "cb4";
- this.cb4.Size = new System.Drawing.Size(42, 16);
- this.cb4.TabIndex = 25;
- this.cb4.Text = "相4";
- this.cb4.UseVisualStyleBackColor = true;
- this.cb4.CheckedChanged += new System.EventHandler(this.cb4_CheckedChanged);
- //
- // cb7
- //
- this.cb7.AutoSize = true;
- this.cb7.Location = new System.Drawing.Point(188, 288);
- this.cb7.Name = "cb7";
- this.cb7.Size = new System.Drawing.Size(42, 16);
- this.cb7.TabIndex = 24;
- this.cb7.Text = "相7";
- this.cb7.UseVisualStyleBackColor = true;
- this.cb7.CheckedChanged += new System.EventHandler(this.cb7_CheckedChanged);
- //
- // cb5
- //
- this.cb5.AutoSize = true;
- this.cb5.Location = new System.Drawing.Point(188, 266);
- this.cb5.Name = "cb5";
- this.cb5.Size = new System.Drawing.Size(42, 16);
- this.cb5.TabIndex = 23;
- this.cb5.Text = "相5";
- this.cb5.UseVisualStyleBackColor = true;
- this.cb5.CheckedChanged += new System.EventHandler(this.cb5_CheckedChanged);
- //
- // cb3
- //
- this.cb3.AutoSize = true;
- this.cb3.Location = new System.Drawing.Point(188, 244);
- this.cb3.Name = "cb3";
- this.cb3.Size = new System.Drawing.Size(42, 16);
- this.cb3.TabIndex = 22;
- this.cb3.Text = "相3";
- this.cb3.UseVisualStyleBackColor = true;
- this.cb3.CheckedChanged += new System.EventHandler(this.cb3_CheckedChanged);
- //
- // cb2
- //
- this.cb2.AutoSize = true;
- this.cb2.Location = new System.Drawing.Point(247, 222);
- this.cb2.Name = "cb2";
- this.cb2.Size = new System.Drawing.Size(42, 16);
- this.cb2.TabIndex = 21;
- this.cb2.Text = "相2";
- this.cb2.UseVisualStyleBackColor = true;
- this.cb2.CheckedChanged += new System.EventHandler(this.cb2_CheckedChanged);
- //
- // cb1
- //
- this.cb1.AutoSize = true;
- this.cb1.Location = new System.Drawing.Point(188, 222);
- this.cb1.Name = "cb1";
- this.cb1.Size = new System.Drawing.Size(42, 16);
- this.cb1.TabIndex = 20;
- this.cb1.Text = "相1";
- this.cb1.UseVisualStyleBackColor = true;
- this.cb1.CheckedChanged += new System.EventHandler(this.cb1_CheckedChanged);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(105, 223);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(53, 12);
- this.label7.TabIndex = 19;
- this.label7.Text = "显示物相";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(105, 189);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(53, 12);
- this.label6.TabIndex = 16;
- this.label6.Text = "物相区间";
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(105, 150);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(53, 12);
- this.label5.TabIndex = 14;
- this.label5.Text = "物相颜色";
- //
- // txt_phaseName
- //
- this.txt_phaseName.Location = new System.Drawing.Point(188, 117);
- this.txt_phaseName.Name = "txt_phaseName";
- this.txt_phaseName.ReadOnly = true;
- this.txt_phaseName.Size = new System.Drawing.Size(134, 21);
- this.txt_phaseName.TabIndex = 13;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(105, 117);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(53, 12);
- this.label4.TabIndex = 12;
- this.label4.Text = "物相名称";
- //
- // cb_SelectPhase
- //
- this.cb_SelectPhase.FormattingEnabled = true;
- this.cb_SelectPhase.Location = new System.Drawing.Point(188, 85);
- this.cb_SelectPhase.Name = "cb_SelectPhase";
- this.cb_SelectPhase.Size = new System.Drawing.Size(134, 20);
- this.cb_SelectPhase.TabIndex = 11;
- this.cb_SelectPhase.SelectedIndexChanged += new System.EventHandler(this.cb_SelectPhase_SelectedIndexChanged);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(105, 88);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(53, 12);
- this.label3.TabIndex = 10;
- this.label3.Text = "物相选择";
- //
- // rb8
- //
- this.rb8.AutoSize = true;
- this.rb8.Location = new System.Drawing.Point(293, 57);
- this.rb8.Name = "rb8";
- this.rb8.Size = new System.Drawing.Size(29, 16);
- this.rb8.TabIndex = 9;
- this.rb8.TabStop = true;
- this.rb8.Text = "8";
- this.rb8.UseVisualStyleBackColor = true;
- this.rb8.CheckedChanged += new System.EventHandler(this.rb8_CheckedChanged);
- //
- // rb7
- //
- this.rb7.AutoSize = true;
- this.rb7.Location = new System.Drawing.Point(258, 57);
- this.rb7.Name = "rb7";
- this.rb7.Size = new System.Drawing.Size(29, 16);
- this.rb7.TabIndex = 8;
- this.rb7.TabStop = true;
- this.rb7.Text = "7";
- this.rb7.UseVisualStyleBackColor = true;
- this.rb7.CheckedChanged += new System.EventHandler(this.rb7_CheckedChanged);
- //
- // rb6
- //
- this.rb6.AutoSize = true;
- this.rb6.Location = new System.Drawing.Point(223, 57);
- this.rb6.Name = "rb6";
- this.rb6.Size = new System.Drawing.Size(29, 16);
- this.rb6.TabIndex = 7;
- this.rb6.TabStop = true;
- this.rb6.Text = "6";
- this.rb6.UseVisualStyleBackColor = true;
- this.rb6.CheckedChanged += new System.EventHandler(this.rb6_CheckedChanged);
- //
- // rb5
- //
- this.rb5.AutoSize = true;
- this.rb5.Location = new System.Drawing.Point(188, 57);
- this.rb5.Name = "rb5";
- this.rb5.Size = new System.Drawing.Size(29, 16);
- this.rb5.TabIndex = 6;
- this.rb5.TabStop = true;
- this.rb5.Text = "5";
- this.rb5.UseVisualStyleBackColor = true;
- this.rb5.CheckedChanged += new System.EventHandler(this.rb5_CheckedChanged);
- //
- // rb4
- //
- this.rb4.AutoSize = true;
- this.rb4.Location = new System.Drawing.Point(293, 26);
- this.rb4.Name = "rb4";
- this.rb4.Size = new System.Drawing.Size(29, 16);
- this.rb4.TabIndex = 5;
- this.rb4.TabStop = true;
- this.rb4.Text = "4";
- this.rb4.UseVisualStyleBackColor = true;
- this.rb4.CheckedChanged += new System.EventHandler(this.rb4_CheckedChanged);
- //
- // rb3
- //
- this.rb3.AutoSize = true;
- this.rb3.Location = new System.Drawing.Point(258, 26);
- this.rb3.Name = "rb3";
- this.rb3.Size = new System.Drawing.Size(29, 16);
- this.rb3.TabIndex = 4;
- this.rb3.TabStop = true;
- this.rb3.Text = "3";
- this.rb3.UseVisualStyleBackColor = true;
- this.rb3.CheckedChanged += new System.EventHandler(this.rb3_CheckedChanged);
- //
- // rb2
- //
- this.rb2.AutoSize = true;
- this.rb2.Location = new System.Drawing.Point(223, 26);
- this.rb2.Name = "rb2";
- this.rb2.Size = new System.Drawing.Size(29, 16);
- this.rb2.TabIndex = 3;
- this.rb2.TabStop = true;
- this.rb2.Text = "2";
- this.rb2.UseVisualStyleBackColor = true;
- this.rb2.CheckedChanged += new System.EventHandler(this.rb2_CheckedChanged);
- //
- // rb1
- //
- this.rb1.AutoSize = true;
- this.rb1.Location = new System.Drawing.Point(188, 26);
- this.rb1.Name = "rb1";
- this.rb1.Size = new System.Drawing.Size(29, 16);
- this.rb1.TabIndex = 2;
- this.rb1.TabStop = true;
- this.rb1.Text = "1";
- this.rb1.UseVisualStyleBackColor = true;
- this.rb1.CheckedChanged += new System.EventHandler(this.rb1_CheckedChanged);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(107, 26);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(53, 12);
- this.label2.TabIndex = 1;
- this.label2.Text = "多相数量";
- //
- // panel1
- //
- this.panel1.Location = new System.Drawing.Point(6, 26);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(93, 256);
- this.panel1.TabIndex = 0;
- //
- // groupBox3
- //
- this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.groupBox3.Controls.Add(this.numericUpDown_SXEnd);
- this.groupBox3.Controls.Add(this.numericUpDown_SXStart);
- this.groupBox3.Controls.Add(this.numericUpDown_KDEnd);
- this.groupBox3.Controls.Add(this.numericUpDown_KDStart);
- this.groupBox3.Controls.Add(this.But_DeleteSX);
- this.groupBox3.Controls.Add(this.But_DeleteKD);
- this.groupBox3.Controls.Add(this.checkBox11);
- this.groupBox3.Controls.Add(this.checkBox10);
- this.groupBox3.Location = new System.Drawing.Point(178, 444);
- this.groupBox3.Name = "groupBox3";
- this.groupBox3.Size = new System.Drawing.Size(406, 112);
- this.groupBox3.TabIndex = 17;
- this.groupBox3.TabStop = false;
- this.groupBox3.Text = "二值操作";
- //
- // numericUpDown_SXEnd
- //
- this.numericUpDown_SXEnd.Location = new System.Drawing.Point(206, 64);
- this.numericUpDown_SXEnd.Maximum = new decimal(new int[] {
- 100000000,
- 0,
- 0,
- 0});
- this.numericUpDown_SXEnd.Name = "numericUpDown_SXEnd";
- this.numericUpDown_SXEnd.Size = new System.Drawing.Size(51, 21);
- this.numericUpDown_SXEnd.TabIndex = 33;
- //
- // numericUpDown_SXStart
- //
- this.numericUpDown_SXStart.Location = new System.Drawing.Point(135, 64);
- this.numericUpDown_SXStart.Maximum = new decimal(new int[] {
- 10000,
- 0,
- 0,
- 0});
- this.numericUpDown_SXStart.Name = "numericUpDown_SXStart";
- this.numericUpDown_SXStart.Size = new System.Drawing.Size(51, 21);
- this.numericUpDown_SXStart.TabIndex = 32;
- //
- // numericUpDown_KDEnd
- //
- this.numericUpDown_KDEnd.Location = new System.Drawing.Point(206, 31);
- this.numericUpDown_KDEnd.Maximum = new decimal(new int[] {
- 100000000,
- 0,
- 0,
- 0});
- this.numericUpDown_KDEnd.Name = "numericUpDown_KDEnd";
- this.numericUpDown_KDEnd.Size = new System.Drawing.Size(51, 21);
- this.numericUpDown_KDEnd.TabIndex = 31;
- //
- // numericUpDown_KDStart
- //
- this.numericUpDown_KDStart.Location = new System.Drawing.Point(135, 33);
- this.numericUpDown_KDStart.Maximum = new decimal(new int[] {
- 10000,
- 0,
- 0,
- 0});
- this.numericUpDown_KDStart.Name = "numericUpDown_KDStart";
- this.numericUpDown_KDStart.Size = new System.Drawing.Size(51, 21);
- this.numericUpDown_KDStart.TabIndex = 30;
- //
- // But_DeleteSX
- //
- this.But_DeleteSX.Location = new System.Drawing.Point(273, 65);
- this.But_DeleteSX.Name = "But_DeleteSX";
- this.But_DeleteSX.Size = new System.Drawing.Size(75, 23);
- this.But_DeleteSX.TabIndex = 7;
- this.But_DeleteSX.Text = "应用";
- this.But_DeleteSX.UseVisualStyleBackColor = true;
- this.But_DeleteSX.Click += new System.EventHandler(this.But_DeleteSX_Click);
- //
- // But_DeleteKD
- //
- this.But_DeleteKD.Location = new System.Drawing.Point(273, 31);
- this.But_DeleteKD.Name = "But_DeleteKD";
- this.But_DeleteKD.Size = new System.Drawing.Size(75, 23);
- this.But_DeleteKD.TabIndex = 6;
- this.But_DeleteKD.Text = "应用";
- this.But_DeleteKD.UseVisualStyleBackColor = true;
- this.But_DeleteKD.Click += new System.EventHandler(this.But_DeleteKD_Click);
- //
- // checkBox11
- //
- this.checkBox11.AutoSize = true;
- this.checkBox11.Location = new System.Drawing.Point(21, 69);
- this.checkBox11.Name = "checkBox11";
- this.checkBox11.Size = new System.Drawing.Size(108, 16);
- this.checkBox11.TabIndex = 1;
- this.checkBox11.Text = "碎屑删除(μm²)";
- this.checkBox11.UseVisualStyleBackColor = true;
- this.checkBox11.CheckedChanged += new System.EventHandler(this.checkBox11_CheckedChanged);
- //
- // checkBox10
- //
- this.checkBox10.AutoSize = true;
- this.checkBox10.Location = new System.Drawing.Point(21, 36);
- this.checkBox10.Name = "checkBox10";
- this.checkBox10.Size = new System.Drawing.Size(108, 16);
- this.checkBox10.TabIndex = 0;
- this.checkBox10.Text = "孔洞删除(μm²)";
- this.checkBox10.UseVisualStyleBackColor = true;
- this.checkBox10.CheckedChanged += new System.EventHandler(this.checkBox10_CheckedChanged);
- //
- // PolyphaseMutiAreaContent
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1177, 744);
- this.Controls.Add(this.groupBox3);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.groupBox7);
- this.Controls.Add(this.groupBox6);
- this.Controls.Add(this.groupBox5);
- this.Controls.Add(this.groupBox_review);
- this.Controls.Add(this.groupBox1);
- this.Controls.Add(this.groupBox4);
- this.Name = "PolyphaseMutiAreaContent";
- this.Text = "多相含量";
- this.Controls.SetChildIndex(this.groupBox4, 0);
- this.Controls.SetChildIndex(this.groupBox1, 0);
- this.Controls.SetChildIndex(this.groupBox_review, 0);
- this.Controls.SetChildIndex(this.groupBox5, 0);
- this.Controls.SetChildIndex(this.groupBox6, 0);
- this.Controls.SetChildIndex(this.groupBox7, 0);
- this.Controls.SetChildIndex(this.groupBox2, 0);
- this.Controls.SetChildIndex(this.groupBox3, 0);
- this.groupBox4.ResumeLayout(false);
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.groupBox5.ResumeLayout(false);
- this.groupBox6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView_results)).EndInit();
- this.groupBox7.ResumeLayout(false);
- this.groupBox7.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_RangeEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_RangeStart)).EndInit();
- this.groupBox3.ResumeLayout(false);
- this.groupBox3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SXEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SXStart)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_KDEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_KDStart)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private void Init_CheckBoxes()
- {
- foreach (Control ctrl in this.groupBox2.Controls) //遍历窗体中的所有控件,Control是所有控件的基类
- {
- if (ctrl.GetType().Name == "CheckBox") //判断是否为CheckBox
- {
- if (ctrl.Name.IndexOf("cb")>=0)
- {
- CheckBox cBox = (CheckBox)ctrl; //创建CheckBox对象
- cBox.Checked = false;
- cBox.Enabled = false;
- }
- }
- }
- }
- private void ChangeNumber(int num)
- {
- this.documentWorkspace.phaseModels.Clear();
- this.cb_SelectPhase.Items.Clear();
- this.phaseModels.Clear();
- this.mPhaseModels.Clear();
- this.viewModels.Clear();
- this.rangeColors.Clear();
- cb_SelectPhase.Text = "";
- selectIndex = 0;
- this.xiang_num = num;
- Init_CheckBoxes();
- int step = 255 / num;
- for (int i = 0; i < num; i++)
- {
- PhaseModel model = this.applyButtonImpl(DefaultColor[i], i * step, (i + 1) * step);
- model.name = "相" + (i + 1);
- PhaseModel viewModel = new PhaseModel();
- viewModel.choise = model.choise;
- viewModel.color = model.color;
- viewModel.name = model.name;
- viewModel.position = model.position;
- viewModel.mat = new OpenCvSharp.Mat();
- model.mat.CopyTo(viewModel.mat);
- MutiPolyphaseModel mPModel = new MutiPolyphaseModel();
- mPModel.Model = viewModel;
- mPModel.ColorStart = i * step;
- mPModel.ColorEnd = (i + 1) * step;
- mPhaseModels.Add(mPModel);
- viewModels.Add(viewModel);
- phaseModels.Add(model);
- rangeColors.Add(new RangeColor(mPModel.ColorStart, mPModel.ColorEnd, DefaultColor[i]));
- cb_SelectPhase.Items.Add(mPModel.Model.name);
- foreach (Control ctrl in this.groupBox2.Controls) //遍历窗体中的所有控件,Control是所有控件的基类
- {
- if (ctrl.GetType().Name == "CheckBox") //判断是否为CheckBox
- {
-
- if (ctrl.Name.Equals("cb"+(i+1)))
- {
- CheckBox cBox = (CheckBox)ctrl; //创建CheckBox对象
- cBox.Checked = true;
- cBox.Enabled = true;
- }
- }
- }
- }
- this.cRControl.RangeColors = rangeColors;
- this.cRControl.Refresh();
- this.documentWorkspace.phaseModels = viewModels;
- this.documentWorkspace.Refresh();
- ShowthisParams(mPhaseModels[0]);
- }
- private void ShowthisParams(MutiPolyphaseModel pModel)
- {
- cb_SelectPhase.SelectedText = pModel.Model.name;
- txt_phaseName.Text = pModel.Model.name;
- panel2.BackColor = Color.FromArgb(pModel.Model.color);
- numericUpDown_RangeStart.Value = pModel.ColorStart;
- numericUpDown_RangeEnd.Value = pModel.ColorEnd;
- }
- /// <summary>
- /// 参数改变时,重新处理图像
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private PhaseModel applyButtonImpl(Color pColor,int start,int end)
- {
- PhaseModel model = new PhaseModel();
- if (this.listView1.FocusedItem != null)
- {
- //判断是否存在视场,如果存在视场,则把视场提取出来,进行处理
- foreach (Args args in action.Lists)
- {
- if (args.Key == "phaseColor")
- {
- args.Value = pColor.ToArgb();
- break;
- }
- if (args.Key == "scope1")
- {
- List<double> twoL = new List<double>();
- twoL.Add(start);
- twoL.Add(end);
- args.Value = twoL;
- }
- }
- if (this.documentWorkspace.GraphicsList.IsExsitView())
- {
- model.mat = action.PerformProcess(
- OpenCvSharp.Extensions.BitmapConverter.ToMat(this.documentWorkspace.GetFullSizeWithRegion()),
- OpenCvSharp.Extensions.BitmapConverter.ToMat(this.bitmap));
- model.color = pColor.ToArgb();
- model.choise = true;
- }
- else
- {
- model.mat = action.PerformProcess(OpenCvSharp.Extensions.BitmapConverter.ToMat(this.bitmap));
- model.color = pColor.ToArgb();
- model.choise = true;
- }
- }
- return model;
- }
- #region select phase Numer
- private void rb1_CheckedChanged(object sender, EventArgs e)
- {
- if (rb1.Checked)
- {
- ChangeNumber(1);
- }
-
- }
- private void rb2_CheckedChanged(object sender, EventArgs e)
- {
- if (rb2.Checked)
- {
- ChangeNumber(2);
- }
- }
- private void rb3_CheckedChanged(object sender, EventArgs e)
- {
- if (rb3.Checked)
- {
- ChangeNumber(3);
- }
- }
- private void rb4_CheckedChanged(object sender, EventArgs e)
- {
- if (rb4.Checked)
- {
- ChangeNumber(4);
- }
- }
- private void rb5_CheckedChanged(object sender, EventArgs e)
- {
- if (rb5.Checked)
- {
- ChangeNumber(5);
- }
- }
- private void rb6_CheckedChanged(object sender, EventArgs e)
- {
- if (rb6.Checked)
- {
- ChangeNumber(6);
- }
- }
- private void rb7_CheckedChanged(object sender, EventArgs e)
- {
- if (rb7.Checked)
- {
- ChangeNumber(7);
- }
- }
- private void rb8_CheckedChanged(object sender, EventArgs e)
- {
- if (rb8.Checked)
- {
- ChangeNumber(8);
- }
- }
- #endregion
- private void listView1_SelectedIndexChanged(object sender, EventArgs e)
- {
- if (this.listView1.FocusedItem != null && this.listView1.FocusedItem.Selected)
- {
- if (!string.IsNullOrEmpty(this.selectedImg))
- {
- #region [保存图片参数]
- PolyphaseMutiAreaContentModel model = new PolyphaseMutiAreaContentModel();
- model.hasUsed = true;
- model.parameter1 = xiang_num;
- model.parameter12 = checkBox1.Checked;
- model.parameter13 = commonControlButtons.trackBar.Value;
- model.parameter2 = cb_SelectPhase.SelectedItem == null ? "" : cb_SelectPhase.SelectedItem.ToString();
- if (model.parameter3 == null)
- {
- model.parameter3 = new List<PolyphaseData>();
- }
- var list = new List<PolyphaseData>();
- foreach (var s in mPhaseModels)
- {
- PolyphaseData data = new PolyphaseData();
- data.color = s.Model.color;
- data.downNum = s.ColorStart;
- data.upNum = s.ColorEnd;
- list.Add(data);
- }
- model.parameter3 = list;
- #region [保存物相选择]
- string all = String.Empty;
- if (cb1.Checked)
- {
- all += "1,";
- }
- if (cb2.Checked)
- {
- all += "2,";
- }
- if (cb3.Checked)
- {
- all += "3,";
- }
- if (cb4.Checked)
- {
- all += "4,";
- }
- if (cb5.Checked)
- {
- all += "5,";
- }
- if (cb6.Checked)
- {
- all += "6,";
- }
- if (cb7.Checked)
- {
- all += "7,";
- }
- if (cb8.Checked)
- {
- all += "8,";
- }
- model.parameter4 = all;
- #endregion
- model.parameter5 = checkBox10.Checked;
- model.parameter6 = checkBox11.Checked;
- model.parameter7 = (int)numericUpDown_KDStart.Value;
- model.parameter8 = (int)numericUpDown_KDEnd.Value;
- model.parameter9 = (int)numericUpDown_SXStart.Value;
- model.parameter10 = (int)numericUpDown_SXEnd.Value;
- model.parameter11 = (int)numericUpDown1.Value;
- if (everyImgData.ContainsKey(this.selectedImg))
- {
- everyImgData[this.selectedImg] = model;
- }
- else
- {
- everyImgData.Add(this.selectedImg, model);
- }
- #endregion
- }
- this.bitmap = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].CompositionSurface.CreateAliasedBitmap();
- Document document = Document.FromImage(bitmap);
- this.documentWorkspace.Document = document;
- this.documentWorkspace.Visible = true;
- this.documentWorkspace.GraphicsList = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GraphicsList;
- #region [设置参数]
- this.selectedImg = this.listView1.FocusedItem.Name;
- if (everyImgData.ContainsKey(this.selectedImg)) {
- var imgData = everyImgData[this.selectedImg];
- #region [多相数量]
- switch (imgData.parameter1)
- {
- case 0:
- rb1.Checked = true;
- break;
- case 1:
- rb1.Checked = true;
- break;
- case 2:
- rb1.Checked = true;
- rb2.Checked = true;
- break;
- case 3:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- break;
- case 4:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- break;
- case 5:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- break;
- case 6:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- rb6.Checked = true;
- break;
- case 7:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- rb6.Checked = true;
- rb7.Checked = true;
- break;
- case 8:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- rb6.Checked = true;
- rb7.Checked = true;
- rb8.Checked = true;
- break;
- }
- #endregion
- #region [相信息]
- for (int i = 0; i < imgData.parameter3.Count; i++)
- {
- PolyphaseData data = imgData.parameter3[i];
- viewModels[i].color = data.color;
- mPhaseModels[i].Model.color = data.color;
- mPhaseModels[i].ColorStart = data.downNum;
- mPhaseModels[i].ColorEnd = data.upNum;
- cRControl.SetColor(i, Color.FromArgb(data.color));
- PhaseModel thisModel = this.applyButtonImpl(Color.FromArgb(data.color), data.downNum, data.upNum);
- this.documentWorkspace.phaseModels[i] = thisModel;
- this.phaseModels[i] = thisModel;
- }
- this.documentWorkspace.Refresh();
- #endregion
- checkBox1.Checked = imgData.parameter12;
- cb_SelectPhase.SelectedItem = imgData.parameter2;
- if (cb_SelectPhase.SelectedItem != null) {
- txt_phaseName.Text = cb_SelectPhase.SelectedItem.ToString();
- }
- commonControlButtons.trackBar.Value = imgData.parameter13;
- #region [显示物相]
- string[] allNum = imgData.parameter4.Split(',');
- if (allNum.Contains("1"))
- {
- cb1.Checked = true;
- }
- else
- {
- cb1.Checked = false;
- }
- if (allNum.Contains("2"))
- {
- cb2.Checked = true;
- }
- else
- {
- cb2.Checked = false;
- }
- if (allNum.Contains("3"))
- {
- cb3.Checked = true;
- }
- else
- {
- cb3.Checked = false;
- }
- if (allNum.Contains("4"))
- {
- cb4.Checked = true;
- }
- else
- {
- cb4.Checked = false;
- }
- if (allNum.Contains("5"))
- {
- cb5.Checked = true;
- }
- else
- {
- cb5.Checked = false;
- }
- if (allNum.Contains("6"))
- {
- cb6.Checked = true;
- }
- else
- {
- cb6.Checked = false;
- }
- if (allNum.Contains("7"))
- {
- cb7.Checked = true;
- }
- else
- {
- cb7.Checked = false;
- }
- if (allNum.Contains("8"))
- {
- cb8.Checked = true;
- }
- else
- {
- cb8.Checked = false;
- }
- #endregion
- if (imgData.parameter5)
- {
- checkBox10.Checked = true;
- numericUpDown_KDStart.Value = imgData.parameter7;
- numericUpDown_KDEnd.Value = imgData.parameter8;
- }
- else {
- checkBox10.Checked = false;
- numericUpDown_KDStart.Value = 0;
- numericUpDown_KDEnd.Value = 0;
- }
- if (imgData.parameter6)
- {
- checkBox11.Checked = true;
- numericUpDown_SXStart.Value = imgData.parameter9;
- numericUpDown_SXEnd.Value = imgData.parameter10;
- }
- else
- {
- checkBox11.Checked = false;
- numericUpDown_SXStart.Value = 0;
- numericUpDown_SXEnd.Value = 0;
- }
- numericUpDown1.Value = imgData.parameter11;
- if (cb_SelectPhase.SelectedIndex == -1)
- {
- showParams(mPhaseModels[0]);
- }
- else
- {
- showParams(mPhaseModels[cb_SelectPhase.SelectedIndex]);
- }
- }
- #endregion
- this.orginPhaseModels.Clear();
- groupBox2.Enabled = true;
- }
- }
- private void panel2_Click(object sender, EventArgs e)
- {
- this.colorsFormGrid.UserPrimaryColor = ColorBgra.FromColor(this.panel2.BackColor);
- this.colorsFormGrid.setSaveBtn_Click(new System.EventHandler(this.gridColorChanged));
- this.colorsFormGrid.ShowDialog();
- }
- /// <summary>
- /// Panel2的调色板颜色改变
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void gridColorChanged(object sender, EventArgs e)
- {
- Color color = this.colorsFormGrid.UserPrimaryColor.ToColor();
- //先修改参数
- foreach (Args args in action.Lists)
- {
- if (args.Key == "phaseColor")
- {
- args.Value = color.ToArgb();
- break;
- }
- }
- //更改背景色,触发事件
- this.panel2.BackColor = color;
- //改变配置文件里面的相颜色
- //this.binaryExtractionModel.PhaseColor = color.ToArgb();
- //关闭色板
- RangeColor active = rangeColors[selectIndex];
- active.Color = color;
- rangeColors[selectIndex] = active;
- this.cRControl.RangeColors = rangeColors;
- this.cRControl.Refresh();
- PhaseModel model = this.applyButtonImpl(Color.FromArgb(color.ToArgb()), (int)numericUpDown_RangeStart.Value, (int)numericUpDown_RangeEnd.Value);
- model.name = this.cb_SelectPhase.Items[selectIndex].ToString();
- this.documentWorkspace.phaseModels[selectIndex] = model;
- mPhaseModels[selectIndex].Model = model;
- mPhaseModels[selectIndex].Model.color = color.ToArgb();
- this.phaseModels[selectIndex] = model;
- this.documentWorkspace.Refresh();
- this.colorsFormGrid.Close();
- }
- private void ChangePhaseVisable(int num)
- {
- foreach (Control ctrl in this.groupBox2.Controls) //遍历窗体中的所有控件,Control是所有控件的基类
- {
- if (ctrl.GetType().Name == "CheckBox") //判断是否为CheckBox
- {
- if (ctrl.Name.Equals("cb" + num))
- {
- CheckBox cBox = (CheckBox)ctrl; //创建CheckBox对象
- if (viewModels.Count >= num)
- {
- if (cBox.Checked)
- {
- viewModels[num-1].choise = true;
- phaseModels[num - 1].choise = true;
- }
- else
- {
- viewModels[num-1].choise = false;
- phaseModels[num - 1].choise = false;
- }
- }
- }
- }
- }
- this.documentWorkspace.phaseModels = viewModels;
- this.documentWorkspace.Refresh();
- }
- private void cb1_CheckedChanged(object sender, EventArgs e)
- {
- ChangePhaseVisable(1);
- }
- private void cb2_CheckedChanged(object sender, EventArgs e)
- {
- ChangePhaseVisable(2);
- }
- private void cb3_CheckedChanged(object sender, EventArgs e)
- {
- ChangePhaseVisable(3);
- }
- private void cb4_CheckedChanged(object sender, EventArgs e)
- {
- ChangePhaseVisable(4);
- }
- private void cb5_CheckedChanged(object sender, EventArgs e)
- {
- ChangePhaseVisable(5);
- }
- private void cb6_CheckedChanged(object sender, EventArgs e)
- {
- ChangePhaseVisable(6);
- }
- private void cb7_CheckedChanged(object sender, EventArgs e)
- {
- ChangePhaseVisable(7);
- }
- private void cb8_CheckedChanged(object sender, EventArgs e)
- {
-
- ChangePhaseVisable(8);
- }
- private void cb_SelectPhase_SelectedIndexChanged(object sender, EventArgs e)
- {
- selectIndex = cb_SelectPhase.SelectedIndex;
- if (selectIndex != -1)
- {
- txt_phaseName.Text = mPhaseModels[selectIndex].Model.name;
- numericUpDown_RangeStart.Value = mPhaseModels[selectIndex].ColorStart;
- numericUpDown_RangeEnd.Value = mPhaseModels[selectIndex].ColorEnd;
- panel2.BackColor = Color.FromArgb(mPhaseModels[selectIndex].Model.color);
- }
- }
- private void showParams(MutiPolyphaseModel model)
- {
- if (cb_SelectPhase.SelectedIndex == -1) {
- txt_phaseName.Text = model.Model.name;
- }
- numericUpDown_RangeStart.Value = model.ColorStart;
- numericUpDown_RangeEnd.Value = model.ColorEnd;
- panel2.BackColor = Color.FromArgb(model.Model.color);
- }
- private void button2_Click(object sender, EventArgs e)
- {
- if (listView1.SelectedItems.Count==0)
- {
- MessageBox.Show(PdnResources.GetString("Menu.seselecttheimagethatyouwanttoan.Text")+"!");
- return;
- }
- double pxPerUnit = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRuler(MeasurementUnit.Micron);
- String tag = listView1.FocusedItem.Text;
- List<Bitmap> tempBit = new List<Bitmap>();
- if (listView1.FocusedItem != null)
- {
- if (mainPolyphaseAnalysisResults.FindAll(item => item.GraphName.Equals(listView1.FocusedItem.Text)).Count == 0)
- {
- listBox_analysisResult.Items.Add(this.listView1.FocusedItem.Text);
- listBox_analysisResult.SetItemChecked(listBox_analysisResult.Items.Count - 1, true);
- }
- else
- {
- DialogResult dr = MessageBox.Show(PdnResources.GetString("Menu.Theresuethertoreplace.text")+"?", PdnResources.GetString("Form.OkButton.Text"), MessageBoxButtons.OKCancel, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1);
- if (dr != DialogResult.OK)
- {
- return;
- }
- mainPolyphaseAnalysisResults.RemoveAll(item => item.GraphName.Equals(listView1.FocusedItem.Text));
- viewPolyphaseAnalysisResults.RemoveAll(item => item.GraphName.Equals(listView1.FocusedItem.Text));
- List<string> list = new List<string>();
- foreach (var s in this.listBox_analysisResult.Items)
- {
- list.Add(s.ToString());
- }
- this.listBox_analysisResult.Items.Clear();
- foreach (var s in list)
- {
- this.listBox_analysisResult.Items.Add(s);
- }
- var thisindex = this.listBox_analysisResult.Items.IndexOf(listView1.FocusedItem.Text);
- this.listBox_analysisResult.SetItemChecked(thisindex, false);
- this.listBox_analysisResult_SelectedIndexChanged(sender, e);
- listBox_analysisResult.SetItemChecked(thisindex, true);
- }
- }else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleaseselectapicture.text")+"!");
- return;
- }
- if (this.documentWorkspace.GraphicsList.IsExsitView())
- {
- for (int i = 0; i < this.documentWorkspace.phaseModels.Count; i++)
- {
- PhaseModel pModel = this.documentWorkspace.phaseModels[i];
- //if (pModel.choise)
- //{
- Color pColor = new Color();
- pColor = Color.FromArgb(pModel.color);
- Mat front = pModel.mat;
- int phaseAmount = AnalysisTools.GetPointsFromMat(front);
- Bitmap frontTarget = this.documentWorkspace.GetFullSizeWithRegion(front.ToBitmap());
- //获取相的点合计
- int frontAmount = AnalysisTools.GetPointsFromMat(BitmapConverter.ToMat(frontTarget));
- Mat background = BitmapConverter.ToMat(this.bitmap);
- Mat roi = new Mat(background, new Rect(0, 0, background.Width, background.Height));
- Mat mask = Mat.FromImageData(front.ToBytes(), ImreadModes.Grayscale);
- front.CopyTo(roi, mask);
- Bitmap target = this.documentWorkspace.GetFullSizeWithRegion(background.ToBitmap());
- Mat targetMat = BitmapConverter.ToMat(target);
- //获取合并后视场内的点合计
- int allAmount = AnalysisTools.GetPointsFromMat(targetMat);
- int picAmount = AnalysisTools.GetPointsFromMat(background);
- double cRate = 0f;
- //计算比例
- //视场内部存在相
- if (frontAmount > 0)
- {
- cRate = (double)frontAmount / allAmount;
- }
- else
- {
- //视场内部不存在相
- cRate = (double)phaseAmount / allAmount;
- }
- //计算面积
- double cArea = phaseAmount;
- //计算相含量
- double fRate = (double)phaseAmount / picAmount;
- PolyphaseAnalysisResult pResult = new PolyphaseAnalysisResult();
- pResult.GraphName = this.listView1.FocusedItem.Text;
- pResult.PolyphaseName = mPhaseModels[i].Model.name;
- pResult.PolyphaseArea = cArea * pxPerUnit * pxPerUnit;
- pResult.PolyphaseRate = cRate * 100;
- pResult.PolyphaseAllRate = fRate * 100;
- mainPolyphaseAnalysisResults.Add(pResult);
- viewPolyphaseAnalysisResults.Add(pResult);
-
- }
- }
- else
- {
- for (int i = 0; i < this.documentWorkspace.phaseModels.Count; i++)
- {
- PhaseModel pModel = this.documentWorkspace.phaseModels[i];
- Color pColor = new Color();
- pColor = Color.FromArgb(pModel.color);
- int phaseArea = AnalysisTools.GetPointsFromMat(pModel.mat);
- Mat sourceMat = BitmapConverter.ToMat(this.bitmap);
- int picAmount = AnalysisTools.GetPointsFromMat(sourceMat);
- //计算面积
- double cRate = (double)phaseArea / picAmount;
- PolyphaseAnalysisResult pResult = new PolyphaseAnalysisResult();
- pResult.GraphName = this.listView1.FocusedItem.Text;
- pResult.PolyphaseName = mPhaseModels[i].Model.name;
- pResult.PolyphaseArea = phaseArea * pxPerUnit * pxPerUnit;
- pResult.PolyphaseRate = cRate * 100;
- pResult.PolyphaseAllRate = cRate * 100;
- mainPolyphaseAnalysisResults.Add(pResult);
- viewPolyphaseAnalysisResults.Add(pResult);
- }
- }
- List<PolyphaseAnalysisResult> selectItems = mainPolyphaseAnalysisResults.FindAll(u => u.GraphName == listView1.FocusedItem.Text);
- for (int i = 0; i < selectItems.Count; i++)
- {
- PolyphaseAnalysisResult pResult = selectItems[i];
- dataGridView_results.Rows.Add(pResult.GraphName, pResult.PolyphaseName, AnalysisTools.GetDecNum(pResult.PolyphaseArea, decnum), AnalysisTools.GetDecNum(pResult.PolyphaseRate, decnum), AnalysisTools.GetDecNum(pResult.PolyphaseAllRate, decnum));
- }
- for (int i = 0; i < this.documentWorkspace.phaseModels.Count; i++) {
- double pantographRatio = (double)this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRulerMultiple(MeasurementUnit.Micron);//标尺*放大倍数
- Bitmap originalBit = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].CompositionSurface.CreateAliasedBitmap();
- originalBit.Tag = pantographRatio;
- if (i == 0) {
- tempBit.Add(originalBit);
- }
- Bitmap newBit = originalBit.Clone(new Rectangle(0, 0, originalBit.Width, originalBit.Height), originalBit.PixelFormat);
- Graphics graphics = Graphics.FromImage(newBit);
- Bitmap processedBit = BitmapConverter.ToBitmap(this.documentWorkspace.phaseModels[i].mat);
- graphics.DrawImage(processedBit, new PointF(0, 0));
- newBit.Tag = pantographRatio;
- tempBit.Add(newBit);
- }
- if (bitDic.ContainsKey(tag))
- {
- bitDic[tag].Clear();
- bitDic[tag] = tempBit;
- }
- else
- {
- bitDic.Add(tag, tempBit);
- }
- }
- private void But_DeleteKD_Click(object sender, EventArgs e)
- {
- if (checkBox10.Checked)
- {
- KDDelete(Color.White);
- }
- }
- private void But_DeleteSX_Click(object sender, EventArgs e)
- {
- if (checkBox11.Checked)
- {
- SXDelete();
- }
- }
- private void numericUpDown_RangeStart_ValueChanged(object sender, EventArgs e)
- {
- if (selectIndex == -1) {
- return;
- }
- if (selectIndex != 0) {
- this.rangeColors[selectIndex - 1].End = (int)numericUpDown_RangeStart.Value;
- this.mPhaseModels[selectIndex - 1].ColorEnd= (int)numericUpDown_RangeStart.Value;
- }
- this.rangeColors[selectIndex].Start = (int)numericUpDown_RangeStart.Value;
- this.mPhaseModels[selectIndex].ColorStart = (int)numericUpDown_RangeStart.Value;
- this.cRControl.RangeColors = this.rangeColors;
- this.cRControl.Refresh();
- PhaseModel model = this.applyButtonImpl(Color.FromArgb(mPhaseModels[selectIndex].Model.color), (int)numericUpDown_RangeStart.Value, (int)numericUpDown_RangeEnd.Value);
- this.documentWorkspace.phaseModels[selectIndex] = model;
- this.documentWorkspace.Refresh();
- }
- private void numericUpDown_RangeEnd_ValueChanged(object sender, EventArgs e)
- {
- if (selectIndex == -1)
- {
- return;
- }
- PhaseModel model = this.applyButtonImpl(Color.FromArgb(mPhaseModels[selectIndex].Model.color), (int)numericUpDown_RangeStart.Value, (int)numericUpDown_RangeEnd.Value);
- if ((selectIndex-1)>=0)
- {
- this.rangeColors[selectIndex - 1].End = (int)this.rangeColors[selectIndex].Start;
- this.mPhaseModels[selectIndex-1].ColorEnd = (int)this.rangeColors[selectIndex].Start;
- }
- this.rangeColors[selectIndex].Start = (int)numericUpDown_RangeStart.Value;
- this.rangeColors[selectIndex].End = (int)numericUpDown_RangeEnd.Value;
- this.mPhaseModels[selectIndex].ColorStart = (int)numericUpDown_RangeStart.Value;
- this.mPhaseModels[selectIndex].ColorEnd = (int)numericUpDown_RangeEnd.Value;
- if (this.rangeColors.Count > (selectIndex + 1))
- {
- this.rangeColors[selectIndex + 1].Start = (int)this.rangeColors[selectIndex].End;
- this.mPhaseModels[selectIndex + 1].ColorStart = (int)this.rangeColors[selectIndex].End;
- }
- this.cRControl.RangeColors = this.rangeColors;
- this.cRControl.Refresh();
- this.documentWorkspace.phaseModels[selectIndex] = model;
- this.documentWorkspace.Refresh();
- }
- private void button_all_Click(object sender, EventArgs e)
- {
- dataGridView_results.Rows.Clear();
- if (this.is_all % 2 == 0)
- {
- for (int i = 0; i < listBox_analysisResult.Items.Count; i++)
- {
- listBox_analysisResult.SetItemChecked(i, false);
- }
- }
- else
- {
- for (int i = 0; i < listBox_analysisResult.Items.Count; i++)
- {
- listBox_analysisResult.SetItemChecked(i, true);
- }
- viewPolyphaseAnalysisResults.Clear();
- viewPolyphaseAnalysisResults.AddRange(mainPolyphaseAnalysisResults);
- for (int i = 0; i < viewPolyphaseAnalysisResults.Count; i++)
- {
- PolyphaseAnalysisResult pResult = viewPolyphaseAnalysisResults[i];
- dataGridView_results.Rows.Add(pResult.GraphName, pResult.PolyphaseName, AnalysisTools.GetDecNum(pResult.PolyphaseArea, decnum), AnalysisTools.GetDecNum(pResult.PolyphaseRate, decnum), AnalysisTools.GetDecNum(pResult.PolyphaseAllRate, decnum));
- }
- }
- this.is_all += 1;
- }
- private void button_remove_Click(object sender, EventArgs e)
- {
- var removeList = new List<string>();
- if (listBox_analysisResult.CheckedItems != null && listBox_analysisResult.CheckedItems.Count > 0)
- {
- DialogResult dr = MessageBox.Show(PdnResources.GetString("Menu.ertodeletetheselectedanalysisres.Text")+"?", PdnResources.GetString("Menu.Edit.Delete.Text"), MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
- if (dr == DialogResult.OK)
- {
- dataGridView_results.Rows.Clear();
- foreach (var s in listBox_analysisResult.CheckedItems)
- {
- mainPolyphaseAnalysisResults.RemoveAll(u => u.GraphName == s.ToString());
- viewPolyphaseAnalysisResults.RemoveAll(u => u.GraphName == s.ToString());
- removeList.Add(s.ToString());
- }
- for (int i = 0; i < viewPolyphaseAnalysisResults.Count; i++)
- {
- PolyphaseAnalysisResult pResult = viewPolyphaseAnalysisResults[i];
- dataGridView_results.Rows.Add(pResult.GraphName, pResult.PolyphaseName, AnalysisTools.GetDecNum(pResult.PolyphaseArea, decnum), AnalysisTools.GetDecNum(pResult.PolyphaseRate, decnum), AnalysisTools.GetDecNum(pResult.PolyphaseAllRate, decnum));
- }
- foreach (var m in removeList)
- {
- listBox_analysisResult.Items.Remove(m);
- }
- }
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleaseselecttheimagetodelete.Text")+"!");
- }
- }
- private void numericUpDown1_ValueChanged(object sender, EventArgs e)
- {
- decnum = (int)numericUpDown1.Value;
- dataGridView_results.Rows.Clear();
- for (int i = 0; i < viewPolyphaseAnalysisResults.Count; i++)
- {
- PolyphaseAnalysisResult pResult = viewPolyphaseAnalysisResults[i];
- dataGridView_results.Rows.Add(pResult.GraphName, pResult.PolyphaseName, AnalysisTools.GetDecNum(pResult.PolyphaseArea,decnum), AnalysisTools.GetDecNum(pResult.PolyphaseRate, decnum), AnalysisTools.GetDecNum(pResult.PolyphaseAllRate, decnum));
- }
- }
- private void KDDelete(Color color)
- {
- //double pxPerUnit = Startup.instance.rules[MeasurementUnit.Micron];
- if (this.listView1.FocusedItem == null) {
- return;
- }
- double pxPerUnit = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRuler(MeasurementUnit.Micron);
- List<PhaseModel> phases = this.phaseModels.FindAll(a => a.choise == true);
- foreach (Args args in action914.Lists)
- {
- if (args.Key == "Scope")
- {
- ((List<double>)args.Value)[0] = (double)numericUpDown_KDStart.Value;
- ((List<double>)args.Value)[1] = (double)numericUpDown_KDEnd.Value;
- }
- if (args.Key == "HoleColor")
- {
- args.Value = color.ToArgb();
- }
- }
- List<PhaseModel> phasesCopy = this.viewModels.FindAll(a => a.choise == true);
- for (int i = 0; i < phases.Count; i++)
- {
- PhaseModel model = new PhaseModel();
- model.choise = phases[i].choise;
- model.color = phases[i].color;
- model.name = phases[i].name;
- model.position = phases[i].position;
- model.mat = new OpenCvSharp.Mat();
- phases[i].mat.CopyTo(model.mat);
- phasesCopy[i].mat = action914.PerformProcess(model, pxPerUnit);
- }
- this.documentWorkspace.Refresh();
- }
- private void SXDelete()
- {
- //double pxPerUnit = Startup.instance.rules[MeasurementUnit.Micron];
- if (this.listView1.FocusedItem == null)
- {
- return;
- }
- double pxPerUnit = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRuler(MeasurementUnit.Micron);
- foreach (Args args in action911.Lists)
- {
- if (args.Key == "FilterParameters")
- {
- args.Value = FilterParameters.Area;
- }
- if (args.Key == "Scope")
- {
- ((List<double>)args.Value)[0] = (double)numericUpDown_SXStart.Value;
- ((List<double>)args.Value)[1] = (double)numericUpDown_SXEnd.Value;
- }
- if (args.Key == "UnitParameters")
- {
- args.Value = MeasurementUnit.Micron;
- }
- if (args.Key == "BoundaryPreservation")
- {
- args.Value = true;
- }
- }
- //this.orginPhaseModels.Clear();
- if (orginPhaseModels.Count == 0)
- {
- foreach (var s in mPhaseModels)
- {
- var phaseCopy = new PhaseModel();
- phaseCopy.mat = s.Model.mat.Clone();
- phaseCopy.color = s.Model.color;
- phaseCopy.choise = s.Model.choise;
- phaseCopy.name = s.Model.name;
- orginPhaseModels.Add(phaseCopy);
- }
- }
- else {
- if (orginPhaseModels.Count < mPhaseModels.Count)
- {
- for (int i = 0; i < mPhaseModels.Count; i++) {
- if (i >= orginPhaseModels.Count)
- {
- var phaseCopy = new PhaseModel();
- phaseCopy.mat = mPhaseModels[i].Model.mat.Clone();
- phaseCopy.color = mPhaseModels[i].Model.color;
- phaseCopy.choise = mPhaseModels[i].Model.choise;
- phaseCopy.name = mPhaseModels[i].Model.name;
- orginPhaseModels.Add(phaseCopy);
- }
- else {
- PhaseModel model = this.applyButtonImpl(Color.FromArgb(mPhaseModels[i].Model.color), mPhaseModels[i].ColorStart, mPhaseModels[i].ColorEnd);
- orginPhaseModels[i].mat = model.mat;
- orginPhaseModels[i].color = mPhaseModels[i].Model.color;
- }
- }
- }
- else if (orginPhaseModels.Count == mPhaseModels.Count)
- {
- for (int i = 0; i < mPhaseModels.Count; i++)
- {
- PhaseModel model = this.applyButtonImpl(Color.FromArgb(mPhaseModels[i].Model.color), mPhaseModels[i].ColorStart, mPhaseModels[i].ColorEnd);
-
- orginPhaseModels[i].mat = model.mat;
- orginPhaseModels[i].color = mPhaseModels[i].Model.color;
- }
- }
- else {
- for (int i = 0; i < mPhaseModels.Count; i++)
- {
- PhaseModel model = this.applyButtonImpl(Color.FromArgb(mPhaseModels[i].Model.color), mPhaseModels[i].ColorStart, mPhaseModels[i].ColorEnd);
- orginPhaseModels[i].mat = model.mat;
- orginPhaseModels[i].color = mPhaseModels[i].Model.color;
- }
- }
- }
- //foreach (var s in mPhaseModels)
- //{
- // var phaseCopy = new PhaseModel();
- // phaseCopy.mat = s.Model.mat.Clone();
- // phaseCopy.color = s.Model.color;
- // phaseCopy.choise = s.Model.choise;
- // phaseCopy.name = s.Model.name;
- // orginPhaseModels.Add(phaseCopy);
- //}
- for (int i = 0; i < documentWorkspace.phaseModels.Count; i++)
- {
- this.documentWorkspace.phaseModels[i].mat = action911.PerformProcess(orginPhaseModels[i], pxPerUnit);
- };
- this.documentWorkspace.Refresh();
- }
- private void listBox_analysisResult_SelectedIndexChanged(object sender, EventArgs e)
- {
- dataGridView_results.Rows.Clear();
- if (listBox_analysisResult.CheckedItems != null && listBox_analysisResult.CheckedItems.Count > 0)
- {
- foreach (var s in listBox_analysisResult.CheckedItems)
- {
- List<PolyphaseAnalysisResult> selectItems = mainPolyphaseAnalysisResults.FindAll(u => u.GraphName == s.ToString());
- viewPolyphaseAnalysisResults.Clear();
- viewPolyphaseAnalysisResults.AddRange(selectItems);
- for (int i = 0; i < viewPolyphaseAnalysisResults.Count; i++)
- {
- PolyphaseAnalysisResult pResult = viewPolyphaseAnalysisResults[i];
- dataGridView_results.Rows.Add(pResult.GraphName, pResult.PolyphaseName, AnalysisTools.GetDecNum(pResult.PolyphaseArea, decnum), AnalysisTools.GetDecNum(pResult.PolyphaseRate, decnum), AnalysisTools.GetDecNum(pResult.PolyphaseAllRate, decnum));
- }
- }
- }
- }
- private void btn_close_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- private void button4_Click(object sender, EventArgs e)
- {
- if (this.dataGridView_results.Rows.Count > 0)
- {
- SaveFileDialog exe = new SaveFileDialog();
- exe.Filter = "Execl files (*.xlsx)|*.xlsx";
- exe.FilterIndex = 0;
- exe.RestoreDirectory = true;
- exe.Title = "Export Excel File";
- exe.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
- exe.FileName = PdnResources.GetString("Menu.GeneralAnalysis.MultiphaseContent.Text")+ PdnResources.GetString("Menu.Analysisresult.text") + DateTime.Now.ToString("yyyyMMddhhmmss");
- DialogResult dr = exe.ShowDialog();
- if (dr == DialogResult.OK)
- {
- DataTable dtb = new DataTable();
- foreach (DataGridViewColumn c in this.dataGridView_results.Columns)
- {
- dtb.Columns.Add(c.HeaderText);
- }
- for (int r = 0; r < this.dataGridView_results.Rows.Count; r++)
- {
- DataRow dataRow = dtb.NewRow();
- for (int c = 0; c < this.dataGridView_results.Rows[r].Cells.Count; c++)
- {
- dataRow[this.dataGridView_results.Columns[c].HeaderText] = this.dataGridView_results.Rows[r].Cells[c].Value;
- }
- dtb.Rows.Add(dataRow);
- }
- List<DataTable> list = new List<DataTable>();
- list.Add(dtb);
- this.appWorkspace.ExportDataToExcelWithProgress(list, exe.FileName, true, false, true);
- }
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Noanalysisresults.text")+"!");
- }
- }
- private void button5_Click(object sender, EventArgs e)
- {
- foreach (Control ctrl in this.groupBox2.Controls) //遍历窗体中的所有控件,Control是所有控件的基类
- {
- if (ctrl.GetType().Name == "CheckBox") //判断是否为CheckBox
- {
- if (ctrl.Name.Contains("cb"))
- {
- CheckBox cBox = (CheckBox)ctrl; //创建CheckBox对象
- cBox.Checked = true;
- }
- }
- }
- foreach (PhaseModel ph in this.documentWorkspace.phaseModels)
- {
- ph.choise = true;
- }
- this.documentWorkspace.phaseModels = phaseModels;
- this.documentWorkspace.Refresh();
- }
- private void button6_Click(object sender, EventArgs e)
- {
- foreach (Control ctrl in this.groupBox2.Controls) //遍历窗体中的所有控件,Control是所有控件的基类
- {
- if (ctrl.GetType().Name == "CheckBox") //判断是否为CheckBox
- {
- if (ctrl.Name.Contains("cb"))
- {
- CheckBox cBox = (CheckBox)ctrl; //创建CheckBox对象
- cBox.Checked = false;
- }
- }
- }
- foreach (PhaseModel ph in this.documentWorkspace.phaseModels)
- {
- ph.choise = false;
- }
- this.documentWorkspace.phaseModels = phaseModels;
- this.documentWorkspace.Refresh();
- }
- private void checkBox11_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox11.Checked)
- {
- //SXDelete();
- }else
- {
- numericUpDown_SXStart.Value = 0;
- numericUpDown_SXEnd.Value = 0;
- List<PhaseModel> phases = this.phaseModels.FindAll(a => a.choise == true);
- List<PhaseModel> phasesCopy = this.viewModels.FindAll(a => a.choise == true);
- for (int i = 0; i < phases.Count; i++)
- {
- PhaseModel model = new PhaseModel();
- model.choise = phases[i].choise;
- model.color = phases[i].color;
- model.name = phases[i].name;
- model.position = phases[i].position;
- model.mat = new OpenCvSharp.Mat();
- phases[i].mat.CopyTo(model.mat);
- phasesCopy[i].mat = model.mat;
- }
- this.documentWorkspace.phaseModels = this.viewModels;
- this.documentWorkspace.Refresh();
- }
- }
- private void checkBox10_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox10.Checked)
- {
- KDDelete(Color.White);
- }
- else
- {
- numericUpDown_KDStart.Value = 0;
- numericUpDown_KDEnd.Value = 0;
- List<PhaseModel> phases = this.phaseModels.FindAll(a => a.choise == true);
- List<PhaseModel> phasesCopy = this.viewModels.FindAll(a => a.choise == true);
- for (int i = 0; i < phases.Count; i++)
- {
- PhaseModel model = new PhaseModel();
- model.choise = phases[i].choise;
- model.color = phases[i].color;
- model.name = phases[i].name;
- model.position = phases[i].position;
- model.mat = new OpenCvSharp.Mat();
- phases[i].mat.CopyTo(model.mat);
- phasesCopy[i].mat = model.mat;
- }
- this.documentWorkspace.phaseModels = this.viewModels;
- this.documentWorkspace.Refresh();
- }
- }
- private void Draw(Graphics graphics)
- {
- if (this.documentWorkspace.phaseModels.Count > 0)
- {
- foreach (PhaseModel model in phaseModels)
- {
- if (model.choise && model.mat != null)
- {
- Bitmap map = OpenCvSharp.Extensions.BitmapConverter.ToBitmap(model.mat);
- graphics.DrawImage(map, 0, 0, map.Width, map.Height);
- }
- }
- }
- }
- private void button1_Click(object sender, EventArgs e)
- {
- AnalyzeSettingDialog recombinationRateSetDialog = new AnalyzeSettingDialog(this, "Template.Manager.item2.PolyphaseMutiAreaContent");
- if (recombinationRateSetDialog.hasModule)
- {
- recombinationRateSetDialog.StartPosition = FormStartPosition.CenterScreen;
- recombinationRateSetDialog.ShowDialog();
- }
- else
- {
- recombinationRateSetDialog = null;
- }
- }
- private void button3_Click(object sender, EventArgs e)
- {
- bitList.Clear();
- if (checkBox1.Checked)
- {
- AnalyzeSettingDialog recombinationRateSetDialog = new AnalyzeSettingDialog(this, "Template.Manager.item2.PolyphaseMutiAreaContent");
- if (recombinationRateSetDialog.hasModule)
- {
- recombinationRateSetDialog.StartPosition = FormStartPosition.CenterScreen;
- recombinationRateSetDialog.ShowDialog();
- }
- else
- {
- recombinationRateSetDialog = null;
- }
- }
- if (this.analyzeSettingModel != null && !string.IsNullOrEmpty(this.analyzeSettingModel.analyzeClassify))
- {
- //获取word书签与excel单元格的关系,以字典方式存储
- List<mic_module_infos> mic_module_infos = mic_module_infos_BLL.FindAll().FindAll(a => a.analyze_classify == this.analyzeSettingModel.analyzeClassify);
- Dictionary<string, string> tagInfos = new Dictionary<string, string>();
- if (mic_module_infos != null && mic_module_infos.Count > 0)
- {
- foreach (mic_module_infos info in mic_module_infos)
- {
- tagInfos.Add(info.tag_name, info.cell_position);
- }
- }
- List<List<string>> analysisContent = new List<List<string>>();
- List<string> nameList = new List<string>();
- for (int i = 0; i < this.dataGridView_results.Rows.Count; i++)
- {
- List<string> content1 = new List<string>();
- if (i == 0)
- {
- content1.Add(this.dataGridView_results.Columns[0].HeaderText);
- content1.Add(this.dataGridView_results.Columns[1].HeaderText);
- content1.Add(this.dataGridView_results.Columns[2].HeaderText);
- content1.Add(this.dataGridView_results.Columns[3].HeaderText);
- content1.Add(this.dataGridView_results.Columns[4].HeaderText);
- analysisContent.Add(content1);
- }
- content1 = new List<string>();
- content1.Add(this.dataGridView_results.Rows[i].Cells[0].Value.ToString());
- content1.Add(this.dataGridView_results.Rows[i].Cells[1].Value.ToString());
- content1.Add(this.dataGridView_results.Rows[i].Cells[2].Value.ToString());
- content1.Add(this.dataGridView_results.Rows[i].Cells[3].Value.ToString());
- content1.Add(this.dataGridView_results.Rows[i].Cells[4].Value.ToString());
- analysisContent.Add(content1);
- string tag = this.dataGridView_results.Rows[i].Cells[0].Value.ToString();
- if (nameList.IndexOf(tag) == -1)
- {
- nameList.Add(tag);
- }
- }
- foreach (var s in nameList)
- {
- if (bitDic.ContainsKey(s))
- {
- foreach (var m in bitDic[s])
- {
- bitList.Add(bitDic[s][bitDic[s].IndexOf(m)]);
- }
- }
- }
- this.appWorkspace.CreateAnalysisReport(this.analyzeSettingModel, analysisContent, bitList, tagInfos);
- }
- else
- MessageBox.Show(PdnResources.GetString("Menu.Pleasesettheanalysisreportfirst.text")+"!");
- }
- private void numericUpDown_RangeStart_KeyUp(object sender, KeyEventArgs e)
- {
- numericUpDown_RangeStart.Value = numericUpDown_RangeStart.Value;
- }
- private void numericUpDown_RangeEnd_KeyUp(object sender, KeyEventArgs e)
- {
- numericUpDown_RangeEnd.Value = numericUpDown_RangeEnd.Value;
- }
- private void button9_Click(object sender, EventArgs e)
- {
- if (this.dataGridView_results.Rows.Count == 0)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Noresults.text"));
- return;
- }
- if (this.analyzeSettingModel == null)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleasesetiirst.Text"));
- return;
- }
- //获取项目工程内的文件夹路径
- ProjectEngineering.NodeItem item = this.appWorkspace.GetInsertProjectPath(2, "Menu.GeneralAnalysis.MultiphaseContent.Text", this.analyzeSettingModel.savePath);
- if (item != null)
- {
- //向文件夹内保存图片和报告
- if (!string.IsNullOrEmpty(this.analyzeSettingModel.analyzeClassify))
- {
- //获取word书签与excel单元格的关系,以字典方式存储
- List<mic_module_infos> mic_module_infos = mic_module_infos_BLL.FindAll().FindAll(a => a.analyze_classify == this.analyzeSettingModel.analyzeClassify);
- Dictionary<string, string> tagInfos = new Dictionary<string, string>();
- if (mic_module_infos != null && mic_module_infos.Count > 0)
- {
- foreach (mic_module_infos info in mic_module_infos)
- {
- tagInfos.Add(info.tag_name, info.cell_position);
- }
- }
- List<List<string>> analysisContent = new List<List<string>>();
- List<List<string>> inclusionList = new List<List<string>>();
- List<ExportProjectModel> exportModel = new List<ExportProjectModel>();
- List<Bitmap> bitImgList = new List<Bitmap>();
- List<string> titleContent = new List<string>();
- List<string> nameList = new List<string>();
- for (int i = 0; i < this.dataGridView_results.Rows.Count; i++)
- {
- List<string> content1 = new List<string>();
- if (i == 0)
- {
- content1.Add(this.dataGridView_results.Columns[0].HeaderText);
- content1.Add(this.dataGridView_results.Columns[1].HeaderText);
- content1.Add(this.dataGridView_results.Columns[2].HeaderText);
- content1.Add(this.dataGridView_results.Columns[3].HeaderText);
- analysisContent.Add(content1);
- titleContent.AddRange(content1);
- }
- content1 = new List<string>();
- content1.Add(this.dataGridView_results.Rows[i].Cells[0].Value.ToString());
- content1.Add(this.dataGridView_results.Rows[i].Cells[1].Value.ToString());
- content1.Add(this.dataGridView_results.Rows[i].Cells[2].Value.ToString());
- content1.Add(this.dataGridView_results.Rows[i].Cells[3].Value.ToString());
- analysisContent.Add(content1);
- string tag = this.dataGridView_results.Rows[i].Cells[0].Value.ToString();
- if (nameList.IndexOf(tag) == -1)
- {
- nameList.Add(tag);
- }
- var export = exportModel.Where(m => m.picName == tag).FirstOrDefault();
- if (export == null) {
- ExportProjectModel exportProjectModel = new ExportProjectModel();
- exportProjectModel.dataList = new List<List<string>>();
- exportProjectModel.dataList.Add(titleContent);
- exportProjectModel.dataList.Add(content1);
- exportProjectModel.picName = tag;
- exportProjectModel.tagName = PdnResources.GetString("Menu.GeneralAnalysis.MultiphaseContent.Text");
- exportModel.Add(exportProjectModel);
- }
- else {
- exportModel[exportModel.IndexOf(export)].dataList.Add(content1);
- }
- }
- foreach (var s in nameList) {
- if (bitDic.ContainsKey(s))
- {
- foreach (var m in bitDic[s])
- {
- bitImgList.Add(bitDic[s][bitDic[s].IndexOf(m)]);
- }
- }
- }
- try
- {
- this.appWorkspace.CreateAnalysisReport(this.analyzeSettingModel, analysisContent, exportModel, bitImgList, tagInfos, item.path, item.code);
- }
- catch (Exception ex)
- {
- MessageBox.Show(ex.Message);
- }
- }
- else
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleasesettheanalysisreportfirst.text")+"!");
- return;
- }
- //保存项目信息到数据库
- this.appWorkspace.InsertIntoDB(this.analyzeSettingModel, item);
- }
- }
- /// <summary>
- /// 应用全部
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button8_Click()
- {
- if (this.listView1.FocusedItem == null)
- {
- return;
- }
- #region [设置参数]
- PolyphaseMutiAreaContentModel model = new PolyphaseMutiAreaContentModel();
- model.hasUsed = true;
- model.parameter1 = xiang_num;
- model.parameter12 = checkBox1.Checked;
- model.parameter13 = commonControlButtons.trackBar.Value;
- model.parameter2 = cb_SelectPhase.SelectedItem == null ? "" : cb_SelectPhase.SelectedItem.ToString();
- if (model.parameter3 == null)
- {
- model.parameter3 = new List<PolyphaseData>();
- }
- var list = new List<PolyphaseData>();
- foreach (var s in mPhaseModels)
- {
- PolyphaseData data = new PolyphaseData();
- data.color = s.Model.color;
- data.downNum = s.ColorStart;
- data.upNum = s.ColorEnd;
- list.Add(data);
- }
- model.parameter3 = list;
- #region [保存物相选择]
- string all = String.Empty;
- if (cb1.Checked)
- {
- all += "1,";
- }
- if (cb2.Checked)
- {
- all += "2,";
- }
- if (cb3.Checked)
- {
- all += "3,";
- }
- if (cb4.Checked)
- {
- all += "4,";
- }
- if (cb5.Checked)
- {
- all += "5,";
- }
- if (cb6.Checked)
- {
- all += "6,";
- }
- if (cb7.Checked)
- {
- all += "7,";
- }
- if (cb8.Checked)
- {
- all += "8,";
- }
- model.parameter4 = all;
- #endregion
- model.parameter5 = checkBox10.Checked;
- model.parameter6 = checkBox11.Checked;
- model.parameter7 = (int)numericUpDown_KDStart.Value;
- model.parameter8 = (int)numericUpDown_KDEnd.Value;
- model.parameter9 = (int)numericUpDown_SXStart.Value;
- model.parameter10 = (int)numericUpDown_SXEnd.Value;
- model.parameter11 = (int)numericUpDown1.Value;
- for (int i = 0; i < listView1.Items.Count; i++)
- {
- if (everyImgData.ContainsKey(listView1.Items[i].Name))
- {
- everyImgData[listView1.Items[i].Name] = model;
- }
- else
- {
- everyImgData.Add(listView1.Items[i].Name, model);
- }
- }
- #endregion
- this.listView1.EnsureVisible(listView1.Items.Count - 1);
- this.listView1.Items[listView1.Items.Count - 1].Focused = true;
- this.listView1.Items[listView1.Items.Count - 1].Selected = true;
- this.userAll = true;
- }
- /// <summary>
- /// 保存到全部
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button7_Click()
- {
- if (!this.userAll) {
- MessageBox.Show("请先点击应用全部!");
- return;
- }
- for (int i = 0; i < listView1.Items.Count; i++)
- {
- this.listView1.EnsureVisible(i);
- this.listView1.Items[i].Focused = true;
- this.listView1.Items[i].Selected = true;
- this.But_DeleteKD.PerformClick();
- this.But_DeleteSX.PerformClick();
- button2_Click(null, null);
- }
- }
- private void getValue(string key, Object value)
- {
- switch (key)
- {
- case "parameter1":
- switch (Convert.ToInt32(value) + 1)
- {
- case 0:
- rb1.Checked = true;
- break;
- case 1:
- rb1.Checked = true;
- break;
- case 2:
- rb1.Checked = true;
- rb2.Checked = true;
- break;
- case 3:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- break;
- case 4:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- break;
- case 5:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- break;
- case 6:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- rb6.Checked = true;
- break;
- case 7:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- rb6.Checked = true;
- rb7.Checked = true;
- break;
- case 8:
- rb1.Checked = true;
- rb2.Checked = true;
- rb3.Checked = true;
- rb4.Checked = true;
- rb5.Checked = true;
- rb6.Checked = true;
- rb7.Checked = true;
- rb8.Checked = true;
- break;
- }
- break;
- case "parameter2":
- checkBox10.Checked = Convert.ToBoolean(value);
- break;
- case "parameter3":
- numericUpDown_KDStart.Value = Convert.ToDecimal(value);
- break;
- case "parameter4":
- numericUpDown_KDEnd.Value = Convert.ToDecimal(value);
- break;
- case "parameter5":
- checkBox11.Checked = Convert.ToBoolean(value);
- break;
- case "parameter6":
- numericUpDown_SXStart.Value = Convert.ToDecimal(value);
- break;
- case "parameter7":
- numericUpDown_SXEnd.Value = Convert.ToDecimal(value);
- break;
- case "OpenWhileExportReport":
- checkBox1.Checked = Convert.ToBoolean(value);
- break;
- case "CalculatorDecimalDigits":
- numericUpDown1.Value = Convert.ToDecimal(value);
- break;
- case "ExportResults":
- isExportResults = Convert.ToBoolean(value);
- break;
- case "ExportReports":
- isExportReports = Convert.ToBoolean(value);
- break;
- case "ExportProjects":
- isExportProjects = Convert.ToBoolean(value);
- break;
- }
- }
- #region [脚本录制]
- private void getScriptRecording()
- {
- string className = InvariantData.path_Action + ".Action" + menuId;
- ParamObject param = (ParamObject)System.Reflection.Assembly.Load(InvariantData.assembly_Data).CreateInstance(className);
- List<Args> args = param.Lists;
- foreach (var item in args)
- {
- item.value = setScriptRecording(item.key);
- }
- appWorkspace.SetScriptStartRecording(this.menuId, menuName, args);
- }
- private object setScriptRecording(string key)
- {
- object value = null;
- switch (key)
- {
- case "parameter1":
- if (rb1.Checked) {
- value = 0;
- }
- if (rb2.Checked)
- {
- value = 1;
- }
- if (rb3.Checked)
- {
- value = 2;
- }
- if (rb4.Checked)
- {
- value = 3;
- }
- if (rb5.Checked)
- {
- value = 4;
- }
- if (rb6.Checked)
- {
- value = 5;
- }
- if (rb7.Checked)
- {
- value = 6;
- }
- if (rb8.Checked)
- {
- value = 7;
- }
- break;
- case "parameter2":
- value = checkBox10.Checked;
- break;
- case "parameter3":
- value = numericUpDown_KDStart.Value;
- break;
- case "parameter4":
- value = numericUpDown_KDEnd.Value;
- break;
- case "parameter5":
- value = checkBox11.Checked;
- break;
- case "parameter6":
- value = numericUpDown_SXStart.Value;
- break;
- case "parameter7":
- value = numericUpDown_SXEnd.Value;
- break;
- case "OpenWhileExportReport":
- value = checkBox1.Checked;
- break;
- case "CalculatorDecimalDigits":
- value = numericUpDown1.Value;
- break;
- case "ExportResults":
- value = isExportResults;
- break;
- case "ExportReports":
- value = isExportReports;
- break;
- case "ExportProjects":
- value = isExportProjects;
- break;
- }
- return value;
- }
- #endregion
- }
- }
|