| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398 |
- using OpenCvSharp;
- using PaintDotNet.Annotation;
- using PaintDotNet.Annotation.Enum;
- using PaintDotNet.Base.CommTool;
- using PaintDotNet.Base.Functionodel;
- using PaintDotNet.Base.SettingModel;
- using PaintDotNet.CustomControl;
- using PaintDotNet.DbOpreate.DbBll;
- using PaintDotNet.DbOpreate.DbModel;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Configuration;
- using System.Data;
- using System.Drawing;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace PaintDotNet.DedicatedAnalysis.Battery
- {
- internal partial class Membranes : PdnBaseForm
- {
- #region 属性
- //二值化集成1
- BinaryClassForB binaryClass;
- private int menuId;
- /// <summary>
- /// 选中图片的bitmap
- /// </summary>
- private Bitmap bitmap;
- /// <summary>
- /// 存在视场标记
- /// </summary>
- private bool existViewFlag = false;
- private int changeCount;
- /// <summary>
- /// 主空间
- /// </summary>
- private AppWorkspace appWorkspace;
- /// <summary>
- /// 图像面板
- /// </summary>
- private DocumentWorkspaceWindow documentWorkspace;
- /// <summary>
- /// 公共控件
- /// </summary>
- private GeneralAnalysisCommonControlButtons commonControlButtons;
- /// <summary>
- /// 图片测量记录
- /// </summary>
- private List<DataTable> pictureDataTables = new List<DataTable>();
- /// <summary>
- /// 网格Xml
- /// </summary>
- private GrainSizePointCountingMethodModel grainSizePointCountingMethodModel;
- /// <summary>
- /// 数据变化
- /// </summary>
- private bool saveSuccess = false;
- private BinaryControlSmaller bc;
- #endregion 属性
- #region 数据属性
- /// <summary>
- /// 折线点的集合
- /// </summary>
- public List<System.Drawing.Point> pointArray = new List<System.Drawing.Point>();
- /// <summary>
- /// 存储所有轮廓线的点集合
- /// </summary>
- private List<PointF> pointList = new List<PointF>();
- /// <summary>
- /// 存储所有轮廓线集合
- /// </summary>
- private List<List<PointF>> lineList = new List<List<PointF>>();
- /// <summary>
- /// 存储所有孔隙线的点集合
- /// </summary>
- private List<PointF> kongPointList = new List<PointF>();
- /// <summary>
- /// 存储所有孔隙线集合
- /// </summary>
- private List<List<PointF>> kongLineList = new List<List<PointF>>();
- /// <summary>
- /// 存储所有删除孔隙线的点集合
- /// </summary>
- private List<PointF> delPointList = new List<PointF>();
- /// <summary>
- /// 存储所有删除孔隙线集合
- /// </summary>
- private List<List<PointF>> delLineList = new List<List<PointF>>();
- //轮廓修改状态
- bool isLunKuo = false;
- //添加孔隙状态
- bool isAddKong = false;
- //删除孔隙状态
- bool isDelKong = false;
- //绘制轮廓
- bool isDrwKuo = false;
- //绘制轮廓结束
- bool DrwDone = false;
- #endregion
- /// <summary>
- ///
- /// </summary>
- /// <param name="appWorkspace"></param>
- public Membranes(AppWorkspace appWorkspace, int menuId)
- {
- this.KeyPreview = true;
- this.KeyDown += OnKeyDown;
- this.menuId = menuId;
- binaryClass = new BinaryClassForB(menuId);
- InitializeComponent();
- InitializeLanguageText();
- ColumnHeader header0 = new ColumnHeader();
- header0.Text = "";
- header0.Width = 180;
- this.appWorkspace = appWorkspace;
- this.documentWorkspace = new DocumentWorkspaceWindow(appWorkspace);
- this.documentWorkspace.Dock = DockStyle.Fill;
- this.documentWorkspace.HookMouseEvents();
- this.documentWorkspace.AuxiliaryLineEnabled = false;
- this.documentWorkspace.Visible = false;
- this.documentWorkspace.panel.Paint += Panel_Paint;
- this.documentWorkspace.panel.MouseDown += OnMouseDown;
- this.documentWorkspace.panel.MouseUp += OnMouseUp;
- this.documentWorkspace.panel.Paint += Panel_Paint;
- this.documentWorkspace.panel.MouseMove += onMouseMove;
- this.documentWorkspace.activeTool = DrawToolType.Pointer;
- this.groupBox7.Controls.Add(this.documentWorkspace);
- this.commonControlButtons = new GeneralAnalysisCommonControlButtons();
- this.commonControlButtons.Dock = DockStyle.Top;
- this.commonControlButtons.Height = 30;
- this.commonControlButtons.HideZoomToWindowAndActualSize();
- this.commonControlButtons.trackLabel.Text = "单击开始画线,右键停止。";
- this.commonControlButtons.trackLabel.Visible = true;
- this.commonControlButtons.trackLabel.Width = 300;
- this.commonControlButtons.Visible = false;
- this.groupBox7.Controls.Add(commonControlButtons);
- //获取
- //Startup.instance.rules.TryGetValue(MeasurementUnit.Micron, out ruleValue);
- //double ruleValue = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRuler(MeasurementUnit.Micron);
- ////double physical_area_length_Micron = getCurrentWorkspace().GetRuler(MeasurementUnit.Micron);
- //二值化集成2
- bc.OriginCheckedChangedAction += new EventHandler(this.bcOriginCheckedChanged);//初始化原图勾选改变事件
- binaryClass.imageType = 5;
- binaryClass.createDocumentItemsSmaller(new string[] { "bp1" }, this.bc, this.appWorkspace, this.documentWorkspace, this.listView1);//初始化相的工作结构
- binaryClass.CilCount = Convert.ToInt32(txt_RightLineWeight.Text);
- InitCommonButtonEvent();
- InitGridStyle();
- InitPicList();
- // SetAnalyzeModelFromXml(getModelName());
- }
- private void ShowImgEvent(object sender, EventArgs e)
- {
- if (this.listView1.Items.Count == 0)
- {
- return;
- }
- listView1.Focus();
- this.listView1.Items[0].Focused = true;
- this.listView1.Items[0].Selected = true;
- }
- #region 二值化相关方法
- private void InclusionsStandardDialog_FormClosing(object sender, FormClosingEventArgs e)
- {
- binaryClass.saveParams();
- }
- private void ShownChoiseItemAndInitData(object sender, EventArgs e)
- {
- binaryClass.RefreshHistogramControl1Values();
- }
- /// <summary>
- /// 添加参数改变的监听
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void GrainSizePointCountingMethodDialog_Load(object sender, EventArgs e)
- {
- for (int i = 0; i < this.dataGridView1.Columns.Count; i++)
- {
- this.dataGridView1.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable;
- }
- this.dataGridView4.SortCompare += DataGridView4_SortCompare;
- this.binaryClass.loadParams();
- }
- private bool bcBinaryChecked()
- {
- return bc != null && bc.BinaryChecked;
- }
- private bool bcOriginChecked()
- {
- return bc != null && bc.OriginChecked;
- }
- /// <summary>
- /// 显示原图/原图+二值图
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void bcOriginCheckedChanged(object sender, EventArgs e)
- {
- if (!bcOriginChecked())
- {
- if (bcBinaryChecked())
- this.documentWorkspace.PhaseModels[0].choise = true;
- }
- else
- this.documentWorkspace.PhaseModels[0].choise = false;
- this.documentWorkspace.Refresh();
- }
- #endregion
- /// <summary>
- /// 初始化画面数据
- /// </summary>
- private void InitGridStyle()
- {
- grainSizePointCountingMethodModel = XmlSerializeHelper.DESerializer<GrainSizePointCountingMethodModel>(FileOperationHelper.ReadStringFromFile(Application.StartupPath + "\\Config\\" + Startup.instance.SettingPrefix + "\\GrainSizePointCountingMethodModel.xml", FileMode.Open));
- if (grainSizePointCountingMethodModel.GridStyleList != null)
- {
- ArrayList arrayList = new ArrayList();
- foreach (var GridStyle in grainSizePointCountingMethodModel.GridStyleList)
- {
- arrayList.Add(GridStyle.gridName);
- }
- if (grainSizePointCountingMethodModel.GridStyleList.Count == 0)
- {
- }
- }
- }
- /// <summary>
- /// 初始化图片列表数据
- /// </summary>
- 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;
- this.listView1.Items[i].Text = this.appWorkspace.DocumentWorkspaces[i].GetFriendlyName();
- this.listView1.Items[i].Name = this.appWorkspace.DocumentWorkspaces[i].GetFriendlyName();
- }
- this.Shown += ShowImgEvent;
- }
- #region 初始化
- private void InitializeLanguageText()
- {
- this.bc = new PaintDotNet.CustomControl.BinaryControlSmaller();
- //
- // bc
- //
- this.bc.BinaryBackColor = System.Drawing.Color.Red;
- this.bc.BinaryChecked = false;
- this.bc.BinaryStyle = 1;
- this.bc.Location = new System.Drawing.Point(152, 7);
- this.bc.Name = "bc";
- this.bc.OriginChecked = false;
- this.bc.scope1End = 0D;
- this.bc.scope1Start = 0D;
- this.bc.scope2End = 0D;
- this.bc.scope2Start = 0D;
- this.bc.scope3End = 0D;
- this.bc.scope3Start = 0D;
- this.bc.Size = new System.Drawing.Size(360, 247);
- this.bc.TabIndex = 3;
- this.Controls.Add(this.bc);
- this.Controls.SetChildIndex(this.bc, 0);
- }
- #endregion
- #region 公共按钮
- 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);
- }
- private void zoomInButton_Click(object sender, EventArgs e)
- {
- this.documentWorkspace.ZoomIn();
- }
- private void zoomOutButton_Click(object sender, EventArgs e)
- {
- 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;
- }
- #endregion
- private void listView1_MouseDown(object sender, MouseEventArgs e)
- {
- this.changeCount = 0;
- }
- private void DataGridView4_SortCompare(object sender, DataGridViewSortCompareEventArgs e)
- {
- // 如果是数据的列,则按浮点数处理
- if (e.Column.Index > 1)//###20186
- {
- e.SortResult = (Convert.ToDouble(e.CellValue1) - Convert.ToDouble(e.CellValue2) > 0) ? 1 : (Convert.ToDouble(e.CellValue1) - Convert.ToDouble(e.CellValue2) < 0) ? -1 : 0;
- }
- //否则,按字符串比较
- else
- {
- e.SortResult = System.String.Compare(Convert.ToString(e.CellValue1), Convert.ToString(e.CellValue2));
- }
- e.Handled = true;//不能省掉,不然没效果
- }
- private void listView1_ItemSelectionChanged(object sender, ListViewItemSelectionChangedEventArgs e)
- {
- bool change = false;
- if (this.changeCount == 0)
- {
- if (this.dataGridView1.Rows.Count > 0)
- {
- if (this.saveSuccess)
- {
- DialogResult dt = MessageBox.Show(PdnResources.GetString("Menu.Whethertosavetherrentpicture.text") + "?", PdnResources.GetString("Menu.hint.text"), MessageBoxButtons.YesNo, MessageBoxIcon.Question);
- if (dt == DialogResult.Yes)
- {
- string imgName = this.appWorkspace.DocumentWorkspaces[e.ItemIndex].GetFriendlyName();
- string tag = this.imageList1.Images.Keys[e.ItemIndex];
- if (this.dataGridView1.Rows.Count == 0)
- {
- MessageBox.Show(PdnResources.GetString("Menu.Pleaseaddtype.text") + "!");
- return;
- }
- }
- }
- }
- }
- else
- {
- if (change)
- SelectedIndexChanged();
- }
- this.changeCount++;
- }
- /// <summary>
- /// 切换图片
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void listView1_SelectedIndexChanged(object sender, EventArgs e)
- {
- SelectedIndexChanged();
- }
- List<PointF> list = new List<PointF>();
- /// <summary>
- /// 切换图片
- /// </summary>
- private void SelectedIndexChanged()
- {
- if (this.listView1.FocusedItem != null && this.listView1.FocusedItem.Selected)
- {
- existViewFlag = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GraphicsList.IsExsitView();
- this.bitmap = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].CompositionSurface.CreateAliasedBitmap();
- lineList.Clear();
- pointList.Clear();
- kongLineList.Clear();
- kongPointList.Clear();
- delLineList.Clear();
- delPointList.Clear();
- isLunKuo = false;
- isAddKong = false;
- isDelKong = false;
- isDrwKuo = false;
- DrwDone = false;
- this.documentWorkspace.Refresh();
- this.dataGridView1.Rows.Clear();
- this.dataGridView4.Rows.Clear();
- Init();
- this.documentWorkspace.GridRectangleEnabled = false;
- //getimage();
- //getbian(bitmap);
- binaryClass.CilCount = Convert.ToInt32(txt_RightLineWeight.Text);
- //二值化集成4
- binaryClass.listView1_SelectedIndexChanged(this.bitmap);
- binaryClass.bcDefault();
- // btnCircleDrawing_Click(null, null);
- this.documentWorkspace.Refresh();
- }
- }
- #region 原始事件
- private void Init()
- {
- this.commonControlButtons.Visible = true;
- this.dataGridView1.Rows.Clear();
- this.dataGridView4.Rows.Clear();
- this.documentWorkspace.phaseModels.Clear();
- }
- /// <summary>
- /// 画布绘制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void Panel_Paint(object sender, PaintEventArgs e)
- {
- if (this.documentWorkspace.CompositionSurface != null)
- {
- //
- // 以下是计算绘制图片的位置和大小并绘制图片
- //
- Rectangle rc = this.documentWorkspace.panel.ClientRectangle;
- int width = (int)(this.documentWorkspace.CompositionSurface.Width * this.documentWorkspace.ScaleFactor.Ratio);
- int height = (int)(this.documentWorkspace.CompositionSurface.Height * this.documentWorkspace.ScaleFactor.Ratio);
- int x = (rc.Width < width) ? this.documentWorkspace.panel.AutoScrollPosition.X : (rc.Width - width) / 2;
- int y = (rc.Height < height) ? this.documentWorkspace.panel.AutoScrollPosition.Y : (rc.Height - height) / 2;
- //if (pointArray.Count > 1)
- //{
- // e.Graphics.DrawLines(new Pen(Color.FromArgb(0, 0, 0), 2), pointArray.ToArray());
- //}
- //
- // 以下是绘制网格、标注、测量、视场等开始
- //
- e.Graphics.TranslateTransform(x, y);
- e.Graphics.ScaleTransform((float)this.documentWorkspace.ScaleFactor.Ratio, (float)this.documentWorkspace.ScaleFactor.Ratio);
- Draw(e.Graphics);
- //e.Graphics.DrawLines(new Pen(this.panel1.BackColor, Convert.ToInt32(this.txt_LeftLineWeight.Text)), list.ToArray());
- e.Graphics.ScaleTransform(1 / (float)this.documentWorkspace.ScaleFactor.Ratio, 1 / (float)this.documentWorkspace.ScaleFactor.Ratio);
- e.Graphics.TranslateTransform(-x, -y);
- }
- if (bc.isedit)
- {
- bc.isedit = false;
- List<List<int>> CircleDate = bc.data;
- bindGrid(CircleDate);
- }
- }
- /// <summary>
- /// 绘制
- /// </summary>
- private void Draw(Graphics graphics)
- {
- //轮廓手动干预线
- if (lineList.Count > 0)
- {
- for (int i = 0; i < lineList.Count; i++)
- {
- graphics.DrawLines(new Pen(Color.FromArgb(255, 0, 255), 2), lineList[i].ToArray());
- }
- }
- if (pointList.Count > 1)
- {
- graphics.DrawLines(new Pen(Color.FromArgb(255, 0, 255), 2), pointList.ToArray());
- }
- //孔隙手动干预线
- Color color = bc.BinaryBackColor;
- if (kongLineList.Count > 0)
- {
- for (int i = 0; i < kongLineList.Count; i++)
- {
- graphics.DrawLines(new Pen(color, 2), kongLineList[i].ToArray());
- }
- }
- if (kongPointList.Count > 1)
- {
- graphics.DrawLines(new Pen(color, 2), kongPointList.ToArray());
- }
- //删除孔隙
- //if (delLineList.Count > 0)
- //{
- // for (int i = 0; i < delLineList.Count; i++)
- // {
- // graphics.DrawLines(new Pen(Color.FromArgb(255, 0, 0), 2), delLineList[i].ToArray());
- // }
- //}
- //if (delPointList.Count > 1)
- //{
- // graphics.DrawLines(new Pen(Color.FromArgb(255, 0, 0), 2), delPointList.ToArray());
- //}
- }
- /// <summary>
- /// 画同心圆
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void btnCircleDrawing_Click(object sender, EventArgs e)
- {
- if (this.listView1.Items.Count == 0)
- {
- return;
- }
- if (rb_RightCircle.Checked)
- {
- List<List<int>> CircleDate = binaryClass.getCircleDate(Convert.ToInt32(txt_RightLineWeight.Text));
- bindGrid(CircleDate);
- }
- else
- {
- List<List<int>> CircleDate = binaryClass.getCircleDate(0);
- bindGrid(CircleDate);
- }
- }
- private void bindGrid(List<List<int>> dataList)
- {
- if (dataList == null)
- {
- return;
- }
- if (dataList.Count < 1)
- {
- return;
- }
- //标尺 微米/像素
- double d = binaryClass.GetRuler();
- // double d = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRuler(MeasurementUnit.Micron);
- //图像自动识别标尺x微米/像素
- //double q= binaryClass.GetRuler();
- //孔隙率信息列表
- dataGridView1.Rows.Clear();
- Mat mat = this.documentWorkspace.PhaseModels[0].mat;
- double maxArea = mat.Rows* (mat.Cols-70);
-
-
- double totalArea = 0;
- //孔隙信息列表
- dataGridView4.Rows.Clear();
- for (int i = 1; i < dataList.Count - 1; i++)
- {
- if (dataList[i].Count < 6)
- { continue; }
- int newPo = dataGridView4.Rows.Add();
- //序号
- dataGridView4.Rows[newPo].Cells[0].Value = (newPo + 1).ToString();
- //X
- dataGridView4.Rows[newPo].Cells[1].Value = dataList[i][0];
- //Y
- dataGridView4.Rows[newPo].Cells[2].Value = dataList[i][1];
- //长
- dataGridView4.Rows[newPo].Cells[3].Value = Math.Round(Convert.ToDouble(dataList[i][2]) * d, 4).ToString();
- //宽
- dataGridView4.Rows[newPo].Cells[4].Value = Math.Round(Convert.ToDouble(dataList[i][3]) * d, 4).ToString();
- //面积
- dataGridView4.Rows[newPo].Cells[5].Value = Math.Round(Convert.ToDouble(dataList[i][4]) * d * d, 4).ToString();
- //标识
- dataGridView4.Rows[newPo].Cells[6].Value = dataList[i][5];
- totalArea = totalArea + Math.Round(Convert.ToDouble(dataList[i][4]) * d * d, 4);
- }
- int newrow = dataGridView1.Rows.Add();
- dataGridView1.Rows[newrow].Cells[0].Value = Math.Round(maxArea * d * d, 4).ToString();
- dataGridView1.Rows[newrow].Cells[1].Value = Math.Round(totalArea, 4).ToString();
- dataGridView1.Rows[newrow].Cells[2].Value = Math.Round((100*totalArea)/ (maxArea * d * d), 4).ToString() + "%";
- }
-
- #region 手动干预
- /// <summary>
- /// 修改轮廓
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void btnLunkuo_Click(object sender, EventArgs e)
- {
- isLunKuo = true;
- isAddKong = false;
- isDelKong = false;
- isDrwKuo = false;
- //DrwDone = false;
- }
- /// <summary>
- /// 添加孔隙
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void btnAddKong_Click(object sender, EventArgs e)
- {
- isLunKuo = false;
- isAddKong = true;
- isDelKong = false;
- isDrwKuo = false;
- //DrwDone = false;
- }
- /// <summary>
- /// 删除孔隙
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void btnDelKong_Click(object sender, EventArgs e)
- {
- isLunKuo = false;
- isAddKong = false;
- isDelKong = true;
- isDrwKuo = false;
- //DrwDone = false;
- }
- /// <summary>
- /// 绘制轮廓
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void btnDrwKuo_Click(object sender, EventArgs e)
- {
- isLunKuo = false;
- isAddKong = false;
- isDelKong = false;
- isDrwKuo = true;
- DrwDone = true;
- }
- /// <summary>
- /// 重新统计
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void btnReDrw_Click(object sender, EventArgs e)
- {
- if (pointList.Count > 1)
- {
- List<PointF> pointFs = new List<PointF>(pointList.ToArray());
- lineList.Add(pointFs);
- pointList.Clear();
- }
- if (kongPointList.Count > 1)
- {
- List<PointF> pointFs = new List<PointF>(kongPointList.ToArray());
- kongLineList.Add(pointFs);
- kongPointList.Clear();
- }
- if (delPointList.Count > 1)
- {
- }
- List<List<int>> CircleDate = new List<List<int>>();
- if (DrwDone)
- {
- CircleDate = binaryClass.DrwLunKuoNew(lineList, kongLineList, delPointList);
- }
- else
- {
- CircleDate = binaryClass.DrwLunKuo(lineList, kongLineList, delPointList);
- }
- bindGrid(CircleDate);
- isLunKuo = false;
- isAddKong = false;
- isDelKong = false;
- isDrwKuo = false;
- // DrwDone = false;
- }
- /// <summary>
- /// 移动
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void onMouseMove(object sender, MouseEventArgs e)
- {
- //if (e.Button == MouseButtons.Left)
- //{
- if (isLunKuo)
- {
- int cou = pointList.Count;
- if (cou > 0)
- { // 换算后的点
- PointF movePoint = this.documentWorkspace.GetScalePoint(e.Location);
- pointList[cou - 1] = movePoint;
- }
- }
- if (isAddKong)
- {
- if (kongPointList.Count > 0)
- { // 换算后的点
- PointF movePoint = this.documentWorkspace.GetScalePoint(e.Location);
- kongPointList[kongPointList.Count - 1] = movePoint;
- }
- }
- if (isDelKong)
- {
- //if (delPointList.Count > 0)
- //{ // 换算后的点
- // PointF movePoint = this.documentWorkspace.GetScalePoint(e.Location);
- // delPointList[delPointList.Count - 1] = movePoint;
- //}
- }
- if (isDrwKuo)
- {
- int cou = pointList.Count;
- if (cou > 0)
- { // 换算后的点
- PointF movePoint = this.documentWorkspace.GetScalePoint(e.Location);
- pointList[cou - 1] = movePoint;
- }
- }
- this.documentWorkspace.Refresh();
- // }
- }
- /// <summary>
- /// 鼠标抬起
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void OnMouseUp(object sender, MouseEventArgs e)
- {
- }
- /// <summary>
- /// 鼠标按下
- /// </summary>
- /// <param name="drawArea"></param>
- /// <param name="e"></param>
- private void OnMouseDown(object sender, MouseEventArgs e)
- {
- PointF downPoint = this.documentWorkspace.GetScalePoint(e.Location);
- if (e.Button == MouseButtons.Left)
- {
- if (isLunKuo)
- {
- if (pointList.Count == 0)
- {
- pointList.Add(downPoint);
- pointList.Add(downPoint);
- }
- else
- {
- pointList.Add(downPoint);
- }
- }
- if (isAddKong)
- {
- if (kongPointList.Count == 0)
- {
- kongPointList.Add(downPoint);
- kongPointList.Add(downPoint);
- }
- else
- {
- kongPointList.Add(downPoint);
- }
- }
- if (isDelKong)
- {
- //if (delPointList.Count == 0)
- //{
- // delPointList.Add(downPoint);
- // delPointList.Add(downPoint);
- //}
- //else
- //{
- // delPointList.Add(downPoint);
- //}
- delPointList.Add(downPoint);
- List<List<int>> CircleDate = new List<List<int>>();
- if (DrwDone)
- {
- CircleDate = binaryClass.DrwLunKuoNew(lineList, kongLineList, delPointList);
- }
- else
- {
- binaryClass.DrwLunKuo(lineList, kongLineList, delPointList);
- }
- bindGrid(CircleDate);
- }
- if (isDrwKuo)
- {
- if (pointList.Count == 0)
- {
- pointList.Add(downPoint);
- pointList.Add(downPoint);
- }
- else
- {
- pointList.Add(downPoint);
- }
- }
- }
- if (e.Button == MouseButtons.Right)
- {
- if (isLunKuo)
- {
- if (pointList.Count > 2)
- {
- pointList.RemoveAt(pointList.Count - 1);
- List<PointF> pointFs = new List<PointF>(pointList.ToArray());
- lineList.Add(pointFs);
- }
- pointList.Clear();
- }
- if (isAddKong)
- {
- if (kongPointList.Count > 2)
- {
- kongPointList.RemoveAt(kongPointList.Count - 1);
- List<PointF> pointFs = new List<PointF>(kongPointList.ToArray());
- kongLineList.Add(pointFs);
- }
- kongPointList.Clear();
- }
- if (isDelKong)
- {
- //if (delPointList.Count > 2)
- //{
- // delPointList.RemoveAt(delPointList.Count - 1);
- // List<PointF> pointFs = new List<PointF>(delPointList.ToArray());
- // delLineList.Add(pointFs);
- //}
- //delPointList.Clear();
- }
- if (isDrwKuo)
- {
- if (pointList.Count > 2)
- {
- pointList.RemoveAt(pointList.Count - 1);
- List<PointF> pointFs = new List<PointF>(pointList.ToArray());
- lineList.Add(pointFs);
- }
- pointList.Clear();
- }
- isLunKuo = false;
- isAddKong = false;
- isDelKong = false;
- isDrwKuo = false;
- }
- }
- /// <summary>
- /// Ctrl+z
- /// </summary>
- private void OnKeyDown(object sender, KeyEventArgs e)
- {
- if (e.Control && e.KeyCode == Keys.Z)
- {
- if (isLunKuo)
- {
- int cou = pointList.Count;
- if (cou > 1)
- {
- if (cou == 2)
- {
- pointList.Clear();
- }
- else
- {
- pointList.RemoveAt(cou - 1);
- }
- }
- else if (lineList.Count > 0)
- {
- pointList = lineList[lineList.Count - 1];
- lineList.RemoveAt(lineList.Count - 1);
- pointList.RemoveAt(pointList.Count - 1);
- }
- }
- if (isAddKong)
- {
- int cou = kongPointList.Count;
- if (cou > 1)
- {
- if (cou == 2)
- {
- kongPointList.Clear();
- }
- else
- {
- kongPointList.RemoveAt(cou - 1);
- }
- }
- else if (kongLineList.Count > 0)
- {
- kongPointList = kongLineList[kongLineList.Count - 1];
- kongLineList.RemoveAt(kongLineList.Count - 1);
- kongPointList.RemoveAt(kongPointList.Count - 1);
- }
- }
- if (isDelKong)
- {
- int cou = delPointList.Count;
- if (cou > 0)
- {
- delPointList.RemoveAt(cou - 1);
- }
- List<List<int>> CircleDate = new List<List<int>>();
- if (DrwDone)
- {
- CircleDate = binaryClass.DrwLunKuoNew(lineList, kongLineList, delPointList);
- }
- else
- {
- binaryClass.DrwLunKuo(lineList, kongLineList, delPointList);
- }
- bindGrid(CircleDate);
- //if (cou > 1)
- //{
- // if (cou == 2)
- // {
- // delPointList.Clear();
- // }
- // else
- // {
- // delPointList.RemoveAt(cou - 1);
- // }
- //}
- //else if (delLineList.Count > 0)
- //{
- // delPointList = delLineList[delLineList.Count - 1];
- // delLineList.RemoveAt(delLineList.Count - 1);
- // delPointList.RemoveAt(delPointList.Count - 1);
- //}
- }
- this.documentWorkspace.Refresh();
- }
- }
- #endregion
- /// <summary>
- /// 导出孔隙信息
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button14_Click(object sender, EventArgs e)
- {
- SaveFileDialog exe = new SaveFileDialog();
- exe.Filter = "Execl files (*.xlsx)|*.xlsx";
- exe.FilterIndex = 0;
- exe.RestoreDirectory = true;
- //exe.CreatePrompt = true;
- exe.Title = "Export Excel File";
- exe.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
- exe.FileName = DateTime.Now.ToString("yyyyMMddhhmmss") + "孔隙信息";
- DialogResult dr = exe.ShowDialog();
- if (dr != DialogResult.OK)
- {
- return;
- }
- DataTable dtb = new DataTable();
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dtb.Columns.Add(c.HeaderText);
- }
- for (int r = 0; r < this.dataGridView4.Rows.Count; r++)
- {
- DataRow dataRow = dtb.NewRow();
- for (int c = 0; c < this.dataGridView4.Rows[r].Cells.Count; c++)
- {
- dataRow[this.dataGridView4.Columns[c].HeaderText] = (string)this.dataGridView4.Rows[r].Cells[c].Value.ToString();
- }
- dtb.Rows.Add(dataRow);
- //this.dataGridView4.Rows[r].Cells[1].Attributes.Add("style", "vnd.ms-excel.numberformat:@");
- }
- List<DataTable> list = new List<DataTable>();
- list.Add(dtb);
- this.appWorkspace.ExportDataToExcelWithProgress(list, exe.FileName, true, false, true);
- }
- /// <summary>
- /// 不可点击空白区域
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void listView1_MouseUp(object sender, MouseEventArgs e)
- {
- if (e.Button == MouseButtons.Left)
- {
- if (listView1.SelectedItems.Count > 0)
- {
- }
- else if (listView1.SelectedItems.Count <= 0)//点击空白区
- {
- if (this.listView1.FocusedItem != null)
- {
- ListViewItem item = this.listView1.GetItemAt(e.X, e.Y);
- if (item == null)
- {
- this.listView1.FocusedItem.Selected = true;
- }
- }
- }
- }
- }
- /// <summary>
- /// 生成孔隙率
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void button13_Click(object sender, EventArgs e)
- {
- //string path = string.Empty;
- //System.Windows.Forms.FolderBrowserDialog fbd = new System.Windows.Forms.FolderBrowserDialog();
- //fbd.Description = "请选择文件夹";
- //String str = System.Configuration.ConfigurationManager.AppSettings["FolderSelectedPath"];
- //if (!string.IsNullOrEmpty(str))
- //{
- // fbd.SelectedPath = str;
- //}
- //if (fbd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- //{
- // path = fbd.SelectedPath;
- // PrintReport(path);
- // Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
- // cfa.AppSettings.Settings["FolderSelectedPath"].Value = path;
- // cfa.Save();
- // System.Configuration.ConfigurationManager.RefreshSection("appSettings");
- //}
- string name = this.listView1.FocusedItem.Name.Split('.')[0] + "-";
- SaveFileDialog exe = new SaveFileDialog();
- exe.Filter = "Execl files (*.xlsx)|*.xlsx";
- exe.FilterIndex = 0;
- exe.RestoreDirectory = true;
- //exe.CreatePrompt = true;
- exe.Title = "Export Excel File";
- // exe.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
- exe.FileName = name;
- //String str = System.Configuration.ConfigurationManager.AppSettings["FolderSelectedPath"];
- DialogResult dr = exe.ShowDialog();
- if (dr != DialogResult.OK)
- {
- return;
- }
- DataTable dtb = new DataTable();
- foreach (DataGridViewColumn c in this.dataGridView1.Columns)
- {
- dtb.Columns.Add(c.HeaderText);
- }
- for (int r = 0; r < this.dataGridView1.Rows.Count; r++)
- {
- DataRow dataRow = dtb.NewRow();
- for (int c = 0; c < this.dataGridView1.Rows[r].Cells.Count; c++)
- {
- dataRow[this.dataGridView1.Columns[c].HeaderText] = (string)this.dataGridView1.Rows[r].Cells[c].Value.ToString();
- }
- dtb.Rows.Add(dataRow);
- //this.dataGridView4.Rows[r].Cells[1].Attributes.Add("style", "vnd.ms-excel.numberformat:@");
- }
- int index = exe.FileName.LastIndexOf('\\');
- List<DataTable> list = new List<DataTable>();
- list.Add(dtb);
- DataTable dtb1 = new DataTable();
- foreach (DataGridViewColumn c in this.dataGridView4.Columns)
- {
- dtb1.Columns.Add(c.HeaderText);
- }
- for (int r = 0; r < this.dataGridView4.Rows.Count; r++)
- {
- DataRow dataRow = dtb1.NewRow();
- for (int c = 0; c < this.dataGridView4.Rows[r].Cells.Count; c++)
- {
- dataRow[this.dataGridView4.Columns[c].HeaderText] = (string)this.dataGridView4.Rows[r].Cells[c].Value.ToString();
- }
- dtb1.Rows.Add(dataRow);
- //this.dataGridView4.Rows[r].Cells[1].Attributes.Add("style", "vnd.ms-excel.numberformat:@");
- }
- list.Add(dtb1);
- //保存处理后的图片
- double pantographRatio = (double)this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRulerMultiple(MeasurementUnit.Micron);//标尺*放大倍数
- List<Bitmap> tempBit = new List<Bitmap>();
- Bitmap originalBit = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].CompositionSurface.CreateAliasedBitmap();
- originalBit.Tag = pantographRatio;
- tempBit.Add(originalBit);
- Bitmap processedBit = OpenCvSharp.Extensions.BitmapConverter.ToBitmap(this.documentWorkspace.PhaseModels[0].mat);
- Bitmap newBit = originalBit.Clone(new Rectangle(0, 0, originalBit.Width, originalBit.Height), originalBit.PixelFormat);
- Graphics graphics = Graphics.FromImage(newBit);
- graphics.DrawImage(processedBit, new PointF(0, 0));
- Draw(graphics);
- newBit.Tag = pantographRatio;
- tempBit.Add(newBit);
- string GR_Path = exe.FileName.Remove(index) + "\\" + name + ".jpg";
- newBit.Save(GR_Path);
- this.appWorkspace.ExportDataToExcelWithProgress(list, exe.FileName, true, false, true);
- }
- /// <summary>
- /// 导出报告
- /// </summary>
- private void PrintReport(string savePath)
- {
- List<List<string>> analysisContent = new List<List<string>>();
- for (int i = 0; i < this.dataGridView1.Rows.Count; i++)
- {
- List<string> content1 = new List<string>();
- if (i == 0)
- {
- content1.Add(this.dataGridView1.Columns[0].HeaderText);
- content1.Add(this.dataGridView1.Columns[1].HeaderText);
- content1.Add(this.dataGridView1.Columns[2].HeaderText);
- analysisContent.Add(content1);
- }
- content1 = new List<string>();
- content1.Add(this.dataGridView1.Rows[i].Cells[0].Value.ToString());
- content1.Add(this.dataGridView1.Rows[i].Cells[1].Value.ToString());
- content1.Add(this.dataGridView1.Rows[i].Cells[2].Value.ToString());
- analysisContent.Add(content1);
- }
- List<string> content2 = new List<string>();
- analysisContent.Add(content2);
- for (int i = 0; i < this.dataGridView4.Rows.Count; i++)
- {
- List<string> content1 = new List<string>();
- if (i == 0)
- {
- content1.Add(this.dataGridView4.Columns[0].HeaderText);
- content1.Add(this.dataGridView4.Columns[1].HeaderText);
- content1.Add(this.dataGridView4.Columns[2].HeaderText);
- content1.Add(this.dataGridView4.Columns[3].HeaderText);
- content1.Add(this.dataGridView4.Columns[4].HeaderText);
- content1.Add(this.dataGridView4.Columns[5].HeaderText);
- content1.Add(this.dataGridView4.Columns[6].HeaderText);
- analysisContent.Add(content1);
- }
- content1 = new List<string>();
- content1.Add(this.dataGridView4.Rows[i].Cells[0].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[1].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[2].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[3].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[4].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[5].Value.ToString());
- content1.Add(this.dataGridView4.Rows[i].Cells[6].Value.ToString());
- analysisContent.Add(content1);
- }
- //保存处理后的图片
- double pantographRatio = (double)this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].GetRulerMultiple(MeasurementUnit.Micron);//标尺*放大倍数
- List<Bitmap> tempBit = new List<Bitmap>();
- Bitmap originalBit = this.appWorkspace.DocumentWorkspaces[this.listView1.FocusedItem.Index].CompositionSurface.CreateAliasedBitmap();
- originalBit.Tag = pantographRatio;
- tempBit.Add(originalBit);
- Bitmap processedBit = OpenCvSharp.Extensions.BitmapConverter.ToBitmap(this.documentWorkspace.PhaseModels[0].mat);
- Bitmap newBit = originalBit.Clone(new Rectangle(0, 0, originalBit.Width, originalBit.Height), originalBit.PixelFormat);
- Graphics graphics = Graphics.FromImage(newBit);
- graphics.DrawImage(processedBit, new PointF(0, 0));
- Draw(graphics);
- newBit.Tag = pantographRatio;
- tempBit.Add(newBit);
- List<Bitmap> bitList = new List<Bitmap>();
- bitList.Add(tempBit[0]);
- bitList.Add(tempBit[1]);
- Dictionary<string, string> tagInfos = new Dictionary<string, string>();
- // this.analyzeSettingModel.analyzeClassify
- AnalyzeSettingModel model = new AnalyzeSettingModel();
- string filePath = Application.StartupPath + "\\ModuleManage\\Dedicated\\MicrostructureBand_ASTME1268\\截面孔隙.docx";//获取文档路径
- string filePath2 = "E:\\图形处理\\Metisvision20210204\\RBDC\\Metisvision\\bin\\Debug\\ModuleManage\\Dedicated\\MicrostructureBand_ASTME1268\\截面孔隙.docx";
- model.modulePath = filePath;
- model.savePath = savePath;
- //model.itemNumber = this.textBox2.Text;
- //model.ratingDate = this.dateTimePicker1.Value;
- //model.inspectionPerson = this.textBox4.Text;
- model.contact = "";
- //model.inspectionDepartment = this.textBox5.Text;
- //model.inspectionDate = this.dateTimePicker2.Value;
- string name = this.listView1.FocusedItem.Name.Split('.')[0];
- model.analyzeClassify = name;
- this.analyzeSettingModel = new AnalyzeSettingModel();
- //this.analyzeSettingModel.modelItems = new List<AnalyzeSavedModel.ModelItem>();
- //this.analyzeSettingModel = new AnalyzeSavedModel.ModelItem();
- //this.analyzeSettingModel.languageName = this.languageName;
- this.analyzeSettingModel = model;
- //this.analyzeSettingModel.modelItems.Add(analyzeModel);
- this.appWorkspace.CreateAnalysisReport(this.analyzeSettingModel, analysisContent, bitList, tagInfos);
- }
- /// 导出图片
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void btnImageOut_Click(object sender, EventArgs e)
- {
- SaveFileDialog exe = new SaveFileDialog();
- exe.Filter = "Image Files (*.jpg)|*.jpg";
- exe.FilterIndex = 0;
- exe.RestoreDirectory = true;
- //exe.CreatePrompt = true;
- exe.Title = "Image Files";
- exe.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
- exe.FileName = DateTime.Now.ToString("yyyyMMddhhmmss") + "孔隙率";
- DialogResult dr = exe.ShowDialog();
- if (dr != DialogResult.OK)
- {
- return;
- }
- Mat mat = binaryClass.MargMat();
- if (Cv2.ImWrite(exe.FileName, mat))
- {
- MessageBox.Show("保存成功!");
- }
- //List<DataTable> list = new List<DataTable>();
- //list.Add(dtb);
- //this.appWorkspace.ExportDataToExcelWithProgress(list, exe.FileName, true, false, true);
- }
- /// <summary>
- /// 准备用来处理单个颗粒的选中事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void dataGridView4_CellClick(object sender, DataGridViewCellEventArgs e)
- {
- //当点击表头部的列时,e.RowIndex==-1
- if (e.RowIndex > -1)
- {
- int index = Convert.ToInt32(dataGridView4.Rows[e.RowIndex].Cells[6].Value);
- int x = Convert.ToInt32(dataGridView4.Rows[e.RowIndex].Cells[0].Value);
- int y = Convert.ToInt32(dataGridView4.Rows[e.RowIndex].Cells[1].Value);
- PointF select = new PointF() { X = x, Y = y };
- binaryClass.MembranesSel(index);
- // binaryClass.DrwLunKuoLie1Selected(select);
- this.documentWorkspace.Refresh();
- }
- }
- #region 内部类
- internal class LocalListViewItem
- {
- public DocumentWorkspace Value { get; }
- public string Display { get; }
- public LocalListViewItem(DocumentWorkspace Value, string Display)
- {
- this.Value = Value;
- this.Display = Display;
- }
- }
- internal class DocumentItem
- {
- public Bitmap bitmap;
- public GraphicsList graphicsList;
- public List<PhaseModel> phaseModels;
- //public AnalysisResult analysisResult;
- public DocumentItem(Bitmap bitmap, GraphicsList graphicsList, List<PhaseModel> phaseModels)
- {
- this.bitmap = bitmap;
- this.graphicsList = graphicsList;
- this.phaseModels = phaseModels;
- }
- }
- #endregion
- #endregion
- }
- }
|