Example #1
0
        public int AddToImages(ColorRoutines.FormHSI frm)
        {
            int index = lstImages.Items.Add(frm);

            lstImages.SelectedIndex = index;
            return(index);
        }
Example #2
0
        public IOperand CreateSibling(float[][][] sourceImage, String description)    // like a clone with new content
        {
            FormHSI frm;
            Bitmap  image = Normalize.FromFloat(sourceImage);

            frm = new FormHSI(image, myParent);

            frm.Show();

            myParent.AddToImages(frm);
            return(frm);
        }