




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
国际会议英文主持词篇一:英文国际会议讲稿
PPT(1)
大家上午好!今天我汇报的主题是:基于改良型LBP算法的运动目的检测系统。运动目的检测技术能降低视频监控的人力本钱,进步监控效率,同时也是运动目的提取、跟踪及识别算法的根底。图像信号具有数据量大,实时性要求高等特征。随着算法的复杂度和图像明晰度的进步,需要的处理速度也越来越高。幸运的是,图像处理的固有特性是并行的,尤其是低层和中间层算法。这一特性使这些算法,比拟容易在FPGA等并行运算器件上实现,今天汇报的主题就是关于改良型LBP算法在硬件上的实现。
goodmorningeveryone.
MyreportisaboutaMotionDetectionSystemBasedonImprovedLBPOperator.
Automaticmotiondetectioncanreducethehumancostofvideosurveillanceandimproveefficiency[[rekPPT(2)
目前,常用的运动目的检测算法有背景差分法、帧间差分法等。帧间差分法的根本原理是将相邻两帧图像的对应像素点的灰度值进展减法运算,假设得到的差值的绝对值大于阈值,那么将该点断定为运动点。但是帧间差分检测的结果往往是运动物体的轮廓,无法获得目的的完好形态。
Currently,OpticFlow,BackgroundSubtractionandInter-framedifferenceareregardasthethreemainstreamalgorithmstodetectmovingobject.
Inter-framedifferencebasedmethodneednotmodel['mPPT(3)
在摄像头固定的情况下,背景差分法较为简单,且易于实现。假设背景,并能提供完好的特征数据,该方法能较准确地检测出运动目的。但在实际的应用中,准确的背景模型很难建立。假设背景模型假设没有很好地适应场景的变化,将大大影响目的检测结果的准确性。像这副图中,背景模型没有及时更新,导致了检测的错误。
Thebasicprincipleofbackgroundremovalmethodisbuildingabackgroundmodelandprovidingaclassificationofthepixelsintoeitherforegroundorbackground[3-5].Inaplexanddynamicenvironment,itisdifficulttobuildarobust[rPPT(4)
上述的帧间差分法和背景差分法都是基于灰度的。基于灰度的算法在光照条件改变的情况下,性能会大大地降低,甚至失去作用。
Thealgorithmswehavediscussedaboveareallbasedongrayscale.Inpracticalapplicationsespeciallyoutdoorenvironment,thegrayscalesofeachpixelareunpredictablyshiftybecauseofthevariationsintheintensityandangleofillumination.
PPT(5)
为理解决光照改变带来的基于灰度的算法失效的问题,我们考虑用纹理特征来检测运动目的。而LBP算法是目前最常用的表征纹理特征的算法之一。首先在图像中提取相邻9个像素点的灰度值。然后对9个像素中除中心像素以外的其他8个像素做二值化处理。大于
等于中心点像素的,标记为1,小于的那么标记为0。最后将中心像素点周围的标记值按统一的顺序排列,得到LBP值,图中计算出的LBP值为10001111。当某区域内所有像素的灰度都同时增大或减小一定的数值时,该区域内的LBP值是不会改变的,这就是LBP对灰度的平移不变特性。它可以很好地解决灰度受光照影响的问题。
Inordertosolvetheaboveproblems,weproposedanimprovedLBPalgorithmwhichisresistancetothevariationsofillumination.
Localbinarypattern(LBP)iswidelyusedinmachinevisionapplicationssuchasfacedetection,facerecognitionandmovingobjectdetection[9-11].LBPrepresentsarelativelysimpleyetpowerfultexturedescriptorwhichcandescribetherelationshipofapixelwithitsimmediateneighborhood.ThefundamentalofLBPoperatorisshowedinFig1.ThebasicversionofLBPproduces256texturepatternsbasedona9pixelsneighborhood.Theneighboringpixelissetto1or0accordingtothegrayscalevalueofthepixelislargerthanthevalueofcentricpixelornot.Forexample,inFig17islargerthan6,sothepixelinfirstrowfirstcolumnissetto1.Arrangingthe8binarynumbersincertainorder,wegetan8bitsbinarynumber,whichistheLBPpatternweneed.ForexampleinFig.1,theLBPis10001111.LBPistolerant['tPPT(6)
图中的一些常见的纹理,都能用一些简单的LBP向量表示,对于每个像素快,只需要用一个8比特的LBP值来表示。
Therearesometextures,andtheycanberepresentbysomesimple8bitLBPpatterns.PPT(7)
从这幅图也可以看出,虽然灰度发生了很大的变化,但是纹理特征并没有改变,LBP值也没有变化。
Youcansee,inthesepicture,althoughthegrayscalechangealot,buttheLBPpatternskeepitvalue.
PPT(8)
上述的算法是LBP算法的根本形式,但是这种根本算法不适宜直接应用在视频监控系统中。主要有两个原因:第一,在常用的视频监控系统中,特别是在高清视频监控系统中,9个像素点覆盖的区域很小,在如此小的区域内,各个像素点的灰度值非常接近,甚至是一样的,纹理特征不明显,无法在LBP值上表达。第二,由于以像素为单位计算LBP值,像素噪声会造成LBP值的噪声。这两个原因导致计算出的LBP值存在较大的随机性,甚至在静止的图像中,相邻两帧对应位置的LBP值也可能存在差异,从而引起的误检测。
为了得到更好的检测性能,我们采用基于块均值的LBP算法。这种方法的根本原理是先计算出3×3个像素组成的的像素块的灰度均值,以灰度均值作为该像素块的灰度值。然后以3×3个像素块〔即9×9个像素〕为单位,计算LBP值。
ThetypicalLBPcannotmeettheneedofpracticalapplicationofvideosurveillancefortworeasons:Firstly,a“window〞whichonlycontains9pixelsisasmallareainwhichthegrayscalesofpixelsaresimilarorsametoeachother,andthetexturefeatureinsuchasmallareaistooweaktobereflectedbyaLBP.Secondly,pixelnoisewillimmediatelycausethenoiseofLBP,whichmayleadtoalargenumberofwrongdetection.Inordertoobtainabetterperformance,weproposedanimprovedLBPbasedonthemeanvalueof“block〞.Inouralgorithm,oneblockcontains9pixels.paredwithoriginalLBPpatterncalculatedinalocal9neighborhoodbetweenpixels,theimprovedLBPoperatorisdefinedbyparingthemeangrayscalevalueofcentralblock
withthoseofitsneighborhoodblocks(seeFig.2).Byreplacingthegrayscalesofpixelswiththemeanvalueofblocks,theeffectofthepixelnoiseisreduced.ThetexturefeatureinsuchabiggerareaismoresignificanttobedescribedbyLBPpattern.
PPT(9)
运用LBP描绘背景,其本质上也是背景差分法的一种。背景差分法应用在复杂的视频监控场景中时,要解决建立强健的背景模型的问题。驶入并停泊在监控画面中的汽车,被搬移出监控画面的箱子等,都会造成背景的改变。而正确的背景模型是正确检测出运动目的并提取完好目的轮廓的根底。假设系统能定时更新背景模型,将已经挪动出监控画面的物体“剔除〞出背景模型,将进入监控画面并且稳定停留在画面中的物体“添加〞入背景模型,会减少很多由于背景改变而造成的误检测。
根据前一节的介绍,帧间差分法虽然无法提取完好的运动目的,但是它是一种不依赖背景模型就能进展运动目的检测的算法。因此,可以利用帧间差分法作为当前监控画面中是否有运动目的的根据。假设画面中没有运动目的,就定期对背景模型进展更新。假设画面中有运动目的,就推延更新背景模型。这样就能防止把运动目的错误地“添加〞到背景模型中。Inpracticalapplication,thebackgroundischangingrandomly.Fortraditionalbackgroundsubtractionalgorithmtheincapabilityofupdatingbackgroundtimelywillcausewrongdetection.Inordertosolvethisproblem,weproposeanalgorithmwithdynamicselfupdatingbackgroundmodel.Asweknow,Inter-framedifferencemethodcandetectmovingobjectwithoutabackgroundmodel,butthismethodcannotextractthefullshape.Backgroundsubtractionmethodcanextractthefullshapebutneedsabackgroundmodel.Thebasicprincipleofouralgorithmisrunningaframedifferencemovingobjectdetectionprocessconcurrently[kPPT(10)
运动目的检测系统特别是嵌入式运动目的检测系统在实际应用中要解决实时性的问题。比方每秒60帧的1024×768的图像,对每个像素都运用求均值,求LBP等算法,那么它的运算量是非常宏大的,为此我们考虑在FPGA上用硬件的方式实现。
IfLBPalgorithmisimplementedinasoftwareway,itwillbeveryslow.FPGAhavefeaturesofconcurrentputation,reconfigurationandlargedatathroughput.Itissuitabletobebuiltanembeddedsurveillancesystem.ThealgorithmintroducedaboveisimplementedonaFPGAboard.
PPT(11)
这就是我们硬件实现的系统构造图。首先输入系统的RGB像素信号的滤波、灰度计算及LBP计算,得到各个像素块的LBP值。然后背景更新控制模块利用帧差模块的检测结果控制背景缓存的更新。区域断定模块根据背景差模块的输出结果,结合像素块的坐标信息,对前景像素块进展区域断定。
Thestructureofthesystemisshowedinthisfigure.Inthissystem,aVGAsignalisinputtothedevelopmentboard.andtheLBPpatterniscalculated,Framedifferencemodulealsoparesthecurrentframeandthepreviousframetodeterminewhetherthereisamovingobjectinthesurveillancevision.Ifthesurveillancevisionisstaticforacertainamountofframe,thebackgroundmodelwillbeupdated.
PPT(12)
图中是LBP计算模块。图中所示的窗口提取构造可以实现3×3像素块窗口的提取。像素信号按顺序输入该构造,窗口中的数据就会按顺序出如今Pixel1-Pixel9这9个存放器中,
从而在最短的延时内提取出相邻9个像素点的灰度值。行缓存的大小等于每一行图像包含的像素个数减1。将9个像素点的灰度值通过求均值模块,可以求出一个像素块的像素均值。
将像素块均值作为输入再次通过类似的构造,可以提取出3×3个相邻像素块的灰度值。这时行缓存的大小为每一行包含的像素块的个数减1。再用9个窗口的灰度值作为输入,用比拟器阵列计算出最终的LBP值。
ToachieverealtimeputationoftheLBP,acircuitstructureisputforwardasshowedinFig.5.Twolinebuffersandnineresistersareconnectedinthewayshowedinthefigure.Nineneighborpixelsareextractedwithminimum['mPPT(13)
求均值模块采用如图3-12所示的四级流水方式实现。在算法的设计过程中,需要求出的是3×3像素块中9个像素的均值。但是在硬件实现时,为了更合理地利用硬件资源,只计算剔除中心像素后的8个像素的均值。这样做可以在不对计算结果造成太大影响的情况下减少加法器的使用。而且在求均值的最后一级流水,除8运算比除9运算更容易实现。因为8是2的整数幂,除8运算只需要将各个像素的和右移3位。而除9运算在FPGA中需要专用的DSP模块来完成。
PPT(14)
如以下图,块均值计算模块计算出的8个块均值被图3-11中的窗口提取模块提取出来,并作为比拟器阵列的输入,比拟器的输出结果用0和1表示。最终的比拟结果按一定的顺序排列,重新拼接成一个8位的二进制数,即LBP值。LBP计算电路没有采用流水构造,在一个时钟周期内就能得到计算结果。
PPT(15)
这个是在系统测试中,实现对多个目的的检测。
Inthissystemtest,weachieveamulti-objectdetection.
PPT(16)
这个图是对动态背景更新的测试,在监控区域中划定一个目的区域,把一个静止的物体放置到目的区域中。在前3分钟内,系统会将其当做前景目的,矩形窗口会以闪烁的形式发出报警信号。3分钟过后,由于物体一直处于静止状态,系统检测到了10800个静止帧,于是更新背景模型。静止的物体被当做背景的一局部,此后窗口不再闪烁。经历证,该系统可以正确实现背景模型更新算法。
Thisisthetestfortheautobackgroundupdate.Weputastaticsobjectinthesurveillancearea,atthebeginningthisistrustedasamovingobject.after3minutes,thesystemreceivetenthousandstaticframes,andthenupdatethebackgroundmodel.Thenthisobjectisregardasapartofthebackground.
PPT(17)
此外为了验证系统对室外光照变化抑制才能,我们选取了大量有光照变化,并且有运动目的的视频对系统进展了测试。
Inordertoverifytheresistancetothevarationofillumination,acertificationexperimentisdesigned,andtheROCcurvesofthetwoalgorithmsbasedonLBPandgrayscaleareplottedandpared.Anumberofshortvideoclipswithshiftyandfixedillumination,includingpositive
sampleswithmovingobjectsandnegativesampleswithoutmovingobjects.
PPT(18)测试平台如以下图。用一台PC机作为测试信号的输出源,然后在PC机中播放视频,并将视频VGA信号发送给运动目的检测系统,模拟真实的监控环境。FPGA将输入信号和区域边框图形相叠加后在LCD上显示。
Thepictureofthecertificationexperimentisshowedinthispicture.APCactsasthesourceofthetestsignalwhichisinputtotheFPGAintheformofVGA.PassingthroughtheFPGAboard,videosignalisdisplayedonaLCDscreen.
PPT(19)
并最终描绘了系统的ROC特性曲线。在没有光照强度变化的情况下,采用基于灰度的运动目的检测算法的性能略优于基于LBP值的运动目的检测算法,两种算法都能获得较好的检测效果。但是在图5-15中〔测试集2〕,也就是在光照强度变化的情况下,画面整体灰度发生较大的改变,基于灰度的检测算法的性能大幅度下降,接近于失效。而采用LBP值的检测算法却能维持较好的性能。可见基于LBP的检测算法对抑制光照强度变化造成的误检测有较好的效果。
ThistwofigurearetheROCcurvesoftheexperimentsusingouralgorithmandtraditionalgrayscale-basedalgorithm.WecanseeintheFig.1whichcorrespondstotheconditionwithfixedillumination,theperformanceofthegrayscale-basedalgorithmisslightlybetterthantheseofLBP-basedalgorithm,theycanbothdetectmovingobjecteffectively.ButinFig.2whichcorrespondstotheconditionwithshiftyillumination,grayscalebasedalgorithmdeterioratesdrasticallyandnearlyloseefficacy['efPPT(20)
谢谢大家!
Thanksforyourattention
篇二:英文国际学术会议开幕词演讲稿
InternationalConferenceonSpaceTechnology
Distinguishedguests,distinguisheddelegates,ladiesandgentlemen,andallthefriends:
AtthisspecialtimeofwonderfulSeptember,inthisgrandhallofthebeautifulcity,ourrespectableguestsareheregettingtogether.JointlysponsoredbytheInternationalAstronauticalFederation(IAF),InternationalAcademyofAstronautics(IAA)andtheInternationalInstituteofSpaceLaw(IISL),undertakenbyChinaNationalConventionCenteratBeijing,thesixty-fourthsessionoftheInternationalAstronauticalCongresswillbeopen.Now,firstofall,pleaseallowmetogiveourheartyweletoallofyoupresent,andthankyou,foryourfriendlying.Wefeelsoproud,andappreciatedaswelltobethehostoftheevent.
Forthisconference,wearefollowingtheagendahere.Themeetingissupposedtolastforfivedays,itisthefirstcongresswhichcoversthetruesenseofspacescienceandexploration,spaceapplicationsandoperations,spaceinfrastructure,spaceandsocietymultidimensionalfields.Andittobeseparatedintotwoparts,tobeginwith,we’llinvitesomerepresentativesfromourgueststogivelecturesabouttheirlatestresearchesandreportsontheissue,andthenwewillhavesomesymposiums.AndfinallyIwishyouanunforgettableandprefectexperiencehere.
Thankyou!
篇三:英文学术会议主持人发言稿
模拟国际会议主持词
一、开题语
Goodmorning,ladiesandgentleman.WeletoChicago,abeautifulcityofAmerica.I’m^^^^^^^^^^^^^^^^,from***********UniversityofChina.Itsaveryverygreatpleasuretoparticipateinthe110THAssociationofAmericanGeographersConferenceasthechairman,itsmyfirsttimetodoso.AndIreallyenjoybeingstayherewithyouthismorning.
TheInternationalGeographyConferencehasbeenheld110thtimesbytheAssociationofAmericanGeographers(AAG)institutesince1904.Thepurposeoftheconferenceshavecontributedtoshareourexperiencesandknowledgeoftheadvancementofgeography,frontierdevelopmentsandreaserches,aswellaspossibleapplicationsoftheminsolvingpracticalproblems.Alotofcurrentissueshavebeendiscussed,andsomeofthemhavebeeneffectivelysoluted.
WeletotheAssociationofAmericanGeographers'AnnualMeetinginLosAngeles,California!Youwillbejoinedbyfellowgeographers,GISspecialists,environmentalscientists,andotherleadersforthelatestinresearchandapplicationsingeography,sustainability,andGISscience.ThemeetingwillbeheldfromDecember14toDecember18,2022,andwillfeatureover6,000presentations,posters,workshops,andfieldtripsbyleadingscholars,experts,andresearchers.
Today,asthefirsttimeoftheconferencedebutinthiscity,we’llhaveauniquesession.ThetopicofpreparedpresentationsistheapplicationofquantitativemethodsinGeography,Today’sspeakerswillsharetheirthoughtsonhowtoeffectivelyrunmodelsindifferentissuesandgiveareasonableanswer.Then,we’llhaveaQuestionandAnswersession,whichallowstheeveryonetoasksomequestionsyoumaybeinterested.Iamsurethatyouwillfindsometopicstobepresentedbothinterestingandinformative.
二、介绍第一个演讲者
Now,Letmeintroducethefirstspeaker,whoisveryveryrich,notindollars,butinknowledgeandexperiences,ShegotherPh.Dinthenaturalgeography
***********University,followedbyaseriesofteachingandresearchpositionsatSunYat-senUniversity.Pleasedon’thesitatetojoinmeinwelingourfirstspeaker,Prof.********,whosetopicis***************.Wele.
三、对第一个演讲者做总结
Wow.Whataninnovativeidea.Distinguishingtheimpactofclimatechangeandhumanactivitiesonrunoffchangesisaproblemthathaspuzzledresearchersforalongtime.Thisstudyhasdevelopedaframeworktoseparatetheimpactsofclimatechangeandhumanactivitiestosurfacerunoff.Theinformationfromthisstudywillassistwithbetteruseandmanagementofwaterresourcesforresidentsandeconomic
developmentinsouthernChina.Thankyoufortheexcellentpresentationsandideas.
四、介绍第二个演讲者
Now,I’llbeverypleasedandexcitedtointroducethenextspeaker,Prof.************,whoistheProf.of^^^^^^^^^^University.
Torepresentthesponsorhostunit,it’sthefifthtimeforhimtobethefin
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年度医疗不良事件总结模版
- 苏教版五年级下册语文教学总结模版
- 临时广告牌合同范例
- 医疗设备与地产开发融合的未来趋势分析
- 供应链金融中区块链技术的对公服务优化策略
- 代办房屋过户服务合同范例
- 办公自动化与区块链技术的销售融合
- 书籍采购协议合同范例
- 2025年幼儿园教学总结模版
- 储备管理合同范例
- 人人学点营销学(请分别进入班级观看视频不要在默认班级观看观看无效)学习通超星期末考试答案章节答案2024年
- 一例乳癌个案护理
- 高效能人士的七个习惯(课件)
- 2024年离婚不离家互不干涉的婚姻协议书范文
- DBJ04∕T 290-2012 袖阀管注浆加固地基技术规程
- 2024年贵州六盘水市中考道德与法治试卷真题(含答案详解)
- 第七章第四节创新实验葡萄糖银镜反应实验的改进设计课件高一下学期化学人教版
- 2024-2030年中国冻干猫粮行业供需现状及未来投资效益盈利性研究报告
- 民宿合同转让协议书
- 五年级下学期科学立体小菜园课件
- 《临床药物治疗学》考试复习题库宝典(含答案)
评论
0/150
提交评论