验证可以在win10下破解quartusii13.1的。
在其中还附带了不能破解的破解器13.0,做为参考。
破解器13.0不能解决Error(119013):CurrentlicensefiledoesnotsupporttheEP4CE10F17C8device问题,13.1才能。
2024/6/7 14:52:04 39KB quartus ii13.1
1
求取图像二值化时阈值的方法,otsu法,也称为大津法,
2024/5/10 3:24:56 320KB otsu
1
xilliixpciedma驱动(基于xilnxxdmaip核4.0的WDF驱动)---#XDMAWindowsDriverThisprojectisXilinx'ssampleWindowsdriverfor'DMA/BridgeSubsystemforPCIExpressv4.0'(XDMA)IP.*Pleasenotethatthisdriverandassociatedsoftwarearesuppliedtogiveabasicgenericreferenceimplementationonly.Customersmayhavespecificuse-casesand/orrequirementsforwhichthisdriverisnotsuitable.*###Dependencies*TargetmachinerunningWindows7orWindows10*DevelopmentmachinerunningWindows7(orlater)*VisualStudio2015(orlater)installedondevelopmentmachine*WindowsDriverKit(WDK)version1703(orlater)installedondevelopmentmachine##DirectoryStructure```/|__build/-Generateddirectorycontainingbuildoutputbinaries.|__exe/-Containssampleclientapplicationsourcecode.||__simple_dma/-SamplecodeforAXI-MMconfiguredXDMAIP.||__streaming_dma/-SamplecodeforAXI-STconfiguredXDMAIP.||__user_events/-Samplecodeforaccesstousereventinterrupts.||__xdma_info/-UtilityapplicationwhichprintsouttheXDMAcoreip||configuration.||__xdma_rw/-Utilityforreading/writingto/fromxdmadevicenodessuch||ascontrol,user,bypass,h2c_0,c2h_0etc.||__xdma_test/-BasictestapplicationwhichperformsH2C/C2Htransferson|allpresentchannels.|__inc/-ContainspublicAPIheaderfileforXDMAdriver.|__libxdma/-StatickernellibraryforXDMAIP.|__sys/-Referencedriversourcecodewhichuseslibxdma|__README.md-Thisfile.|__XDMA.sln-VisualStudioSolution.```
2024/5/1 17:41:35 86KB PCIE DRIVER DMA 驱动
1
一维Otsu,大津法(最大类间方差法)阈值分割。
Matlab2016a,同一原理推导的两种公式求解类间方差,数值计算原因导致结果有所差异。
2024/2/6 3:18:10 2KB Matlab;Otsu
1
使用MFC在VS2013编写的数字图象处理软件,能够实现相当强大的功能。
BMP格式读取保存DFTFFT直方图色调均化缩放模糊锐化滤镜形态学处理曲线裁剪灰度图彩色图自动阈值等等...除此之外还有很多其他小功能...建议使用VS2013打开!!!核心代码在Bmp.cpp中!!!更新文档:2014年6月18日更新说明:这次应该是上交的最后一次作业了,在今日的展示结束之后总体情况还好,但是发现了几个问题。
首先是这个程序是在win8环境下设计的,所以程序的一些大小参数以及按钮图片的位置参数是适合在win8的环境下操作,在设计报告中使用的操作系统也是win8。
而如果将该程序移动至win7系统上操作的话可以在大小与位置上会出现一些偏差,所以推荐将该程序在win8系统下运行,如果没有win8系统但是想重装的话可以找我。
然后本次更新的内容就是对设计报告中的要求的一些补充,比如图片的裁剪功能,还有一些照旧的BUG修复了。
关于这个裁剪功能,在程序中的图像裁剪中有一个说明按钮,在设计报告中有提到怎么使用的,所以在这里就不一一说明了,其实就跟在PS上用裁剪差不多,很容易用的。
关于设计的感想也写在了设计报告上了--,这里也就不多说了。
好了这个程序算是最终完成了,撒花!师姐辛苦了~!!!!!================================================================================================================================================================2014年5月13日更新说明:这次的更新比较少,主要就是自动阈值分割图像方面的更新。
实现该操作的函数依然放在Bmp.cpp里面,里面一共使用了三种方式来决定自动阈值。
其中一种是“大津法”,函数是“OtsuThreshold”,该函数最后会返回一个阈值,该阈值就是大津法得出的阈值,具体实现方式可以在cpp文件中查看。
还有一种方法就是“迭代法”,函数是“IterationThreshold”,该函数最后会返回一个阈值,该阈值就是迭代法得出的阈值,具体实现方式可以在cpp文件中查看。
前两种方法的实现方法都如老师在PPT上所说的一样,而且运算起来非常快,基本可以说是瞬时得出。
而第三种方法是我自己写的一个方法,叫做“对半分”法,函数是“HalfCutThreshold”,该函数最后会返回一个阈值,该阈值就是对半分得出的阈值,具体实现方式可以在cpp文件中查看。
其原理就是计算出一个阈值,使到阈值处理后图片的黑色像素与白色像素的数量相等或者最接近,也就是把图片按黑白像素对半分的方法来对图像进行分割。
关于程序的使用方法,可以在鼠标右键菜单中选择“调整”->“阈值”->“高级阈值”来打开高级阈值处理的对话框。
打开对话框后,默认为最直接的自己首选阈值的方法,可以通过鼠标的左键拖动直方图中的绿色竖线来调整需要设定的阈值大小,同时右边会有该图片的预览,可以很方便操作。
如果需要使用自动阈值分割,可以在阈值方式中更改,一旦选择了“直接阈值”以外的阈值方式,程序便会自动用所选择的方法帮你计算出一个阈值,同时在直方图上会显示出该阈值的位置,还有该阈值的大小,同时预览图片也会立即更新。
值得注意的是,当你选择了自动阈值的时候,你不能再通过鼠标左键在直方图上手动调整阈值大小了哦,这个时候你只需要将阈值方式调回“直接阈值”即可重新自己调整!除了有关作业的更新之外,这次更新还调整了图片备份的内存优化,加上了使用磁盘作为备份的空间,不过这些作为使用者的话是不需要怎么注意的嗯嗯,尽情使用即可!最后,再次谢谢师姐能够读完这个文档,如果还有什么问题的话就联系我吧,联系方式就在软件中了欢迎点击--,谢谢!================================================================================================================================================================2014年5月6日更新说明:这次的主要更新是形态学处理的部分,也就是膨胀、腐蚀、开与闭操作。
实现函数依然是放在Bmp.cpp这个文件里面。
名字为Morphology的函数就是该形态学操作的函数。
可以通过在函数中调入不同的参数与设置使到一个函数同时实现膨胀与腐蚀的功能,而开与闭的功能只需要连续调用两次函数,并且参数不同就行了,使用非常简单。
然后就是软件的使用部分,
1
本资源给出了Otsu算法的详细C语言代码,并且附带有详细的解释,比较适合刚入门学习opencv的朋友。
2023/12/8 2:51:57 1KB Otsu C语言
1
基于著名的大津阈值(OtsuThresholding)法实现的自适应阈值分割程序,C#写的,导入VS项目中直接运行可见效果。
2023/11/26 5:20:43 286KB otsu 大津阈值 阈值分割 c#
1
二值化阈值的选取方法,主要是选用经典的otsu方法,也成为大津法,是由日本人大津展之发明的
2023/11/3 14:23:54 163KB otsu
1
灰度图像的二维otsu自动阈值分割法,是自动阈值分割的一种非常好的方法
2023/10/27 6:11:09 354KB otsu
1
Enviro-ThecompletedynamicAAAskyandweathersolution!Veryeasysetup:Thenewmanagercomponentmakesiteasyaspossibletosetupenviroinyourscenes.IncludesEnviroLite!ThisversionincludesEnviroLiteversionaswell.Idealformulti-platformprojects:Useliteversionforlowendplatformlikemobilesandstandardforpcandconsoles.Withoneclickyoucanswitchbetweenenviroversions.ThecentralizedAPIforyourownscriptswillworkforbothversionsofcourse.ProfileSystem:Enviro'snewprofilesystemmakestweakingyourskyaseasyaspossible.Tweaksettingsinruntimeandsavetoprofile.Loadprofilesindesignandruntime.Createdifferentprofilesfordifferentscenesorshareyourconfigurationswithotheruser.Day-Nightcycle:Envirosupportsarealisticday-nightcycle.Withcorrectsunandmoonpositionswithfulllocationsupportwithlatitudeandlongitude.Youhaveoptionstouseyoursystemtimeorletenviroupdatetimebasedonrealtimeminutes.Skybox:Enviroincludesanadvancedfastatmosphericskyboxshadertogetgreatlookingskies!Yougotalotofoptionstotweaktheskyandevencansetupfunkyalienskies!Lighting:Envirowillrealisticlylightyourscenebasedonsunaltitude.Youhavecompletecontroloverlightintensityandcolorbymodifyingcurvesandgradientsrightineditor!Youalsocanchoosebetweendifferentambientlightmodesofcourse.Seasons:Envirowillchangeseasonsandgotacomponentstoswapoutgameobject,materialsandtexturesofunityterrain.Youarenotlimitedtorealisticsettings!Youcansetthestartandenddaysofeachseason.Enviroalsosupportstemperaturesimulation,basedonseason,timeofdayandcurrentweather.Clouds:Environewraymarchingcloudsystemisbasedonlatestcloudrenderingpapers.Thesewillbringyouskytolifeandofferplentyoptionstocustomize.CloudsperformanceisoptimizedbyusingtechsliketemporalreprojectionandLODsystem.Inadditiontherearealsofastflatandparticlecloudsoptionstomixoruseformaximumperformance.Fog:Needstunnishinglookingfog?Enviroincludesanadvancedlightscatteringfogimageeffectwithdistance,heightandskyfogsupport.Needfogonyourtransparentmaterial?Noproblem,withonlyafewlinesofcodeyoucouldmodifyyourowntransparentshaderstobefoggedcorrectly.Andafewparticleandtransparentshadersalreadyincludedtogetyoustarted!Weather:Enviroincludesaverypowerfullweathersystem.Youcancreateyourownweathertypesanddrivelight,sky,fogandclouds.Envirosupportsallkindofunityshurikenparticleeffectstogiveyouthefreedomtocreateanyweathereffectyoucanthinkof.Itincludes11premadeweathertypesincluding:ClearSky,cloudy,raining,stormy,snowyandfoggyweather.Youcanenablelightningstormsandchoosedifferentambientandweathersoundsforeachweatherwithsmoothtransitions.VolumetricLighting:NeedsomevolumelighteffectsyouseeinAAAgames?Noproblem,envirosupportvolumetriclightingfordirectional,pointandspotlightsoutofthebox!SceneViewEffects:Previewenviroeffectslikeclouds,volumelightingandfogdirectlywhileyouworkonyourscenes.Youcanenableordisablesceneviewpreviewforeacheffectindividualofcourse.Networking:EnvirosupportUNet,MirrorandPhotonoutofthebox.Itwillsynchronizetimeandweatherwithallyourplayers.Enviroalsogotanminimalmodeforheadlessserverstoonlycalculatetimeandweatherbutnothingmore.VirtualReality:Envirosupportsmultiandsinglepassstereoscopicrendering!TestedonOculusRift.That'snotall!Enviroincludesalotmoregreatfeatures:*Eventsystemforyougamelogic.*WeatherZones.Createasmanyzoneswiththeirownweatherforyourbiomes.*Orbitingsatellites.*VegetationGrowth.Andyoucanusealotofawesome3rd-partyassetsrightofthebox.Activateandadd3rd-partysupportthroughthenewinterface.Againitseasyandfastaspossible!*GaiaCompatible!*CTSCompatible!*AQUASIntegration!*LUXWaterIntegration!*FogVolume3Integration!*VegetationStudioProIntegration!*PlaymakerActions!*ReliefTerrainShaderIntegration!*UBERShaderIntegration!*MicroSplatIntegration!*MegaSplatShaderIntegration!*LuxShaderIntegration!*PhotonNetworkIntegration!*MirrorNetworkIntegration!*PegasusIntegration!Requirements:*Supportgammaandlinearcolorspace.*Supportforwardanddeferredrendering.*WorkingonDX9,DX11,DX12,OpenGlCore,MetalandVulkan.*VolumetricLightingrequiresatleastshader-model3.5+andwillbedeactivatedonDX9Currentlimitation:*Volumetriccloudsarecurrentlynotsuitableforfly-throughs!Willbeworkedoninlaterupdates!
2023/10/14 8:54:48 194.06MB U3D VR
1
共 47 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡