?? bipartitematchingdemoplot.m
字號:
function bipartiteMatchingDemoPlot(sources, detections, a)hold onp1 = size(sources,2);p2 = size(detections,2);for i=1:p1 h=text(sources(1,i), sources(2,i), sprintf('s%d', i)); set(h, 'color', 'r');endfor i=1:p2 h=text(detections(1,i), detections(2,i), sprintf('d%d', i)); set(h, 'color', 'b');endif nargin < 3, return; endfor i=1:p1 j = a(i); if j==0 % i not matched to anything continue end line([sources(1,i) detections(1,j)], [sources(2,i) detections(2,j)])endaxis_pct;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -