-
Notifications
You must be signed in to change notification settings - Fork 124
Fix/vlfeat compliance #112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
1e4d1df
[popsift] choosing a runtime between two descriptor printing mode
fa695d6
[bugfix] vlfeat compliance in orientation computation
608eac5
Merge branch 'develop' into fix/misalignBugOri
0b8fb18
[demo] print default values in usage
92f1846
[bug] corrected truncating in L2 normalization
a529cad
[bug] added reverse square root required by previous bugfix
a9ca694
[feature] VLFeat-compliant descriptor extraction
003e7ea
[popsift] cleanup
52c3cbe
[popsift] first parallelism in vlfeat descriptors
5c0256f
[bugfix] limit accepted orientations to histogram entries 0.8*max again
bf59959
[popsift] use 32 threads for each descriptor
d93b8e3
[popsift] commented extended option
9349547
[popsift] avoid a conflict between old and vlfeat orientation computa…
942aea1
[cleanup] remove histogram smoothing mode that was never used
aea885e
[cleanup] remove unused code
b7bbcd2
[popsift] move rotation compensation to descriptor extraction
b3f8434
Merge branch 'develop' into fix/vlfeatCompliance
e9ec403
[popsift] choose between orientation computation modes
cbf70d0
[bugfix] fix half-bin shift in Interpolated mode
2708e89
[popsift] minor range modification in orientation computation
bbc0e75
[doc] improved doc for enum DescMode
1ea511e
[doc] moved the Usage for the DescMode parameter to sift_conf.cu
6eeaee3
[doc] Integrating Config defaults into the Usage.
griwodz e370180
[popsift] added Config::getSigma()
5591c5b
[popsift] rotate orientation by 180deg in all older modes
6faa3f4
[test] draft comparison code
3cdc329
[popsift] remove circular limitation for descriptor in VLFeat mode
59a70c0
[popsift] avoid boost in libpopsift
1a54748
[test] updating descriptor file comparison
085694b
[testing] remove test file, prioritize main PR
3673a85
[popsift] shorter replace strcmp with string::op==
griwodz bd1c8ef
[popsift] add more Config::get* functions, improve usage
74f7053
[popsift] remove failed interpolating orientation code
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I take the proposed change. I wanted to go for strncmp, but Windows does apparently not have it, it has stricmp. And adding Boost just for this seemed like too much.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@simogasp It would be really preferable to use strcasecmp() for non-Windows and _stricmp() for Windows. The first requires inclusion of strings.h (at least on Linux and Mac) and the other string.h. The first one is a function, the second is a macro. I'm too stupid to write a CMake test, so I gave up and wrote these crappy lines to make it run.
And is speed essential? It should be used to evaluate the command line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is ok like this, it is just for comparing the string in the enum. And I agree that it's not worth to re-add boost just for this.