Skip to content

Instantly share code, notes, and snippets.

@follesoe
follesoe / PhotoCameraLuminanceSource.cs
Created July 22, 2011 01:29
PhotoCameraLuminanceSource
public class PhotoCameraLuminanceSource : LuminanceSource
{
public byte[] PreviewBufferY { get; private set; }
public PhotoCameraLuminanceSource(int width, int height) : base(width, height)
{
PreviewBufferY = new byte[width * height];
}
public override sbyte[] Matrix