forked from bertinetto/staple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetFeatureMap.m
executable file
·31 lines (27 loc) · 917 Bytes
/
getFeatureMap.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
function out = getFeatureMap(im_patch, feature_type, cf_response_size, hog_cell_size)
% code from DSST
% allocate space
switch feature_type
case 'fhog'
temp = fhog(single(im_patch), hog_cell_size);
h = cf_response_size(1);
w = cf_response_size(2);
out = zeros(h, w, 28, 'single');
out(:,:,2:28) = temp(:,:,1:27);
if hog_cell_size > 1
im_patch = mexResize(im_patch, [h, w] ,'auto');
end
% if color image
if size(im_patch, 3) > 1
im_patch = rgb2gray(im_patch);
end
out(:,:,1) = single(im_patch)/255 - 0.5;
case 'gray'
if hog_cell_size > 1, im_patch = mexResize(im_patch,cf_response_size,'auto'); end
if size(im_patch, 3) == 1
out = single(im_patch)/255 - 0.5;
else
out = single(rgb2gray(im_patch))/255 - 0.5;
end
end
end