CUI版のノイズ除去レベルのデフォルト値も0に変更

This commit is contained in:
lltcggie 2016-07-11 00:33:52 +09:00
parent a1f5ec8182
commit 406d5d2161

View File

@ -96,7 +96,7 @@ int main(int argc, char** argv)
cmdNRLConstraintV.push_back(3);
TCLAP::ValuesConstraint<int> cmdNRLConstraint(cmdNRLConstraintV);
TCLAP::ValueArg<int> cmdNRLevel("n", "noise_level", "noise reduction level",
false, 1, &cmdNRLConstraint, cmd);
false, 0, &cmdNRLConstraint, cmd);
TCLAP::ValueArg<double> cmdScaleRatio("s", "scale_ratio",
"custom scale ratio", false, 2.0, "double", cmd);