private string GetRecognizedClass() { var inputVectorForBSW = Preprocessing.GetInputVectorFromShapeFeatures(currentShapeFeatures); try { return(bswNeuralNetwork.PredictClass(inputVectorForBSW)); } catch (Exception) { return("Unknown"); } }