Spaces:
Running
Running
File size: 166 Bytes
a80d6bb |
1 2 3 4 5 6 7 |
function [f, d] = features_custom(I_path)
data = load([I_path '.d2-net'], '-mat');
f = double(data.keypoints(:, 1 : 3).');
d = double(data.descriptors.');
end
|