當前位置:首頁 » 操作系統 » 源碼識別

源碼識別

發布時間: 2022-01-13 15:21:35

❶ 人臉性別識別源代碼

opencv有辦法識別性別嗎?按照人臉輪廓?還真不太清楚呢/

❷ 易語言怎樣實現把一個東西拖到一個地方,它就能自動識別 要怎麼做 源碼怎麼寫求助~~~~~

主要是你這個「東西」的定義有點太廣了,誰知道你要判斷什麼,電腦畢竟不是智能的,只能按照你輸入的方法執行,你不說明白,人都沒法做,電腦怎麼會做

❸ 尋找源代碼,做圖片識別

google上有一個開源的文字識別引擎叫tesseract,支持很多種語言,可以搞一份試試。但是就我個人經驗來看這種東西的識別率比商業產品低很多……

❹ 網站源代碼識別技巧

http://www.mycodes.net/10/這個網站有!你看看

❺ 求條形碼識別源碼

C#語言:public string bar_code(object str, int ch, int cw, int type_code)
{
string strTmp=str.ToString();
string code=strTmp;
strTmp=strTmp.ToLower();
int height=ch;
int width=cw;
strTmp=strTmp.Replace("0", "_|_|__||_||_|");;
strTmp=strTmp.Replace("1", "_||_|__|_|_||");
strTmp=strTmp.Replace("2", "_|_||__|_|_||");
strTmp=strTmp.Replace("3", "_||_||__|_|_|");
strTmp=strTmp.Replace("4", "_|_|__||_|_||");
strTmp=strTmp.Replace("5", "_||_|__||_|_|");
strTmp=strTmp.Replace("7", "_|_|__|_||_||");
strTmp=strTmp.Replace("6", "_|_||__||_|_|");
strTmp=strTmp.Replace("8", "_||_|__|_||_|");
strTmp=strTmp.Replace("9", "_|_||__|_||_|");
strTmp=strTmp.Replace("a", "_||_|_|__|_||");
strTmp=strTmp.Replace("b", "_|_||_|__|_||");
strTmp=strTmp.Replace("c", "_||_||_|__|_|");
strTmp=strTmp.Replace("d", "_|_|_||__|_||");
strTmp=strTmp.Replace("e", "_||_|_||__|_|");
strTmp=strTmp.Replace("f", "_|_||_||__|_|");
strTmp=strTmp.Replace("g", "_|_|_|__||_||");
strTmp=strTmp.Replace("h", "_||_|_|__||_|");
strTmp=strTmp.Replace("i", "_|_||_|__||_|");
strTmp=strTmp.Replace("j", "_|_|_||__||_|");
strTmp=strTmp.Replace("k", "_||_|_|_|__||");
strTmp=strTmp.Replace("l", "_|_||_|_|__||");
strTmp=strTmp.Replace("m", "_||_||_|_|__|");
strTmp=strTmp.Replace("n", "_|_|_||_|__||");
strTmp=strTmp.Replace("o", "_||_|_||_|__|");
strTmp=strTmp.Replace("p", "_|_||_||_|__|");
strTmp=strTmp.Replace("r", "_||_|_|_||__|");
strTmp=strTmp.Replace("q", "_|_|_|_||__||");
strTmp=strTmp.Replace("s", "_|_||_|_||__|");
strTmp=strTmp.Replace("t", "_|_|_||_||__|");
strTmp=strTmp.Replace("u", "_||__|_|_|_||");
strTmp=strTmp.Replace("v", "_|__||_|_|_||");
strTmp=strTmp.Replace("w", "_||__||_|_|_|");
strTmp=strTmp.Replace("x", "_|__|_||_|_||");
strTmp=strTmp.Replace("y", "_||__|_||_|_|");
strTmp=strTmp.Replace("z", "_|__||_||_|_|");
strTmp=strTmp.Replace("-", "_|__|_|_||_||");
strTmp=strTmp.Replace("*", "_|__|_||_||_|");
strTmp=strTmp.Replace("/", "_|__|__|_|__|");
strTmp=strTmp.Replace("%", "_|_|__|__|__|");
strTmp=strTmp.Replace(" ", "_|__|_|__|__|");
strTmp=strTmp.Replace(".", "_||__|_|_||_|");
strTmp=strTmp.Replace("_", "<span style='height:" height ";width:" width ";background:#FFFFFF;'></span>");
strTmp=strTmp.Replace("|", "<span style='height:" height ";width:" width ";background:#000000;'></span>");
if(type_code==1)
{
return strTmp "<BR>" code;
}
else
{
return strTmp;
}
}參考地址: http://www.7747.net/kf/201009/74759.html

❻ 識別源代碼(源程序)

方法很多可以在模板或者程序中加入標記或者作為一個對象插入並且一般插入的源代碼都是IE可以識別的 但是好多論壇等都已經屏蔽 沒有屏蔽的就可以顯示出來
例如<a href='http://www..com target='_blank'>網路網</a>
如果沒有限制就可以顯示效果

❼ 什麼是源代碼

如果你用的IE,在做上角,有個"查看"選項.在它下面有個"源文件"選項,單擊,就可以看見一堆英文單詞.這就是網頁的源代碼.
與此類似,軟體也是由另一些這樣的"單詞"組成的源代碼構成.

❽ 如何識別一個網站的源代碼是什麼語言

一個網站不大可能只有一種語言。至於看某個網頁,可以看源代碼,有經驗的可以大約猜出來。

❾ 計算機是怎麼識別源碼的

程序員編的程序語言,需要用編譯器來編譯,比圖VC這樣的工具,他在編譯的時候會根據你電腦的情況,把他編譯成為低級的匯編語言,這就可以執行啦,CPU能執行的不只是有0,1,還有幾個匯編中的操作符,匯編語言最終還是被轉換為0,1 的

熱點內容
mysql怎麼導出資料庫 發布:2025-03-14 15:47:52 瀏覽:988
錄制的視頻怎麼保存到存儲卡 發布:2025-03-14 15:46:19 瀏覽:794
curl源碼編譯 發布:2025-03-14 15:43:55 瀏覽:354
天龍八部無憂腳本 發布:2025-03-14 15:34:46 瀏覽:25
jdk764forlinux 發布:2025-03-14 15:34:40 瀏覽:361
安卓車機怎麼使用實景導航 發布:2025-03-14 15:33:15 瀏覽:907
變數的存儲分配 發布:2025-03-14 15:01:12 瀏覽:173
php的初始化 發布:2025-03-14 14:59:20 瀏覽:600
c語言鏈表數組 發布:2025-03-14 14:59:08 瀏覽:103
王者安卓區轉蘋果區會有什麼變化 發布:2025-03-14 14:44:44 瀏覽:307