❶ 请问惠普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();
};//特征对比,模式确认
*****
*****类的实现代码行太多,而且不确定你需不需要,所以不贴了。
❹ 计算机图形学、图象处理和模式识别之间的关系。
计算机图形学研究是数据模型和几何模型转化为图像信号,
模式识别是研究图像信号到数据模型和几何模型
图像处理是处理图像到图像。
❺ 学自动化的到大三了专业选修选模式识别好还是通信原理好点
我建议,学模式识别,比通信原理更对口。而且模式识别偏软,关键是看你考什么学校。考的学校要是通信好,考通信也行。两个都挺好就业的。我就是模式识别毕业的呵呵!