Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ruimarques's full-sized avatar
:octocat:
Keep on rolling

Rui Marques ruimarques

:octocat:
Keep on rolling
View GitHub Profile
@ruimarques
ruimarques / cloudSettings
Last active March 3, 2020 09:54
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-03-03T09:53:50.001Z","extensionVersion":"v3.4.3"}
private openDocument(targetWindow: Window, blob: Blob) {
if (this.useIEBlobStrategy()) {
targetWindow.navigator.msSaveOrOpenBlob(blob);
} else {
const objectUrl = URL.createObjectURL(blob);
targetWindow.location.assign(objectUrl);
}
}
useIEBlobStrategy(): boolean {
@ruimarques
ruimarques / gist:4b43facc3a81d2a871dbe6436daac7d7
Created October 12, 2016 10:04
Feature descriptor comparison report
Taken from: http://computer-vision-talks.com/2011-08-19-feature-descriptor-comparison-report/
Feature descriptor comparison report
Feature descriptor comparison report
Sharing my research work of behavior of several types of feature descriptors. This article is an update of old "Comparison of feature descriptors" post. I've added a brand new ORB feature descriptor to the test suite, also SIFT descriptor included as well. And a new version of LAZY descriptor present in this test too.
Introduction
@ruimarques
ruimarques / battle_of_three_descriptors.txt
Last active October 12, 2016 10:05
A battle of three descriptors
Taken from http://computer-vision-talks.com/2011-01-04-comparison-of-the-opencv-feature-detection-algorithms/
A battle of three descriptors
I think developers and research guys who works with object recognition, image registration and other areas that uses keypoint extraction can find this post useful. Recently (from 2.4.2) a new feature descriptor algorithm was added to OpenCV library. FREAK descriptor is claimed to be superior to ORB and SURF descriptors, yet it's very fast (comparable to ORB). Also people in comments on my blog mentioned BRISK descriptor which is also new and more efficient than SURF. Well, finally i find a time to compare them and publish my research results.
Introduction
This post will be very similar to OpenCV comparison reports i made in past. Although those reports were published years ago, they are still somewhat actual. For this test i decided to rewrite the whole testing framework from scratch. The source code will be available soon. But for now, let me explain what i did to fi