From d9fab5ff04b249527722fbd0507ae9a8a347d7c9 Mon Sep 17 00:00:00 2001 From: Scott Klum Date: Wed, 1 Oct 2014 11:10:00 -0400 Subject: [PATCH] Fixed some nn comments --- openbr/plugins/nn.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbr/plugins/nn.cpp b/openbr/plugins/nn.cpp index 3185635..ff797ec 100644 --- a/openbr/plugins/nn.cpp +++ b/openbr/plugins/nn.cpp @@ -20,7 +20,7 @@ static void storeMLP(const CvANN_MLP &mlp, QDataStream &stream) tempFile.open(); tempFile.close(); - // Save SVM to local file + // Save MLP to local file mlp.save(qPrintable(tempFile.fileName())); // Copy local file contents to stream @@ -42,7 +42,7 @@ static void loadMLP(CvANN_MLP &mlp, QDataStream &stream) tempFile.write(data); tempFile.close(); - // Load SVM from local file + // Load MLP from local file mlp.load(qPrintable(tempFile.fileName())); } -- libgit2 0.21.4