コード例 #1
0
        private void сохранитьПроектToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Bitmap res = Utils.UnionOfImages(GetCorrectedPoints(), trbToleranceLimit.Value, _images);
            byte[,,] union = Utils.BitmapToByteRgb(res);

            CullingProject cullingProject = new CullingProject(tbNameOfProject.Text, rtbDescription.Text, union, _keyPoints, _offset, trbToleranceLimit.Value);
            cullingProject.SaveObject();
        }