❶ 請問惠普2740p win7旗艦版32位 安裝hp prtectTools 之後沒有指紋設置,其他例如藍牙或者智能卡都有
您好!中國惠普,很高興為您服務!
您的筆記本現在狀況您需要考慮和嘗試解決如下方面問題
1-確認您的機器有沒有指紋識別功能,之前是不是用過,或者提供序列號我給您查詢出廠有沒有指紋功能模塊
2-確認有硬體,bios下開啟指紋功能
開機連續點擊F10,進入bios界面後找到system configuration--Built-in Device Options找到Fingerprint Decice指紋選項,將其勾選.
3-安裝正確的驅動和軟體:
指紋驅動
<a href="http://ftp://ftp.hp.com/pub/softpaq/sp47501-48000/sp47594.exe
" _src="http://ftp://ftp.hp.com/pub/softpaq/sp47501-48000/sp47594.exe
" title="http://ftp://ftp.hp.com/pub/softpaq/sp47501-48000/sp47594.exe
" target="_blank">ftp://ftp.hp.com/pub/softpaq/sp47501-48000/sp47594.exe
<a href="http://ftp://ftp.hp.com/pub/softpaq/sp47501-48000/sp47594.exe
" _src="http://ftp://ftp.hp.com/pub/softpaq/sp47501-48000/sp47594.exe
" title="http://ftp://ftp.hp.com/pub/softpaq/sp47501-48000/sp47594.exe
" target="_blank">指紋識別軟體:
HP ProtectTools Security Manager<a href="http://ftp://ftp.hp.com/pub/softpaq/sp54501-55000/sp54600.exe
" _src="http://ftp://ftp.hp.com/pub/softpaq/sp54501-55000/sp54600.exe
" title="http://ftp://ftp.hp.com/pub/softpaq/sp54501-55000/sp54600.exe
" target="_blank">ftp://ftp.hp.com/pub/softpaq/sp54501-55000/sp54600.exe
<a href="http://ftp://ftp.hp.com/pub/softpaq/sp54501-55000/sp54600.exe
" _src="http://ftp://ftp.hp.com/pub/softpaq/sp54501-55000/sp54600.exe
" title="http://ftp://ftp.hp.com/pub/softpaq/sp54501-55000/sp54600.exe
" target="_blank">4-正確安裝以後嘗試通過軟體注冊指紋
以上方面注意就可以正常使用了
我是HP員工。
如果以上信息沒有解決您的問題,您還可以繼續追問,或是通過訪問惠普技術支持網頁( www.hp.com/cn )尋求幫助。感謝您對惠普的支持。
❷ prtools中訓練好的模型怎麼保存到文件供以後的樣本直接調用進行模式識別
默認的保存備份是存在你做的那個模型同一個文件夾里的 skb的文件 如果沒有那就是沒有保存了
❸ 模式識別與特徵檢測
*****
*****首先,先申明我做的是基於圖像的模式識別,常規模式識別的步驟一般可以分為三步:讀取圖像文件到內存->從內存提取特徵信息->用該圖像的特徵與多種預定模式的特徵進行對比,決定圖像中的對象屬於哪種模式。這三步由三個類來實現,class CDib負責第一步,class GetFeature負責第二步,class Classification負責第三步。以下是它們的文件頭,即類的聲明部分,至於類的實現你需要的話,通過消息給我你的郵箱號。
*****
*****三個類的聲明如下:
// class 1:從文件讀寫BMP圖片信息
class CDib : public CObject
{
public:
RGBQUAD* m_pRGB;
BYTE* m_pData;
UINT m_numberOfColors;
BOOL m_valid;
BITMAPFILEHEADER bitmapFileHeader;
BITMAPINFOHEADER* m_pBitmapInfoHeader;
BITMAPINFO* m_pBitmapInfo;
BYTE* pDib;
DWORD size;
public:
CDib();
~CDib();
char m_fileName[256];
char* GetFileName();
BOOL IsValid();
DWORD GetSize();
UINT GetWidth();
UINT GetHeight();
UINT GetNumberOfColors();
RGBQUAD* GetRGB();
BYTE* GetData();
BITMAPINFO* GetInfo();
WORD PaletteSize(LPBYTE lpDIB);
WORD DIBNumColors(LPBYTE lpDIB);
void SaveFile(const CString filename);
public:
void LoadFile(const char* dibFileName);
void SetHeight(UINT height);
void SetWidth(UINT width);
};// 從文件讀寫BMP圖片信息
*****
// class 2:利用內存中的圖像提取特徵信息
class GetFeature : public CDib
{
public:
pattern pattern[10];//手寫數字樣品特徵庫
double testsample[25];//待測的手寫數字
int width;//手寫數字的寬
int height;//手寫數字的高
int LineBytes;
void Save(int cls);//將手寫的數字保存到cls(0~9)類別中
BOOL Saveable(int cls);//判斷手寫的數字能否保存到cls(0~9)類別中,因為各類別中樣品特徵不能重復
double Cal(int row, int col);//計算分割好的5×5小區域中,黑像素所佔的比例
void SetFeature();//計算手寫數字的特徵,賦值給testsample
void GetPosition();//獲得手寫數字的位置
GetFeature();
virtual ~GetFeature();
protected:
int bottom;//手寫數字的底部
int top;//手寫數字的頂部
int left;//手寫數字的左邊
int right;//手寫數字的右邊
};// 利用內存中的圖像提取特徵信息
*****
//class 3:該圖像的特徵與某種模式的特徵進行對比,決定圖像中的對象屬於哪種模式
class Classification : public GetFeature
{
public:
Classification();
virtual ~Classification();
public:
double pipei(double s1[], double s2[]);
double K(double X[], double Xk[]);
int Shihanshu();
CString ifClassified(int Class0,int Class1);
int Zengliangjiaozheng();
int LMSE();
int Jiangcheng();
double* BayesLeastRisk(double loss[10][10]);
int BayesLeasterror();
int BayesErshuju();
int Fisher();
int Fisher_2Classes(int Class0,int Class1);
number_no LeastDistance();
};//特徵對比,模式確認
*****
*****類的實現代碼行太多,而且不確定你需不需要,所以不貼了。
❹ 計算機圖形學、圖象處理和模式識別之間的關系。
計算機圖形學研究是數據模型和幾何模型轉化為圖像信號,
模式識別是研究圖像信號到數據模型和幾何模型
圖像處理是處理圖像到圖像。
❺ 學自動化的到大三了專業選修選模式識別好還是通信原理好點
我建議,學模式識別,比通信原理更對口。而且模式識別偏軟,關鍵是看你考什麼學校。考的學校要是通信好,考通信也行。兩個都挺好就業的。我就是模式識別畢業的呵呵!