From f21fadfa49309d7b4c6b1e417cd98c25bc6f0ebd Mon Sep 17 00:00:00 2001 From: Vincent Rabaud Date: Wed, 1 Jun 2011 03:26:08 +0000 Subject: [PATCH] - serialize/deserialize the edge threshold too --- modules/features2d/src/detectors.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/features2d/src/detectors.cpp b/modules/features2d/src/detectors.cpp index a1fa960e7..9c910fdb7 100644 --- a/modules/features2d/src/detectors.cpp +++ b/modules/features2d/src/detectors.cpp @@ -444,6 +444,7 @@ void ORB::CommonParams::read(const FileNode& fn) scale_factor_ = fn["scaleFactor"]; n_levels_ = int(fn["nLevels"]); first_level_ = int(fn["firsLevel"]); + edge_threshold_ = fn["edgeThreshold"]; patch_size_ = fn["patchSize"]; } @@ -452,6 +453,7 @@ void ORB::CommonParams::write(FileStorage& fs) const fs << "scaleFactor" << scale_factor_; fs << "nLevels" << int(n_levels_); fs << "firsLevel" << int(first_level_); + fs << "edgeThreshold" << int(edge_threshold_); fs << "patchSize" << int(patch_size_); }