C3204
2026-01-13 510dc693e91b291f36667088f47923591d25c98f
LB_VisionProcesses/Alogrithms/BaseAlgorithm/TestTool/TestToolEdit.cs
@@ -179,17 +179,13 @@
                {
                    if (Subject.OutputImage is Mat)
                    {
                        using (HImage image = TAlgorithm.Mat2HObject((Mat)Subject.OutputImage))
                        {
                            recordImageHSmartWindowControl.ShowHoImage(image);
                        }
                        TAlgorithm.Mat2HObject((Mat)Subject.OutputImage, out HObject image);
                        recordImageHSmartWindowControl.ShowHoImage(image);
                    }
                    else if (Subject.OutputImage is Bitmap)
                    {
                        using (HImage image = TAlgorithm.Bitmap2HObject((Bitmap)Subject.OutputImage))
                        {
                            recordImageHSmartWindowControl.ShowHoImage(image);
                        }
                        TAlgorithm.Bitmap2HObject((Bitmap)Subject.OutputImage, out HObject image);
                        recordImageHSmartWindowControl.ShowHoImage(image);
                    }
                    else if (Subject.OutputImage is HObject)
                    {