-
Notifications
You must be signed in to change notification settings - Fork 2
/
asgHun.m
43 lines (38 loc) · 933 Bytes
/
asgHun.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
31
32
33
34
35
36
37
38
39
40
41
42
function X = asgHun(C, opt)
% Solve linear assignment by the Hungrian algorithm.
%
% Math
% X = argmax or argmin trace(C' * X), subject to X is a permutation matrix
%
% Input
% C - weight, n1 x n2
% varargin
% opt - optimization operator, 'min' | {'max'}
%
% Output
% X - discrete correspondence, n1 x n2
%
% History
% create - Feng Zhou ([email protected]), 01-25-2009
% modify - Quynh ([email protected]), 10-12-2014
if ~exist('opt', 'var') || isempty(opt) || strcmp(opt, 'max')
C = max(C(:)) - C;
elseif strcmp(opt, 'min')
% do noting
else
error('unknown operator: %s', opt);
end
% c++ implementation
ind2 = assignmentoptimal(C);
% dimension
[n1, n2] = size(C);
% index -> matrix
if n1 <= n2
idx = sub2ind([n1 n2], 1 : n1, ind2');
else
ind1 = find(ind2);
ind2 = ind2(ind1);
idx = sub2ind([n1 n2], ind1', ind2');
end
X = zeros(n1, n2);
X(idx) = 1;