using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using CvBase;
using HalconDotNet;
using CWindowTool;
using System.Diagnostics;
namespace CvImageTool
{
public partial class DataCodeForm : Form
{
private int ProcessIndex { set; get; }
private int ImageOptIndex { set; get; }
private string Description { set; get; }
private DataCodeTool dataCodeTool;
private List<BaseProcess> processes;
private CWindows[] cCWindows;
public DataCodeForm()
{
InitializeComponent();
}
public DataCodeForm(int processIndex, int imageOptIndex,
string cProcessSettingFilePath, string cImageOptSettingFilePath, string cDescription,
List<BaseProcess> baseProcesses, CWindows[] cWindows)
{
this.StartPosition = FormStartPosition.CenterParent;
InitializeComponent();
this.ProcessIndex = processIndex;
this.ImageOptIndex = imageOptIndex;
this.Description = cDescription;
this.processes = baseProcesses;
this.cCWindows = cWindows;
dataCodeTool = new DataCodeTool(processIndex, imageOptIndex, cProcessSettingFilePath, cImageOptSettingFilePath, processes, cWindows);
}
private void DataCodeForm_Load(object sender, EventArgs e)
{
this.Text = processes[ProcessIndex].Name + "#" + Description;
Image_OptNameCMBox.Items.Clear();
Image_OptNameCMBox.Items.Add("相机");
Matrix_OptNameCMBox.Items.Clear();
for (int i = 0; i < ImageOptIndex; i++)
{
string cDes = processes[ProcessIndex].BaseImageOpts[i].Description;
Image_OptNameCMBox.Items.Add(cDes);
Matrix_OptNameCMBox.Items.Add(cDes);
}
if (dataCodeTool.ReadFile(Description))
{
string[] values = dataCodeTool.imageSelect.Split('_');
if (values.Length == 2)
{
Image_OptNameCMBox.Text = values[0];
Image_ParamNameCMBox.Text = values[1];
}
else if (values.Length == 1)
{
Image_OptNameCMBox.Text = values[0];
}
values = dataCodeTool.affinMatrixSelect.Split('_');
if (values.Length == 2)
{
Matrix_OptNameCMBox.Text = values[0];
Matrix_ParamNameCMBox.Text = values[1];
}
else if (values.Length == 1)
{
Matrix_OptNameCMBox.Text = values[0];
}
}
propertyGrid1.SelectedObject = dataCodeTool.dataCodeParam;
ShowDataCodeCBox.Checked = dataCodeTool.isShowDataCode;
ShowROICBox.Checked = dataCodeTool.isShowROI;
ShowDataCodeRegionCBox.Checked = dataCodeTool.isShowDataCodeRegion;
if (dataCodeTool.dataCodeParam.ROIStartRow != dataCodeTool.dataCodeParam.ROIEndRow &&
dataCodeTool.dataCodeParam.ROIStartColumn != dataCodeTool.dataCodeParam.ROIEndColumn)
{
cWindows1.ADrawROI2d.VR._LeftX = dataCodeTool.dataCodeParam.ROIStartColumn;
cWindows1.ADrawROI2d.VR._LeftY = dataCodeTool.dataCodeParam.ROIStartRow;
cWindows1.ADrawROI2d.VR._RightX = dataCodeTool.dataCodeParam.ROIEndColumn;
cWindows1.ADrawROI2d.VR._RightY = dataCodeTool.dataCodeParam.ROIEndRow;
}
if (cCWindows[ProcessIndex].AImage2d != null)
{
//HOperatorSet.CopyObj(cCWindows[ProcessIndex].AImage2d, out HObject objectsSelected, 1, 1);
//cWindows1.AImage2d = objectsSelected;
cWindows1.AImage2d = cCWindows[ProcessIndex].AImage2d;
}
InitCWImage();
cWindows1.ADisplay();
}
private void InitCWImage()
{
#region 界面图像初始化
string[] imageSelects = dataCodeTool.imageSelect.Split('_');
if (imageSelects.Length != 2) return;
if (imageSelects[0] == "相机")
{
if (imageSelects[1] == "灰度图")
cWindows1.AImage2d = processes[ProcessIndex].ImageGray;
else
cWindows1.AImage2d = processes[ProcessIndex].ImageHeight;
}
else
{
ProcessTool.Instance.FindImageOpt(processes[ProcessIndex], imageSelects[0], out BaseImageOpt paramByImageOpt1, out int paramByImageOptIndex1);
if (paramByImageOptIndex1 >= 0)
{
processes[ProcessIndex].BaseImageOutParams[paramByImageOptIndex1].GetHObjectValue(imageSelects[1], out HObject value);
cWindows1.AImage2d = value;
}
}
#endregion
}
private void Image_OptNameCMBox_SelectedIndexChanged(object sender, EventArgs e)
{
if (Image_OptNameCMBox.SelectedIndex > 0)
{
Image_ParamNameCMBox.Items.Clear();
foreach (string value in processes[ProcessIndex].BaseImageOutParams[Image_OptNameCMBox.SelectedIndex - 1].OutputHObjectNames)
Image_ParamNameCMBox.Items.Add(value);
}
else if (Image_OptNameCMBox.SelectedIndex == 0)
{
Image_ParamNameCMBox.Items.Clear();
Image_ParamNameCMBox.Items.Add("灰度图");
Image_ParamNameCMBox.Items.Add("深度图");
}
else
{
Image_ParamNameCMBox.Items.Clear();
}
}
private void Matrix_OptNameCMBox_SelectedIndexChanged(object sender, EventArgs e)
{
if (Matrix_OptNameCMBox.SelectedIndex >= 0)
{
Matrix_ParamNameCMBox.Items.Clear();
foreach (string value in processes[ProcessIndex].BaseImageOutParams[Matrix_OptNameCMBox.SelectedIndex].OutputHTupleNames)
Matrix_ParamNameCMBox.Items.Add(value);
}
}
private void SaveROIBtn_Click(object sender, EventArgs e)
{
cWindows1.ADrawROI2d.ROIValue();
dataCodeTool.dataCodeParam.ROIStartColumn = cWindows1.ADrawROI2d.VR._LeftX;
dataCodeTool.dataCodeParam.ROIStartRow = cWindows1.ADrawROI2d.VR._LeftY;
dataCodeTool.dataCodeParam.ROIEndColumn = cWindows1.ADrawROI2d.VR._RightX;
dataCodeTool.dataCodeParam.ROIEndRow = cWindows1.ADrawROI2d.VR._RightY;
dataCodeTool.WriteFile(Description);
}
private void SaveBtn_Click(object sender, EventArgs e)
{
dataCodeTool.imageSelect = Image_OptNameCMBox.Text + "_" + Image_ParamNameCMBox.Text;
dataCodeTool.affinMatrixSelect = Matrix_OptNameCMBox.Text + "_" + Matrix_ParamNameCMBox.Text;
dataCodeTool.isShowDataCode = ShowDataCodeCBox.Checked;
dataCodeTool.isShowDataCodeRegion = ShowDataCodeRegionCBox.Checked;
dataCodeTool.isShowROI = ShowROICBox.Checked;
dataCodeTool.dataCodeParam = propertyGrid1.SelectedObject as DataCodeParam;
dataCodeTool.WriteFile(Description);
}
private void TestBtn_Click(object sender, EventArgs e)
{
InitCWImage();
dataCodeTool.Image = cWindows1.AImage2d;
cWindows1.ADispose();
dataGridView1.Rows.Clear();
dataGridView1.Rows.Add(1);
Stopwatch sw = new Stopwatch();
sw.Start();
dataCodeTool.Running(out HObject ROI, out HObject resultRegion, out HTuple code);
sw.Stop();
label3.Text = "总计运行时间:" + sw.ElapsedMilliseconds;
if (ShowROICBox.Checked)
{
CObject cObject = new CObject();
cObject._Color = "blue";
cObject._Draw = false;
cObject._Object = ROI;
cWindows1.AObject.Add(cObject);
}
if (code.Length > 0)
{
if (ShowDataCodeCBox.Checked)
{
CText cText01 = new CText();
cText01._Text = "Code:" + code.ToString();
cText01._X = 100;
cText01._Y = 100;
cText01._Color = "blue";
cWindows1.AText.Add(cText01);
}
if (ShowDataCodeRegionCBox.Checked)
{
CObject cObject = new CObject();
cObject._Color = "green";
cObject._Draw = false;
cObject._Object = resultRegion;
cWindows1.AObject.Add(cObject);
}
dataGridView1.Rows[0].Cells[0].Value = code.ToString();
}
cWindows1.ADisplay();
}
}
}