基于MATLAB的人臉識別源程序16頁.doc
《基于MATLAB的人臉識別源程序16頁.doc》由會員分享,可在線閱讀,更多相關(guān)《基于MATLAB的人臉識別源程序16頁.doc(16頁珍藏版)》請在匯文網(wǎng)上搜索。
1、1.色彩空間轉(zhuǎn)換function r,g=rgb_RGB(Ori_Face)R=Ori_Face(:,:,1);G=Ori_Face(:,:,2);B=Ori_Face(:,:,3);R1=im2double(R); % 將uint8型轉(zhuǎn)換成double型G1=im2double(G);B1=im2double(B);RGB=R1+G1+B1;row=size(Ori_Face,1); % 行像素column=size(Ori_Face,2); % 列像素for i=1:rowfor j=1:column rr(i,j)=R1(i,j)/RGB(i,j); gg(i,j)=G1(i,j)/RG
2、B(i,j);endendrrr=mean(rr);r=mean(rrr);ggg=mean(gg);g=mean(ggg);2.均值和協(xié)方差t1=imread(D:matlab皮膚庫1.jpg);r1,g1=rgb_RGB(t1);t2=imread(D:matlab皮膚庫2.jpg);r2,g2=rgb_RGB(t2);t3=imread(D:matlab皮膚庫3.jpg);r3,g3=rgb_RGB(t3);t4=imread(D:matlab皮膚庫4.jpg);r4,g4=rgb_RGB(t4);t5=imread(D:matlab皮膚庫5.jpg);r5,g5=rgb_RGB(t5)
3、;t6=imread(D:matlab皮膚庫6.jpg);r6,g6=rgb_RGB(t6);t7=imread(D:matlab皮膚庫7.jpg);r7,g7=rgb_RGB(t7);t8=imread(D:matlab皮膚庫8.jpg);r8,g8=rgb_RGB(t8);t9=imread(D:matlab皮膚庫9.jpg);r9,g9=rgb_RGB(t9);t10=imread(D:matlab皮膚庫10.jpg);r10,g10=rgb_RGB(t10);t11=imread(D:matlab皮膚庫11.jpg);r11,g11=rgb_RGB(t11);t12=imread(D:
4、matlab皮膚庫12.jpg);r12,g12=rgb_RGB(t12);t13=imread(D:matlab皮膚庫13.jpg);r13,g13=rgb_RGB(t13);t14=imread(D:matlab皮膚庫14.jpg);r14,g14=rgb_RGB(t14);t15=imread(D:matlab皮膚庫15.jpg);r15,g15=rgb_RGB(t15);t16=imread(D:matlab皮膚庫16.jpg);r16,g16=rgb_RGB(t16);t17=imread(D:matlab皮膚庫17.jpg);r17,g17=rgb_RGB(t17);t18=imr
5、ead(D:matlab皮膚庫18.jpg);r18,g18=rgb_RGB(t18);t19=imread(D:matlab皮膚庫19.jpg);r19,g19=rgb_RGB(t19);t20=imread(D:matlab皮膚庫20.jpg);r20,g20=rgb_RGB(t20);t21=imread(D:matlab皮膚庫21.jpg);r21,g21=rgb_RGB(t21);t22=imread(D:matlab皮膚庫22.jpg);r22,g22=rgb_RGB(t22);t23=imread(D:matlab皮膚庫23.jpg);r23,g23=rgb_RGB(t23);t
6、24=imread(D:matlab皮膚庫24.jpg);r24,g24=rgb_RGB(t24);t25=imread(D:matlab皮膚庫25.jpg);r25,g25=rgb_RGB(t25);t26=imread(D:matlab皮膚庫26.jpg);r26,g26=rgb_RGB(t26);t27=imread(D:matlab皮膚庫27.jpg);r27,g27=rgb_RGB(t27);r=cat(1,r1,r2,r3,r4,r5,r6,r7,r8,r9,r10,r11,r12,r13,r14,r15,r16,r17,r18,r19,r20,r21,r22,r23,r24,r2
7、5,r26,r27);g=cat(1,g1,g2,g3,g4,g5,g6,g7,g8,g9,g10,g11,g12,g13,g14,g15,g16,g17,g18,g19,g20,g21,g22,g23,g24,g25,g26,g27);m=mean(r,g)n=cov(r,g)3.求質(zhì)心function xmean, ymean = center(bw)bw=bwfill(bw,holes);area = bwarea(bw);m n =size(bw);bw=double(bw);xmean =0; ymean = 0;for i=1:m,for j=1:n,xmean = xmean +
- 1.請仔細閱讀文檔,確保文檔完整性,對于不預(yù)覽、不比對內(nèi)容而直接下載帶來的問題本站不予受理。
- 2.下載的文檔,不會出現(xiàn)我們的網(wǎng)址水印。
- 3、該文檔所得收入(下載+內(nèi)容+預(yù)覽)歸上傳者、原創(chuàng)作者;如果您是本文檔原作者,請點此認領(lǐng)!既往收益都歸您。
下載文檔到電腦,查找使用更方便
20 積分
下載 | 加入VIP,下載共享資源 |
- 配套講稿:
如PPT文件的首頁顯示word圖標(biāo),表示該PPT已包含配套word講稿。雙擊word圖標(biāo)可打開word文檔。
- 特殊限制:
部分文檔作品中含有的國旗、國徽等圖片,僅作為作品整體效果示例展示,禁止商用。設(shè)計者僅對作品中獨創(chuàng)性部分享有著作權(quán)。
- 關(guān) 鍵 詞:
- 基于 MATLAB 識別 源程序 16