Ejemplo n.º 1
0
        private string GetRecognizedClass()
        {
            var inputVectorForBSW = Preprocessing.GetInputVectorFromShapeFeatures(currentShapeFeatures);

            try
            {
                return(bswNeuralNetwork.PredictClass(inputVectorForBSW));
            }
            catch (Exception)
            {
                return("Unknown");
            }
        }