https://github.com/stemann/vlfeat.jl
Julia wrapper for the VLFeat computer vision library
https://github.com/stemann/vlfeat.jl
Last synced: 6 months ago
JSON representation
Julia wrapper for the VLFeat computer vision library
- Host: GitHub
- URL: https://github.com/stemann/vlfeat.jl
- Owner: stemann
- License: other
- Created: 2014-08-19T01:30:45.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T15:31:55.000Z (about 2 years ago)
- Last Synced: 2025-01-20T23:01:41.491Z (over 1 year ago)
- Language: Julia
- Homepage:
- Size: 120 KB
- Stars: 3
- Watchers: 6
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# VLFeat.jl
[](https://github.com/IHPSystems/VLFeat.jl/actions/workflows/CI.yml?query=branch%3Amaster)
[](https://codecov.io/gh/IHPSystems/VLFeat.jl)
[](https://github.com/invenia/BlueStyle)
Julia wrapper for the [VLFeat](http://www.vlfeat.org) library.
## Status
At this point
1. C functions are wrapped
2. `vl_hog(image)` provides a HOG descriptor hierarchy of an array or Image object.
3. `f,d = vl_sift(image)` computes SIFT features and descriptors for an image.
Note that VLFeat seems to assume that Images are Float32 and stored as (color, row, col).
`vl_hog` will do basic conversion automatically.