1

Closed

GenericMarkerDetector

description

Implement a GenericMarkerDetector which is using the new IXrgbReader interface in his DetectAllMarkers(IXrgbReader) method:
 
interface IXrgbReader
{
int Width { get; }
int Height { get; }

int GetPixel(int, int);

// Get XRGB color for a set of x and y coordinates, only the RGB part will actually be used.
int[] GetPixels(int[], int[]);
 
int[] GetAllPixels();
}
Closed by

comments

teichgraf wrote Mar 9, 2010 at 8:20 PM

Fixed it in r44718