コード例 #1
0
        IPainting IRecognition.Recognize(PixelData pixels)
        {
            FastAI sequenceAI = new FastAI(ColorHelper.GetPixelDataBools(pixels));

            return(new Painting()
            {
                Lines = sequenceAI.Lines
            });
        }
コード例 #2
0
        public List <ILine> Recognize(PixelData pixels)
        {
            FastAI sequenceAI = new FastAI(ColorHelper.GetPixelDataBools(pixels));

            return(sequenceAI.Lines);
        }