Giter Site home page Giter Site logo

Question on SIFT about vlfeat HOT 2 OPEN

freshnewegg avatar freshnewegg commented on June 17, 2024
Question on SIFT

from vlfeat.

Comments (2)

faturita avatar faturita commented on June 17, 2024

VlFeat has many tweaks and modifications, many for performance reasons, and the SIFT calculation is not exactly the same as the one proposed by Lowe. For instance, the patch size used to calculate the final histogram of gradients does not match what is being shown #190.

In this case the real patch size used to determine the patch orientation will be:

Z = 2 * W = 2 * ( 3 * sigmaw ) = 2 * (3 * winf * sigma ) = 3 * 2*winf * sigma = 3 * 3 * sigma

This is because it goes from -W to W. Maybe someone from the developing team could clarify this further.

from vlfeat.

freshnewegg avatar freshnewegg commented on June 17, 2024

hmm an optimization makes sense

int W = VL_MAX(floor (3.0 * sigmaw), 1) ;

suggests we either use the max of 1.5 * sigma or floor(3 * 1.5 * sigma) depending on how big sigma is. This seems like to say the more "uncertain" we are the larger surface area we consider.

from vlfeat.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.