File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020### Removed
2121
2222- Removed option to create top level of every octave from input image [ PR] ( https://github.com/alicevision/popsift/pull/178 )
23- - Removed option to compute very narrow Gaussian filters called opencv [ PR]
23+ - Removed option to compute very narrow Gaussian filters called opencv [ PR] ( https://github.com/alicevision/popsift/pull/179 )
2424
2525## [ 0.10.0] - 2025-10-14
2626
Original file line number Diff line number Diff line change @@ -115,7 +115,10 @@ void Config::setGaussMode( const std::string& m )
115115 setGaussMode ( Config::Fixed9 );
116116 else if ( m == " fixed15" )
117117 setGaussMode ( Config::Fixed15 );
118- else
118+ else if ( m == " opencv" ) {
119+ POP_WARN ( string (" Gauss mode 'opencv' has been deprecated. Using mode vlfeat instead.\n " ) );
120+ setGaussMode ( Config::VLFeat_Compute );
121+ } else
119122 POP_FATAL ( string (" Bad Gauss mode.\n " ) + getGaussModeUsage () );
120123}
121124
You can’t perform that action at this time.
0 commit comments