Exemplo n.º 1
0
        private static List <SplittedImageRegion> SplitImageRegions(SplittedImageRegion splittedImageRegion)
        {
            List <SplittedImageRegion> splittedImageRegions = new List <SplittedImageRegion>();

            if (splittedImageRegion.IsRegionUniform)
            {
                splittedImageRegions.Add(splittedImageRegion);
            }
            else
            {
                Bitmap mask             = splittedImageRegion.Mask;
                int    height           = splittedImageRegion.Height;
                int    width            = splittedImageRegion.Width;
                int    halfHeight       = height / 2;
                int    halfWidth        = width / 2;
                int    x                = splittedImageRegion.X;
                int    y                = splittedImageRegion.Y;
                int    splitPixelsRange = splittedImageRegion.SplitPixelsRange;
                splittedImageRegions.AddRange(SplitImageRegions(new SplittedImageRegion(GetPartOfBitmap(mask, 0, 0, halfWidth, halfHeight), x, y, splitPixelsRange)));
                splittedImageRegions.AddRange(SplitImageRegions(new SplittedImageRegion(GetPartOfBitmap(mask, halfWidth, 0, halfWidth, halfHeight), x + halfWidth, y, splitPixelsRange)));
                splittedImageRegions.AddRange(SplitImageRegions(new SplittedImageRegion(GetPartOfBitmap(mask, 0, halfHeight, halfWidth, halfHeight), x, y + halfHeight, splitPixelsRange)));
                splittedImageRegions.AddRange(SplitImageRegions(new SplittedImageRegion(GetPartOfBitmap(mask, halfWidth, halfHeight, halfWidth, halfHeight), x + halfWidth, y + halfHeight, splitPixelsRange)));
            }
            return(splittedImageRegions);
        }
Exemplo n.º 2
0
 private static bool AreImageRegionsInNeighborhood(SplittedImageRegion ir1, SplittedImageRegion ir2)
 {
     if ((ir1.X == ir2.X + ir2.Width) || (ir1.X + ir1.Width == ir2.X))
     {
         if ((ir1.Y + ir1.Height >= ir2.Y && ir1.Y <= ir2.Y) || (ir1.Y + ir1.Height >= ir2.Y + ir2.Height && ir1.Y <= ir2.Y + ir2.Height))
         {
             return(true);
         }
         if ((ir2.Y + ir2.Height >= ir1.Y && ir2.Y <= ir1.Y) || (ir2.Y + ir2.Height >= ir1.Y + ir1.Height && ir2.Y <= ir1.Y + ir1.Height))
         {
             return(true);
         }
     }
     if ((ir1.Y == ir2.Y + ir2.Height) || (ir1.Y + ir1.Height == ir2.Y))
     {
         if ((ir1.X + ir1.Width >= ir2.X && ir1.X <= ir2.X) || (ir1.X + ir1.Width >= ir2.X + ir2.Width && ir1.X <= ir2.X + ir2.Width))
         {
             return(true);
         }
         if ((ir2.X + ir2.Width >= ir1.X && ir2.X <= ir1.X) || (ir2.X + ir2.Width >= ir1.X + ir1.Width && ir2.X <= ir1.X + ir1.Width))
         {
             return(true);
         }
     }
     return(false);
 }
Exemplo n.º 3
0
        public static List <RegionMask> SplitAndMergeImageRegions(Bitmap image, int splitPixelsRange, int mergePixelsRange)
        {
            List <SplittedImageRegion> splittedRegions = SplittedImageRegion.SplitImageRegions(image, splitPixelsRange);
            List <ImageRegion>         imageRegions    = ImageRegion.MergeImageRegions(splittedRegions, mergePixelsRange);
            List <RegionMask>          regionMasks     = new List <RegionMask>();

            for (int i = 0; i < imageRegions.Count; i++)
            {
                regionMasks.Add(new RegionMask(imageRegions[i], image.Width, image.Height, i + 1));
            }
            return(regionMasks);
        }
Exemplo n.º 4
0
        public static List <ImageRegion> MergeImageRegions(List <SplittedImageRegion> splittedImageRegions, int mergePixelsRange)
        {
            List <ImageRegion> regions = new List <ImageRegion>();

            while (splittedImageRegions.Count > 0)
            {
                SplittedImageRegion splittedImageRegion = splittedImageRegions[0];
                ImageRegion         imageRegion         = new ImageRegion(splittedImageRegion);
                splittedImageRegions.Remove(splittedImageRegion);

                // Finding neighboors for base region
                for (int i = 0; i < splittedImageRegions.Count; i++)
                {
                    if (AreImageRegionsInNeighborhood(splittedImageRegion, splittedImageRegions[i]) && AreImageRegionsUniform(splittedImageRegion, splittedImageRegions[i], mergePixelsRange))
                    {
                        SplittedImageRegion neighboor = splittedImageRegions[i];
                        imageRegion.Neighboors.Add(neighboor);
                        splittedImageRegions.Remove(neighboor);
                        i--;
                    }
                }

                // Finding neighboors for neighboors
                bool foundNextNeighboor;
                int  lastCount = 0;
                do
                {
                    foundNextNeighboor = false;
                    int first = lastCount;
                    lastCount = imageRegion.Neighboors.Count;

                    for (int i = first; i < lastCount; i++)
                    {
                        for (int j = 0; j < splittedImageRegions.Count; j++)
                        {
                            if (AreImageRegionsInNeighborhood(imageRegion.Neighboors[i], splittedImageRegions[j]) && AreImageRegionsUniform(splittedImageRegion, splittedImageRegions[j], mergePixelsRange))
                            {
                                SplittedImageRegion neighboor = splittedImageRegions[j];
                                imageRegion.Neighboors.Add(neighboor);
                                splittedImageRegions.Remove(neighboor);
                                j--;
                                foundNextNeighboor = true;
                            }
                        }
                    }
                } while (foundNextNeighboor);

                regions.Add(imageRegion);
            }
            return(regions);
        }
Exemplo n.º 5
0
 private static bool AreImageRegionsUniform(SplittedImageRegion ir1, SplittedImageRegion ir2, int mergePixelsRange)
 {
     return(ir1.MaxR - ir2.MinR <= mergePixelsRange && ir2.MaxR - ir1.MinR <= mergePixelsRange &&
            ir1.MaxG - ir2.MinG <= mergePixelsRange && ir2.MaxG - ir1.MinG <= mergePixelsRange &&
            ir1.MaxB - ir2.MinB <= mergePixelsRange && ir2.MaxB - ir1.MinB <= mergePixelsRange);
 }
Exemplo n.º 6
0
 private ImageRegion(SplittedImageRegion splittedImageRegion)
 {
     this.BaseRegion = splittedImageRegion;
 }