how to define face affine matrix
1 回表示 (過去 30 日間)
古いコメントを表示
Hi every one...
I have a collection of face image and name i need to match the correct name for that first we need to define both face and name affine matrix or adjacency matrix. how can i implement the matrix please give me any help or some best links
and example matrix are
face1 face2 face3
face1 0.18 0.04 0.147
face2 0.04 0.01 0.001
face3 0.12 0.007 0.157
than you in advance....
0 件のコメント
回答 (1 件)
Azzi Abdelmalek
2013 年 2 月 5 日
face={'face1','face2','face3'}
x=1:3 % corresponding to face1,face2 and face3
y=1:3 %corresponding to face1, face2 and face3
[xx,yy]=meshgrid(x,y)
zz=[ 0.18 0.04 0.147
0.04 0.01 0.001
0.12 0.007 0.157]
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!