The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
20 views

Clustering 2D points with VlFeat Quickshift

I have a set of 2D points and I want to cluster them with the quickshift algorithm from the VlFeat library (the specific function is vl_quickshift_process). What this implementation actually does is ...
0
votes
0answers
29 views

Search for Open Source Library of image feature extraction

I am searching for some open source libraries which have already implemented some common image feature extraction algorithms. Here common image features are those features often used in image ...
1
vote
1answer
55 views

How to visualize an image segment borders in Matlab?

I have a matrix with segment indices for each pixel of image. How can I visualize the borders of the segments? The most obvious idea is to use diff filter to obtain the edge map, but it looks very ...
0
votes
1answer
54 views

vl_sift Why two frames have the same position

I am a freshman of vl_sift. When I ran the codes from the website, I have found a problem which I didn't understand. After executing [f,d] = vl_sift(I) ; I checked the f. col 11 ...
0
votes
1answer
85 views

SIFT orientation normalization

I want to normalize the sift descriptors by rotating them so that the horizontal direction is aligned with the dominant gradient orientation of the patch. I am using vl_feat library. Is there any way ...
0
votes
1answer
108 views

using dsift of the vlfeat library with cv::Mat

I am currently trying to use the dsift-algorithm of the vlfeat-lib. But no matter with which values I create the filter (sample step, bin size), it returns the same number of keypoints for every frame ...
0
votes
1answer
98 views

need advise on sift feature - is there such thing as a good feature?

I am trying out vlfeat, got huge amount of features from an image database, and I am testing with the ground truth for mean average precision (MAp). Overall, I got roughly 40%. I see that some of the ...
0
votes
1answer
102 views

matlab - vlfeat - vl_pegasos (svm) classification

I am using the VLFeat library in Matlab for some image analysis work. I want to use their Pegasos SVM implementation because of some of the kernels they have implemented, specifically, the Chi2 ...
0
votes
1answer
182 views

How does VL_SIFT from vlfeat.org work?

I am new to VLfeat implementation of SIFT in Matlab Could someone help/teach me more about how does VL_SIFT from vlfeat.org work? I have read the following link ...
1
vote
1answer
154 views

How does VL_UBCMATCH (MATLAB) from VLFeat.org work? [closed]

I am new to matlab programming using SIFT implementation. Could someone help/teach me more about how does VL_UBCMATCH from vlfeat.org work? I have read the following link ...
1
vote
0answers
21 views

VL_feat functions not visible to parallel workers in Matlab

So I'm trying to do some image processing using the vl_feat external toolbox, and I'm attempting to run it in parallel, as there's a lot of data to process. So I have a function that includes a parfor ...
1
vote
1answer
196 views

How does vl_ubcmatch work technically?

I am reading through vl_ubcmatch's function source code, provided here, and I am trying to understand, how does it compute the score, and how does it work technically internally. However, this C code ...
0
votes
1answer
232 views

Efficiently segmenting an image into grid in matlab

Currently, I am using the code below to segment an image into a grid of cellSizeX pixels times cellSizeY pixels: grid = zeros(cellSizeX, cellSizeY, ColorCount, cellTotalX, cellTotalY); for i ...
1
vote
1answer
138 views

Regarding Standard Oxford Format for vlfeat sift

One of my upper classmates has given me a data set for experimenting with vlfeat's SIFT, however, her extracted SIFT data for the frame part contains 5 dimensions. An example is given below: 192 9494 ...
0
votes
0answers
49 views

Fetching movies' frames via ffmpeg and feed it to vlfeat's sift

I am going to develop a program that uses ffmpeg and vlfeat on a linux server. My task is simply: get some frames from a movie file and feed these frames to vlfeat's sift. I am reading through some ...
1
vote
1answer
272 views

Sift descriptor at particular pixel

I want to find the sift descriptor at a co-ordinate ( x ,y ) in the image with a patch size of 5X5 neighbour with the co-ordinate in the middle. The intention behind it is to analyse the orientation ...
2
votes
1answer
368 views

Getting stuck on Matlab's subplot mechanism for matching images' points for vlfeat

I am doing vlfeat in Matlab and I am following this question here. These below are my simple testing images: Left Image: Right Image: I did a simple test with 2 simple images here (the ...
1
vote
2answers
138 views

slow kd-tree queries using vlfeat, faster alternatives?

I'm using vlfeat's kdtree which implements the kd-tree from FLANN, which supposedly handles high dimension data. However, right now I have a kdtree built from a 128x15000 set of data and kd tree ...
1
vote
2answers
284 views

Compiling vlfeat mex in octave: undefined symbol

I hope this question is not to specific. I am trying to compile the vlfeat library for octave 3.6.2. It compiles the mex-files without errors. But if I execute vl_setup vl_demo i get error: ...