We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 880f878 commit aea21c7Copy full SHA for aea21c7
src/popsift/sift_conf.cu
@@ -115,7 +115,10 @@ void Config::setGaussMode( const std::string& m )
115
setGaussMode( Config::Fixed9 );
116
else if( m == "fixed15" )
117
setGaussMode( Config::Fixed15 );
118
- else
+ 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
122
POP_FATAL( string("Bad Gauss mode.\n") + getGaussModeUsage() );
123
}
124
0 commit comments