Skip to content

Commit

Permalink
コマンドラインオプションでノイズ除去レベル0が指定できなかったバグを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
lltcggie committed Jul 11, 2016
1 parent c6ee2dd commit 0a83912
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions waifu2x-caffe-gui/MainDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2015,6 +2015,7 @@ void DialogEvent::Create(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData)
false, L"noise_scale", &cmdModeConstraint, cmd);

std::vector<int> cmdNRLConstraintV;
cmdNRLConstraintV.push_back(0);
cmdNRLConstraintV.push_back(1);
cmdNRLConstraintV.push_back(2);
cmdNRLConstraintV.push_back(3);
Expand Down
1 change: 1 addition & 0 deletions waifu2x-caffe/Source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ int main(int argc, char** argv)
false, "noise_scale", &cmdModeConstraint, cmd);

std::vector<int> cmdNRLConstraintV;
cmdNRLConstraintV.push_back(0);
cmdNRLConstraintV.push_back(1);
cmdNRLConstraintV.push_back(2);
cmdNRLConstraintV.push_back(3);
Expand Down

0 comments on commit 0a83912

Please sign in to comment.