this is very good application for face traccking.it contains more and good differnt features.if u rotate face right side it will show the direction for rignt side.if u rotate face left side it will show the direction for left side.
標簽: good application traccking contains
上傳時間: 2014-07-25
上傳用戶:caiiicc
this is very good application for face traccking.it contains more and good differnt features.if u rotate face right side it will show the direction for rignt side.if u rotate face left side it will show the direction for left side.
標簽: good application traccking contains
上傳時間: 2014-01-10
上傳用戶:zhengzg
this is very good application for face traccking.it contains more and good differnt features.if u rotate face right side it will show the direction for rignt side.if u rotate face left side it will show the direction for left side.
標簽: good application traccking contains
上傳時間: 2017-06-19
上傳用戶:tzl1975
this is very good application for face traccking.it contains more and good differnt features.if u rotate face right side it will show the direction for rignt side.if u rotate face left side it will show the direction for left side.
標簽: good application traccking contains
上傳時間: 2014-07-03
上傳用戶:c12228
臺灣嵌入式牛哥Jserv的RTOS作品,內部已實現PXA250的實例移植。希望對要了解RTOS工作原理的朋友有用,強烈推薦。http://blog.linux.org.tw/~jserv/archives/002082.html
上傳時間: 2014-11-26
上傳用戶:1583060504
包括電子政務系統的架構設計、工作流引擎的設計與開發、工作流圖形定義工具的設計與開發等,并詳細介紹了系統的C#源代碼。更多內容更新請參考作者的技術博客:http://blog.sina.com.cn/xianhuameng
上傳時間: 2014-11-29
上傳用戶:ruan2570406
一組我經常使用的自己開發的linux小工具,用于提高開發效率。 請參考 http://yxp111.blog.163.com/
標簽: linux
上傳時間: 2013-12-15
上傳用戶:蠢蠢66
Smarty 入門 不過因為有針對舊有的內容做一些小調整,所以這次把它放回到自己的 Blog 裡。 序言 剛開始接觸樣版引擎的 PHP 設計師,聽到 Smarty 時,都會覺得很難。其實筆者也不例外,碰都不敢碰一下。但是後來在剖析 XOOPS 的程式架構時,開始發現 Smarty 其實並不難。只要將 Smarty 基礎功練好,在一般應用上就已經相當足夠了。當然基礎能打好,後面的進階應用也就不用怕了。 這次的更新,主要加上了一些概念性的東西,當然也有一些進階的技巧。不過這些也許早已深入大家的程式之中,如果有更好的觀點,也歡迎大家能夠回饋。
標簽: Smarty
上傳時間: 2014-12-01
上傳用戶:鳳臨西北
JSP 的博客程序含SQL數據庫,及程序的配置說明 博客,譯自英文Blog。它是互聯網平臺上的個人信息交流中心。通常博客就是用來發表文章,所有的文章都是按照年份和日期排列,有些類似斑竹的日記。看上去平淡無奇,毫無可炫耀之處,但它可以讓每個人零成本、零維護地創建自己的網絡媒體,每個人都可以隨時把自己的思想火花和靈感更新到博客站點上。
上傳時間: 2013-12-27
上傳用戶:笨小孩
兩個鏈表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{ int data; struct Node *next; }Node; void initpointer(struct Node *p){ p=NULL; } int printlist(struct Node* head){ int flag=1; head=head->next; /* 因為標記1的地方你用了頭結點,所以第一個數據域無效,應該從下一個頭元結點開始 */ if(head==NULL) printf("NULL\n"); else { while(head!=NULL) { if(flag==1) { printf("%d",head->data); flag=0; } else { printf(" %d",head->data); } head=head->next; } printf("\n"); } return 0; } struct Node *creatlist(struct Node *head) { int n; struct Node *p1=(struct Node *)malloc(sizeof(struct Node)); p1->next=NULL; while(scanf("%d",&n),n!=-1) { struct Node *pnode=(struct Node *)malloc(sizeof(struct Node)); pnode->next=NULL; pnode->data=n; if(head==NULL) head=pnode; p1->next=pnode; p1=pnode; } return head; } struct Node *Intersect(struct Node *head1, struct Node *head2) { struct Node *p1=head1,*p2=head2;/*我這里沒有用頭指針和頭結點,這里是首元結點head1里面就是第一個數據,一定要理解什么事頭指針, 頭結點,和首元結點 具體你一定要看這個博客:http://blog.sina.com.cn/s/blog_71e7e6fb0101lipz.html*/ struct Node *head,*p,*q; head = (struct Node *)malloc(sizeof(struct Node)); head->next = NULL; p = head; while( (p1!=NULL)&&(p2!=NULL) ) { if (p1->data == p2->data) { q = (struct Node *)malloc(sizeof(struct Node)); q->data = p1->data; q->next = NULL; p->next = q;//我可以認為你這里用了頭結點,也就是說第一個數據域無效 **標記1** p = q; p1 = p1->next; p2 = p2->next; } else if (p1->data < p2->data) { p1 = p1->next; } else { p2 = p2->next; } } return head; } int main() { struct Node *head=NULL,*headt=NULL,*t; //initpointer(head);//這里的函數相當于head=NULL; // initpointer(headt);//上面已經寫了headt=NULL那么這里可以不用調用這個函數 head=creatlist(head); headt=creatlist(headt); t=Intersect(head,headt); printlist(t); }
標簽: c語言編程
上傳時間: 2015-04-27
上傳用戶:coco2017co