Example #1
0
        private void OnPredictionsChanged(object sender, PredictionEventArgs e)
        {
            Console.WriteLine(e.Predictions.Count);

            predictions = e.Predictions;
            Device.BeginInvokeOnMainThread(() => canvasView.InvalidateSurface());
        }
 void opponentSeer_PopularDecksChanged(object sender, PredictionEventArgs e)
 {
     Overlay.UpdatePrediction(e.PotentialDecks);
 }
Example #3
0
 static void PredictionCaught(object sender, PredictionEventArgs e)
 {
     Console.WriteLine(String.Format("{0}\n{1} : {2}\n", e.PredictionResult.FilePath, e.PredictionResult.ClassName, e.PredictionResult.Proba));
 }