All Projects → shamangary → ASV

shamangary / ASV

Licence: Apache-2.0 license
[CVPR16] Accumulated Stability Voting: A Robust Descriptor from Descriptors of Multiple Scales

Programming Languages

c
50402 projects - #5 most used programming language
matlab
3953 projects
HTML
75241 projects
python
139335 projects - #7 most used programming language
Makefile
30231 projects
CSS
56736 projects

Projects that are alternatives of or similar to ASV

Gms Feature Matcher
GMS: Grid-based Motion Statistics for Fast, Ultra-robust Feature Correspondence (CVPR 17 & IJCV 20)
Stars: ✭ 797 (+2965.38%)
Mutual labels:  matching, feature
DeepCD
[ICCV17] DeepCD: Learning Deep Complementary Descriptors for Patch Representations
Stars: ✭ 39 (+50%)
Mutual labels:  matching, feature
Rtimageassets
A Xcode plugin to automatically generate 2x, 1x image from 3x image for you, or upscale to 3x from 2x
Stars: ✭ 2,490 (+9476.92%)
Mutual labels:  scale
PSP
PSP-UFU (Power Systems Platform of Federal University of Uberlândia) is a cross-platform, multilingual, Free and Open-Source Software with advanced GUI features and CAD tools for electrical power system studies.
Stars: ✭ 30 (+15.38%)
Mutual labels:  stability
Roadmap
No description or website provided.
Stars: ✭ 51 (+96.15%)
Mutual labels:  voting
LBYLNet
[CVPR2021] Look before you leap: learning landmark features for one-stage visual grounding.
Stars: ✭ 46 (+76.92%)
Mutual labels:  cvpr
BetterDummy
Unlock your displays on your Mac! Smooth scaling, HiDPI unlock, XDR/HDR extra brightness upscale, DDC, brightness and dimming, dummy displays, PIP and lots more!
Stars: ✭ 9,601 (+36826.92%)
Mutual labels:  scale
Igrphototweaks
Drag, Rotate, Scale and Crop
Stars: ✭ 212 (+715.38%)
Mutual labels:  scale
cfvqa
[CVPR 2021] Counterfactual VQA: A Cause-Effect Look at Language Bias
Stars: ✭ 96 (+269.23%)
Mutual labels:  cvpr
scalem
A jQuery plugin to make any element scalable (responsive).
Stars: ✭ 33 (+26.92%)
Mutual labels:  scale
nitroml
NitroML is a modular, portable, and scalable model-quality benchmarking framework for Machine Learning and Automated Machine Learning (AutoML) pipelines.
Stars: ✭ 40 (+53.85%)
Mutual labels:  scale
spicedb
Open Source, Google Zanzibar-inspired fine-grained permissions database
Stars: ✭ 3,358 (+12815.38%)
Mutual labels:  scale
ALG-QiPai
棋牌类算法(功能实现)
Stars: ✭ 27 (+3.85%)
Mutual labels:  feature
rater-js
Star rating widget for the browser. Unlimited number of stars. No dependencies. No Jquery required.
Stars: ✭ 66 (+153.85%)
Mutual labels:  voting
Plezi
Plezi - the Ruby framework for realtime web-apps, websockets and RESTful HTTP
Stars: ✭ 239 (+819.23%)
Mutual labels:  scale
metan
Package for multi-environment trial analysis
Stars: ✭ 24 (-7.69%)
Mutual labels:  stability
Flutter screenutil
Flutter screen adaptation, font adaptation, get screen information
Stars: ✭ 2,843 (+10834.62%)
Mutual labels:  scale
Stacking-Blending-Voting-Ensembles
This repository contains an example of each of the Ensemble Learning methods: Stacking, Blending, and Voting. The examples for Stacking and Blending were made from scratch, the example for Voting was using the scikit-learn utility.
Stars: ✭ 34 (+30.77%)
Mutual labels:  voting
koa-ip-filter
koa middleware to filter request IPs or custom ID with glob patterns, array, string, regexp or matcher function. Support custom 403 Forbidden message and custom ID.
Stars: ✭ 23 (-11.54%)
Mutual labels:  matching
voting-connectors
Connector apps for Aragon Voting
Stars: ✭ 14 (-46.15%)
Mutual labels:  voting

ASV

Accumulated Stability Voting

ASV Demo Code
Version: 1 (2016/3/11)

All rights reserved.

Code author: Tsun-Yi Yang
Email: [email protected]
Project page: http://shamangary.logdown.com/posts/587520
Paper: [CVPR16] Accumulated Stability Voting: A Robust Descriptor from Descriptors of Multiple Scales

If you use the code, please cite the paper.
If any bug is found, please email me.
You may use the code for academic study.
However, using the provided code for commercial purpose is forbidden.

Tested platform:
Ubuntu 12.04 LTS (I do not test the code on Windows or Mac.)
Matlab R2012b


================================================
How to use the code? Step-by-step procedure: (very simple)

For each dataset (Oxford/Fischer), you need to run the following command seperately.

  1. run "extractSIFT.m"
    run "extractDSP.m"
    run "extractASV.m"
    run "extract1M2M.m"

The extraction of the whole dataset might take minutes.
Once its done, you don't have to do it again
unless you need to change the parameters of the descriptors.

  1. run "TYY_evaluation_des.m" by using desType = 1, isSave = 1
    run "TYY_evaluation_des.m" by using desType = 2, isSave = 1
    run "TYY_evaluation_des.m" by using desType = 3, isSave = 1
    run "TYY_evaluation_des.m" by using desType = 4, isSave = 1

  2. run "showResults", you should change desType1 and desType2
    to see the results comparison.

================================================


Library: (attached, you don't need to download it again)
Vlfeat library 0.9.18
http://www.vlfeat.org/
Vlfeat benchmark library (slightly modified)
http://www.vlfeat.org/benchmarks/overview/repeatability.html


Dataset: (attached, you don't need to download it again)
Oxford dataset
http://www.robots.ox.ac.uk/~vgg/data/data-aff.html
Fischer dataset
http://lmb.informatik.uni-freiburg.de/resources/datasets/genmatch.en.html


Evaluation:
Precision-recall curve
Mean average precision
Head-to-head comparison
Total correct matches


Baseline:
SIFT
DSP-SIFT
http://vision.ucla.edu/~jingming/proj/dsp/


Proposed Method:
Accumulated Stability Voting

  1. ASV(1S)-SIFT:
    Only apply first stage single threshold (median threshold),
    the output are real-valued descriptors.

  2. ASV(1M2M)-SIFT:
    Apply two stage multi-thresholds procedure, the number
    of threshold is tunable. The output are binary descriptors.

You may also choose different descriptors and apply ASV on them.
ASV-LIOP
ASV-PATCH

================================================
Important function:

  1. extract.m
    This function control the parameters of vlfeat covariant
    detection function "vl_covdet.m"

The keypoints are sorted by the returned peak scores. (important!)

Default setting: (important!)
-> peakthreshold = 0.001
-> doubleimage = 'true'
-> estimateorientation = 'true'
-> estimateaffineshape = 'true'


  1. vl_dspcovsift.m
    A slightly modified version from DSP-SIFT.
    (Original code didnt use affine approximated detector.)
    [CVPR15] Domain-Size Pooling in Local Descriptors: DSP-SIFT
    http://vision.ucla.edu/~jingming/proj/dsp/

You also need the following mex file to run the DSP function.
-> mexNormalizeHistogramChar.mexa64

  1. vl_asvcovdet.m (OUTPUT real-valued descriptor)
    A function to extract ASV(1S)-SIFT.
    The function only applies first stage single threshold (median threshold),
    and the output are real-valued descriptors.
    You only need vlfeat library to run this function.

  2. vl_asv1m2mcovdet.m (OUTPUT binary descriptor)
    A function to extract ASV(1M2M)-SIFT.
    The function applies two stage multi-thresholds procedure,
    the number of threshold is tunable.
    The output are binary descriptors.
    You only need vlfeat library to run this function.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].