PixelRegion Class

Represents a region of pixels within a pixel array and contains metrics and helper methods for traversing them.

Namespace: Lumia.Imaging.Custom
Assembly: Lumia.Imaging.Managed (in Lumia.Imaging.Managed.dll) Version: 0.0.0.0

public class PixelRegion

pixelRegion.ForEachRow((index, width, pos) =>
{
    for (int x = 0; x < width; ++x, ++index)
    {
        targetPixels[index] = sourcePixels[index]; // Do nothing, just pass through the pixel.
    }
});

System.Object
  Lumia.Imaging.Custom.PixelRegion

Lumia Imaging SDK

Supported in: 2.0
Show: