Ejemplo n.º 1
0
        //ExStart:FillInputPoints
        private static void FillInputPoints(string filePath, AutoMaskingArgs autoMaskingArgs)
        {
            BinaryFormatter serializer = new BinaryFormatter();

            using (Stream stream = File.OpenRead(filePath))
            {
                bool hasObjectRectangles = (bool)serializer.Deserialize(stream);
                bool hasObjectPoints     = (bool)serializer.Deserialize(stream);
                autoMaskingArgs.ObjectsRectangles = null;
                autoMaskingArgs.ObjectsPoints     = null;

                if (hasObjectRectangles)
                {
                    autoMaskingArgs.ObjectsRectangles = ((System.Drawing.Rectangle[])serializer.Deserialize(stream))
                                                        .Select(rect => new Aspose.Imaging.Rectangle(rect.X, rect.Y, rect.Width, rect.Height))
                                                        .ToArray();
                }

                if (hasObjectPoints)
                {
                    autoMaskingArgs.ObjectsPoints = ((System.Drawing.Point[][])serializer.Deserialize(stream))
                                                    .Select(pointArray => pointArray
                                                            .Select(point => new Aspose.Imaging.Point(point.X, point.Y))
                                                            .ToArray())
                                                    .ToArray();
                }
            }
        }
Ejemplo n.º 2
0
        public static void Run()
        {
            Console.WriteLine("Running example AutoImageMasking");
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_ModifyingAndConvertingImages();

            string          sourceFileName      = dataDir + "Colored by Faith_small.png";
            string          inputPointsFileName = dataDir + "Colored by Faith_small.dat";
            AutoMaskingArgs maskingArgs         = new AutoMaskingArgs();

            FillInputPoints(inputPointsFileName, maskingArgs);
            string outputFileName = dataDir + "Colored by Faith_small_auto.png";

            using (RasterImage image = (RasterImage)Image.Load(sourceFileName))
            {
                MaskingOptions maskingOptions = new MaskingOptions()
                {
                    Method        = SegmentationMethod.GraphCut,
                    Args          = maskingArgs,
                    Decompose     = false,
                    ExportOptions =
                        new PngOptions()
                    {
                        ColorType = PngColorType.TruecolorWithAlpha,
                        Source    = new StreamSource(new MemoryStream())
                    },
                };
                MaskingResult[] maskingResults = new ImageMasking(image).Decompose(maskingOptions);
                using (Image resultImage = maskingResults[1].GetImage())
                {
                    resultImage.Save(outputFileName);
                }
            }

            Console.WriteLine("Finished example AutoImageMasking");
        }