Description
function [ frames , descriptors ] = compute_sift_keypoints( images , peak_thresh , edge_thresh )
%COMPUTE_SIFT_KEYPOINTS Summary of this function goes here
% Detailed explanation goes here
frames = {};
descriptors = {};
for i = 1:length(images)
img = cell2mat(images(i));
[fc, dc] = vl_sift(single(img), 'PeakThresh', peak_thresh, 'EdgeThresh', edge_thresh);
frames = [frames; {fc}];
descriptors = [descriptors; {dc}];
end
end
https://matlab1.com/computing-similarity-between-query-image-and-target-database/
https://matlab1.com/what-is-fog-computing/
Reviews
There are no reviews yet.