tag 标签: detection

相关博文
  • 热度 23
    2013-1-26 10:39
    3758 次阅读|
    0 个评论
      Luxand是一个简便易用的人脸识别的开放API,如果你需要在你的程序中加入识别的类似功能,你可以尝试使用它,但是有一点需要引起注意,在我实际的使用过程中,发现Luxand的驱动下占用的内存较多,或者说,不是很容易将进行优化。如果你仔细观察示例程序,你会发现你的电脑的CPU仪表上的内存占用基本上是不变的占用,而如果是自己去使用API编程加入识别功能,你会发现其实占用的内存还是挺多的,当然,这也不是没有办法,所以,在使用的时候,需要对此加以注意。   让我们开始吧,在使用之前,最好阅读以下相关的文档,以对Luxand有一个大概的了解,Luxand的使用并不是完全的免费的,其使用方式是经过一层签名认证,这个签名,也就是相当于系统注册码一样的东西,是需要通过在Luxand上进行注册来使用的,不过这一步并不复杂,就是申请一个邮箱然后获取分配的号码,这是很长的一串号码,这里不提供号码,如果有需要,你可以自己申请一个。   Luxand的原理就是人脸识别的一些基本的算法,其特点在于抓住了人脸上的一些不变的特征点,这些特征点是不易被识别错误的,普通的一些算法中需要学习,这样可以进行特定的场合下的适应,但是如果是平常的应用其实不必这么复杂,人脸的不变的特征就可以帮助摄像头找到需要的图案的位置,当然,这样做也导致其对于人脸的旋转等的判断大打折扣,不过在普通的应用中,你是不需要这些的,这里开始介绍具体的使用方法了。   好了,先介绍一下具体的使用到的一些参量,使用Luxand的时候,如果是识别指定的照片中的人脸,那么你就不需要使用到摄像头,不用怀疑,Luxand提供了能力,后面会详细的提到这件事,这里面还是有很多好玩的应用可以制作的。但是还是把和摄像头有关的参量一并给出:   这里是以java的标准给出的,TCameras CameraList = new TCameras();这是摄像头的列表,你的电脑上可能有不同的类型,不止一个数量的摄像头,TCameras CameraNameList = new TCameras();  TCameras CameraDevicePathList = new TCameras();  HCamera CameraHandle = new HCamera();  这些也都是,基本上可以顾名思义,另外,在Luxand的官网上,也就是注册使用序列号(可以使用一年)的地方,有Luxand Document,也就是相当于API的说明。而就图像来说,在java中最重要的是HImage Image = new HImage();指示需要识别的图像。   另外,在准备阶段中,序列号和硬盘号也是需要的,所以可以这样定义,String HardwareID ;       }     这里是使用到摄像头的代码初始化部分,所以如果不适用摄像头,那么和摄像头相关的几个函数就不用了,也就是在函数名中带有camera的,其实这也是值得学习的,在命名的时候,需要让这些参量变得易于理解和使用。   在Luxand中,提供了打开图像的函数,其实在摄像头的连续识别中,道理是一样的,不过做了很多的优化,也是连续的得到图像,然后送入识别函数,仅此而已。   具体的函数是:   int FSDK.LoadImageFromFile(HImage Image, String FileName);    得到了图片,在之前我们的HImage参量中,然后,该函数FSDK.DetectFacialFeatures出场了, 首先看看照片中是否存在人脸:  if(FSDK.FSDKE_OK==FSDK.DetectFacialFeatures(for_detect,feature_for_me)),你可不恩能够蒙我,既然有人脸,就把人脸的位置信息识别出来: if(FSDK.FSDKE_OK==FSDK.DetectFacialFeatures(detect,feature)),进行识别后,可以使用脸部特征存储的参量中的信息了,feature.features .y是第一个特征的y坐标,其他就同理了,不再赘述。不过你需要有一张特征的“地图”,嗯,就在附件中,或者你可以在Luxand帮助手册中找到。   那么,再加一些摄像头识别的东西:  if(FSDK.FSDKE_OK == FSDKCam.OpenVideoCamera(camera_name,CameraHandle)),先打开摄像头,当打开成功后,可以从摄像头中一幅一幅图像的拿出来:  if(FSDK.FSDKE_OK == FSDKCam.GrabFrame(CameraHandle,Image)) 这里的Image是一个HImage类型的参量,下面的步骤基本上和图像识别无异了,那么,利用这个我们可以做啥呢?嗯,很多的有意思的东西都变得可能了。   比如,寒冷的冬天,你在电脑上读一份资料,手还得放在外面滑动鼠标,多么的不惬意啊,让Luxand帮助你吧,首先做一个简易的阅读器,可以读取鼠标的滑动信息,从摄像头中读取你的眼睛的“一举一动”,并读取你的眼部的运动,好了,然后模拟你的鼠标的移动,代码也是容易找到的:   void mouseWheelSetup2() {     addMouseWheelListener( // the rest of of this is acutally the argument list for the function call             new java.awt.event.MouseWheelListener()              {                  public void mouseWheelMoved(java.awt.event.MouseWheelEvent evt)                   {                     viewadjust -= 9*evt.getWheelRotation();   // 调节当前页面的移动                  }             }    ) // this is the end of the argument list    ;    // this single semicolon is the entire, complete function body }    你的双手就不需要再忍受寒冷的侵袭啦!当然,创意是无止境的,你还可以想出更多的应用来。
相关资源
  • 所需E币: 1
    时间: 2022-6-1 19:31
    大小: 4.5MB
    FaultDetectionandDiagnosisinNonlinearSystems-ADifferentialandAlgebraicViewpoint
  • 所需E币: 1
    时间: 2022-4-14 09:32
    大小: 7.24MB
    DetectionofRandomSignalsinDependentGaussianNoise
  • 所需E币: 0
    时间: 2020-8-12 22:15
    大小: 173.09KB
    上传者: Goodluck2020
    PI-di88PoEDetectionandClassification(Class0-3)InterfaceCircuit.pdf
  • 所需E币: 0
    时间: 2020-8-12 22:15
    大小: 164.08KB
    上传者: Goodluck2020
    PI-di70PoEDetectionandClassification(Class0)InterfaceCircuit.pdf
  • 所需E币: 5
    时间: 2020-6-25 16:32
    大小: 1.5MB
    上传者: kaidi2003
    TND6223-D_ONSEMI_MoistureIntrusionDetectionSystem.PDF
  • 所需E币: 1
    时间: 2020-5-9 17:45
    大小: 722.14KB
    上传者: 指的是在下
    COMBININGIMAGEENTROPYWITHTHEPULSECOUPLED NEURALNETWORKINEDGEDETECTION 2010
  • 所需E币: 5
    时间: 2019-12-25 22:44
    大小: 231.79KB
    上传者: 微风DS
    AbstractInrecenttwentyyears,thetechniqueoffacedetectionandfacerecognition,asoneoftheimportantresearchareaofcomputervisionandimageunderstanding,attractsmoreandmoreattention.Ingeneral,facedetectioningray-levelstillimagesismoredifficultthanthatincolorimages.Thereforethispaperbrieflysurveysthisareaandindicatessomeissuesforexploration.……
  • 所需E币: 4
    时间: 2019-12-25 17:31
    大小: 189.81KB
    上传者: givh79_163.com
    ErrorDetection&RecoveryUsingCRCinAlteraFPGADevices……
  • 所需E币: 4
    时间: 2019-12-25 15:01
    大小: 471.94KB
    上传者: 2iot
    TraditionalDSPisbasedonalgorithms,changingdatafromoneformtoanotherthroughstep-bystepprocedures.Mostofthesetechniquesalsoneedparameterstooperate.Forexample:recursivefiltersuserecursioncoefficients,featuredetectioncanbeimplementedbycorrelationandthresholds,animagedisplaydependsonthebrightnessandcontrastsettings,etc.Algorithmsdescribewhatistobedone,whileparametersprovideabenchmarktojudgethedata.Theproperselectionofparametersisoftenmoreimportantthanthealgorithmitself.Neuralnetworkstakethisideatotheextremebyusingverysimplealgorithms,butmanyhighlyoptimizedparameters.Thisisarevolutionarydeparturefromthetraditionalmainstaysofscienceandengineering:mathematicallogicandtheorizingfollowedbyexperimentation.Neuralnetworksreplacetheseproblemsolvingstrategieswithtrial&error,pragmaticsolutions,anda"thisworksbetterthanthat"methodology.ThischapterpresentsavarietyofissuesregardingparameterselectioninbothneuralnetworksandmoretraditionalDSPalgorithms.CHAPTERNeuralNetworks(andmore!)26TraditionalDSPisbasedonalgorithms,changingdatafromoneformtoanotherthroughstep-by-stepprocedures.Mostofthesetechniquesalsoneedparameterstooperate.Forexample:recursivefiltersuserecursioncoefficients,featuredetectioncanbeimplementedbycorrelationandthresholds,animagedisplaydependsonthebrightnessandcontrastsettings,etc.Algorithmsdescribewhatistobedone,whileparametersprovideabenchmarktojudgethedata.Theproperselectionofparametersisoftenmoreimportantthanthealgorithmitself.Neuralnetworkstakethisideatotheextremebyusingverysimplealgorithms,butmanyhighlyoptimizedparameters.Thisisarevolutionarydeparturefromthetraditionalmai……
  • 所需E币: 3
    时间: 2020-1-2 02:27
    大小: 190.5KB
    上传者: 238112554_qq
    本应用指南描述了缺陷定位技术的突破,这是Temptronic公司的一种新设备所提供的功能……
  • 所需E币: 3
    时间: 2020-1-6 12:42
    大小: 96.88KB
    上传者: 微风DS
    UsingParitytoDetectMemoryErrorsinStratixDevicesWhitePaper……
  • 所需E币: 4
    时间: 2019-12-24 22:52
    大小: 278.8KB
    上传者: 微风DS
    摘要:以下讨论验证了一个被现存A/D转换器应用所忽略的选择:有些条件下采用分立的比较器和D/A转换器更容易实现A/D转换。这种替代方案通常采用不同的测试方法,但是具有低成本、高速度、更大灵活性以及更低功耗等优点。利用比较器/DAC组合解决数据采集问题Mar01,2012摘要:以下讨论验证了一个被现存A/D转换器应用所忽略的选择:有些条件下采用分立的比较器和D/A转换器更容易实现A/D转换。这种替代方案通常采用不同的测试方法,但是具有低成本、高速度、更大灵活性以及更低功耗等优点。尽管当前趋势全部集中一个方向―设计者需要使用A/D转换器时通常选定一个集成的A/D转换器(ADC)。大多数工程师并没有意识到还有降低ADC性价比的其它替代方案。而模拟比较器、D/A转换器(DAC)和信号处理一起恰好就是构成逐次逼近ADC的核心电路。某些特定领域,分立比较器/DAC的使用非常普遍。自动测试设备、核脉冲反应堆高度监测器以及自动化时域反射计等,通常都采用这种技术,DAC用于驱动比较器的一个输入,另一个输入由被监测信号驱动。接下来是通用测试问题以及特定方法的选择,事实上,此时采用比较器/DAC组合比采用现成的ADC更受欢迎。瞬态电压分析捕获快速幅度变化事件(瞬态)的“强力”技术就是采用处理器支持的高速ADC和RAM对其进行简单量化(图1)。单触发事件可能必须采用这种方法,因为需要获取瞬态细节。然而,如果瞬态是重复性的,则可采用DAC/比较器的方法测量它们的峰值幅度及其它特性(图2)。图1.采用“强力”法进行瞬态分析,ADC电路耗电大且价格昂贵图2.如果图1应用可接受对幅度进行重复测量,用DAC/比较器组合替代ADC可省电并降低成本比较器的一个输入引脚由DAC设置判定电平,瞬态信号施加到另一个输入。通过调整DAC输出可确定峰值瞬态幅度,超越门限时,采用数字锁存捕获比较器的输出响应。仅需要比较器输入支持瞬态带宽,任意长的DAC输出建立时间并不会影响测量精度。这样,在模拟域可用低成本DAC和……
  • 所需E币: 3
    时间: 2019-12-24 22:47
    大小: 278.9KB
    上传者: 2iot
    摘要:以下讨论验证了一个被现存A/D转换器应用所忽略的选择:有些条件下采用分立的比较器和D/A转换器更容易实现A/D转换。这种替代方案通常采用不同的测试方法,但是具有低成本、高速度、更大灵活性以及更低功耗等优点。利用比较器/DAC组合解决数据采集问题Mar01,2012摘要:以下讨论验证了一个被现存A/D转换器应用所忽略的选择:有些条件下采用分立的比较器和D/A转换器更容易实现A/D转换。这种替代方案通常采用不同的测试方法,但是具有低成本、高速度、更大灵活性以及更低功耗等优点。尽管当前趋势全部集中一个方向―设计者需要使用A/D转换器时通常选定一个集成的A/D转换器(ADC)。大多数工程师并没有意识到还有降低ADC性价比的其它替代方案。而模拟比较器、D/A转换器(DAC)和信号处理一起恰好就是构成逐次逼近ADC的核心电路。某些特定领域,分立比较器/DAC的使用非常普遍。自动测试设备、核脉冲反应堆高度监测器以及自动化时域反射计等,通常都采用这种技术,DAC用于驱动比较器的一个输入,另一个输入由被监测信号驱动。接下来是通用测试问题以及特定方法的选择,事实上,此时采用比较器/DAC组合比采用现成的ADC更受欢迎。瞬态电压分析捕获快速幅度变化事件(瞬态)的“强力”技术就是采用处理器支持的高速ADC和RAM对其进行简单量化(图1)。单触发事件可能必须采用这种方法,因为需要获取瞬态细节。然而,如果瞬态是重复性的,则可采用DAC/比较器的方法测量它们的峰值幅度及其它特性(图2)。图1.采用“强力”法进行瞬态分析,ADC电路耗电大且价格昂贵图2.如果图1应用可接受对幅度进行重复测量,用DAC/比较器组合替代ADC可省电并降低成本比较器的一个输入引脚由DAC设置判定电平,瞬态信号施加到另一个输入。通过调整DAC输出可确定峰值瞬态幅度,超越门限时,采用数字锁存捕获比较器的输出响应。仅需要比较器输入支持瞬态带宽,任意长的DAC输出建立时间并不会影响测量精度。这样,在模拟域可用低成本DAC和……
  • 所需E币: 5
    时间: 2019-12-24 22:04
    大小: 145.27KB
    上传者: 2iot
    Abstract:Tamperingwithelectricenergymeasurementcausessignificantrevenuelosstotheenergyproviders.TheMAXQ3183polyphaseAFEprovidescurrentvectorsummeasurementsfortamperdetection.ThisapplicationnotedescribeshowtoconfiguretheMAXQ3183forthree-currentvectorsum.Testresultsgeneratedwithareferencedesignmeterareprovided.Maxim>AppNotes>ASICsEnergyMeasurement&MeteringMicrocontrollersKeywords:MAXQ3183,vectorsum,tamperdetection,energymeterOct27,2010APPLICATIONNOTE4664HowtoConductThree-CurrentVectorSumMeasurementsBy:KennethTangAbstract:Tamperingwithelectricenergymeasurementcausessignificantrevenuelosstotheenergyproviders.TheMAXQ3183polyphaseAFEprovidescurrentvectorsummeasurementsfortamperdetection.ThisapplicationnotedescribeshowtoconfiguretheMAXQ3183forthree-currentvectorsum.Testresultsgeneratedwithareferencedesignmeterareprovided.Downloadassociatedsoftware(ZIP).IntroductionTamperingwiththemeasurementofelectricenergyoccursinavarietyofformsandcauses……
  • 所需E币: 5
    时间: 2019-12-24 21:52
    大小: 167.1KB
    上传者: 16245458_qq.com
    Abstract:Thisapplicationnotehelpsdesignerschoosethecorrectexternalcomponentstoensurethatautomobileantenna-detectioncircuitrymeetsperformanceobjectives.AcalculatordetailshowtospecifythecriticalexternalcomponentsfortheMAX16913/MAX16913Aremoteantennacurrent-senseamplifiersandswitches.Thecalculatoralsodeterminesthedevice'soperationalwindowsandanalogoutputvoltageaccuracy.Anexamplecalculationisgiven.Maxim>Designsupport>Appnotes>AmplifierandComparatorCircuits>APP4798Maxim>Designsupport>Appnotes>Automotive>APP4798Keywords:currentsenseamplifier,automotiveantenna,antennapowersupply,remoteantennapowersupply,remoteantennapower,phantompower,radioantennalna,activeantennadetection,antennadiagnosticsJun24,2011APPLICATIONNOTE4798HowtoCalculatetheOperatingWindowsforaRemoteAntennaCurrent-SenseAmplifierandSwitchRobertRegensburger,AutomotiveSpecialist,AutomotiveProductDefinitions,MaximIntegratedBy:Products,GermanyAbstract:Thisapplicationnotehelpsdesignerschoosethecorrecte……
  • 所需E币: 3
    时间: 2019-12-24 21:52
    大小: 79.77KB
    上传者: wsu_w_hotmail.com
    Abstract:ThisarticlediscussesseveralwaystoincreasethecurrentthattheMAX44000proximitysensorcandrivethroughaninfraredLED.Thesemethodsrangefromverysimpletofairlycomplex,andallowtheusertodetectobjectsmuchfartherfromtheproximitysensor.Maxim>DesignSupport>AppNotes>AmplifierandComparatorCircuits>APP5087Maxim>DesignSupport>AppNotes>Sensors>APP5087Keywords:proximity,als,optical,infrared,sensors,tablets,laptops,notebooks,humanpresencedetection,LEDJul25,2011APPLICATIONNOTE5087ReachFartherwithYourProximitySensorBy:IlyaVeygman,StrategicApplicationsEngineerAbstract:ThisarticlediscussesseveralwaystoincreasethecurrentthattheMAX44000proximitysensorcandrivethroughaninfraredLED.Thesemethodsrangefromverysimpletofairlycomplex,andallowtheusertodetectobjectsmuchfartherfromtheproximitysensor.BackgroundTheMAX4400……
  • 所需E币: 3
    时间: 2019-12-24 21:26
    大小: 35.45KB
    上传者: 238112554_qq
    Abstract:Asimplecircuitemploysasmalltransformerandlatchedcomparatortosensethestateofadigitallinewithoutdrawingpowerfromtheline.Maxim>AppNotes>AmplifierandComparatorCircuitsKeywords:galvanicisolation,digitalstatedetection,single-turntransformerMar23,2005APPLICATIONNOTE3473ReadIsolatedDigitalStatesWithoutPowerDrainAbstract:Asimplecircuitemploysasmalltransformerandlatchedcomparatortosensethestateofadigitallinewithoutdrawingpowerfromtheline.AsimilarversionofthisarticleappearedintheNovember25,2004issueofEDNmagazine.Electronicsystemsmustoftenisolatetheirinputsoroutputsfromthemainreferencecommon(ground).Variousconditionscanmakenecessarysuchgalvanicisolation:thetypeofinputsensorordrivenactuator,safetyconsiderationsformedicalequipmentattached……
  • 所需E币: 3
    时间: 2019-12-24 20:26
    大小: 83.56KB
    上传者: 微风DS
    两个精度运算放大器(MAX4236)、参考电压源(MAX6143)、与非门,,相关的组件,此直流电压探测器电路断言数字输出信号时的输入是居中0V±100mV窗口内。Maxim>Designsupport>Appnotes>AmplifierandComparatorCircuits>APP4568Maxim>Designsupport>Appnotes>CircuitProtection>APP4568Maxim>Designsupport>Appnotes>MicroprocessorSupervisorCircuits>APP4568Keywords:bipolardc-voltagedetection,high-impedanceinputs,galvanicisolationJan26,2011APPLICATIONNOTE4568BipolarDC-VoltageDetectorOffersSensitivityandPrecisionAbstract:Comprisedoftwoprecisionopamps(MAX4236),avoltagereference(MAX6143),aNANDgate,andassociatedcomponents,thisDC-voltagedetectorcircuitassertsadigitaloutputsignalwhentheinputiswithina±100mVwindow,centeredat0V.Asimilarver……
  • 所需E币: 5
    时间: 2019-12-24 20:24
    大小: 79.77KB
    上传者: 16245458_qq.com
    摘要:本文讨论了几种方式来增加电流,MAX44000接近传感器可以通过红外LED驱动。这些方法的范围从非常简单到相当复杂的,并允许用户从接近传感器检测对象更远。Maxim>DesignSupport>AppNotes>AmplifierandComparatorCircuits>APP5087Maxim>DesignSupport>AppNotes>Sensors>APP5087Keywords:proximity,als,optical,infrared,sensors,tablets,laptops,notebooks,humanpresencedetection,LEDJul25,2011APPLICATIONNOTE5087ReachFartherwithYourProximitySensorBy:IlyaVeygman,StrategicApplicationsEngineerAbstract:ThisarticlediscussesseveralwaystoincreasethecurrentthattheMAX44000proximitysensorcandrivethroughaninfraredLED.Thesemethodsrangefromverysimpletofairlycomplex,andallowtheusertodetectobjectsmuchfartherfromtheproximitysensor.BackgroundTheMAX4400……
  • 所需E币: 3
    时间: 2019-12-24 20:22
    大小: 35.45KB
    上传者: 2iot
    比较器感应到数字线路的状态,而不画线的电源。Maxim>AppNotes>AmplifierandComparatorCircuitsKeywords:galvanicisolation,digitalstatedetection,single-turntransformerMar23,2005APPLICATIONNOTE3473ReadIsolatedDigitalStatesWithoutPowerDrainAbstract:Asimplecircuitemploysasmalltransformerandlatchedcomparatortosensethestateofadigitallinewithoutdrawingpowerfromtheline.AsimilarversionofthisarticleappearedintheNovember25,2004issueofEDNmagazine.Electronicsystemsmustoftenisolatetheirinputsoroutputsfromthemainreferencecommon(ground).Variousconditionscanmakenecessarysuchgalvanicisolation:thetypeofinputsensorordrivenactuator,safetyconsiderationsformedicalequipmentattached……