Commit 4f9e1a9a authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #6249 from sturkmen72:patch-15

parents cc3433f3 826b5a2e
...@@ -960,7 +960,7 @@ void LDA::save(const String& filename) const ...@@ -960,7 +960,7 @@ void LDA::save(const String& filename) const
void LDA::load(const String& filename) { void LDA::load(const String& filename) {
FileStorage fs(filename, FileStorage::READ); FileStorage fs(filename, FileStorage::READ);
if (!fs.isOpened()) if (!fs.isOpened())
CV_Error(Error::StsError, "File can't be opened for writing!"); CV_Error(Error::StsError, "File can't be opened for reading!");
this->load(fs); this->load(fs);
fs.release(); fs.release();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment