图像处理中,纹理特征的提取部分代码如下//计算纹理特征voidCTextureDlg::OnBtnComputeTexture(){ doubledEnergy =0.0; doubledEntropy =0.0; doubledInertiaQuadrature=0.0; doubledLocalCalm =0.0; doubledCorrelation =0.0; doubledEnergy1 =0.0; doubledEntropy1 =0.0; doubledInertiaQuadrature1=0.0; doubledLocalCalm1 =0.0; doubledCorrelation1 =0.0; unsignedchar**arLocalImage; arLocalImage=cmatrix(0,m_grayShow.FilterWindowWidth-1,0,m_grayShow.FilterWindowWidth-1); introlltimeH=m_grayShow.ImageHeight/m_grayShow.FilterWindowWidth; introlltimeW=m_grayShow.ImageWidth/m_grayShow.FilterWindowWidth; inti,j; intp,q; //将图像分成若干个窗口,计算其纹理均值 for(i=0;i<rolltimeH;i++) { for(j=0;j<rolltimeW;j++) { //首先赋值给子窗口 for(p=0;p<m_grayShow.FilterWindowWidth;p++) { for(q=0;q<m_grayShow.FilterWindowWidth;q++) { arLocalImage[p][q]=m_grayShow.ImageArray[i*m_grayShow.FilterWindowWidth+p][j*m_grayShow.FilterWindowWidth+q]; } } m_grayShow.ComputeMatrix(arLocalImage,m_grayShow.FilterWindowWidth); m_grayShow.ComputeFeature(dEnergy1,dEntropy1,dInertiaQuadrature1,dCorrelation1,dLocalCalm1,m_grayShow.PMatrixH,m_grayShow.GrayLayerNum); dEnergy+=dEnergy1; dEntropy+=dEntropy1; dInertiaQuadrature+=dInertiaQuadrature1; dCorrelation+=dCorrelation1; dLocalCalm+=dLocalCalm1; } } dEnergy/=(rolltimeH*rolltimeW); dEntropy/=(rolltimeH*rolltimeW); dInertiaQuadrature/=(rolltimeH*rolltimeW); dCorrelation/=(rolltimeH*rolltimeW); dLocalCalm/=(rolltimeH*rolltimeW); m_dEnergy =dEnergy; m_dEntropy =dEntropy; m_dInertiaQuadrature=dInertiaQuadrature; m_dCorrelation =dCorrelation; m_dLocalCalm =dLocalCalm; UpdateData(false);}
2024/1/20 9:29:28 3.93MB 纹理
1
最新版的EasyMovieTextureVideoTexture3.7.1亲测好用.
2023/12/20 13:33:52 101.74MB 视频播放 方便实用
1
3D绘制允许你在游戏和编辑器中绘制场景中的所有对象。
记住这不是一个贴花系统,所以你的游戏不会因为你画了多少而延迟。
相反,您的FPS将保持不变,即使您将对象绘制一百万次!看看:WebGL演示|论坛线程▶一致的性能即使你画了很多,在3D中画的速度还是很快的原因是因为颜料被烘焙成物体的纹理。
你的对象已经有纹理了,为什么不使用它们呢?代码也不会产生垃圾(0gcalloc),所以您不必担心随机延迟峰值。
▶闪电快速绘画烤漆成纹理听起来很慢,但是画图代码是在GPU上100%完成的,这使得它的速度非常快。
绘制代码也经过了大量优化,以通过将绘制操作组合在一起来最小化状态更改。
▶完整的c#源代码就像我的所有资产一样,我提供了完整的c#源代码——没有什么隐藏在.dll中。
代码的组织和注释也很好,所以如果需要,可以很容易地进行更改。
▶长期支持就像我所有的资产,我提供长期的支持,不会在你购买后就消失。
我也提供定期的免费更新基于伟大的功能从客户的要求。
▶蒙皮绘画在3D绘制允许您绘制动画对象与伟大的性能。
看看WebGL的演示,看看僵尸油漆看起来有多棒。
▶无缝紫外线绘画如果你有一个复杂的网格,它是常见的接缝时绘画,甚至当使用专业的绘画软件。
3D绘画解决了这个问题,包括“缝线固定”工具。
3D绘画也使多个对象之间的绘画无缝连接,即使它们有不同的比例。
▶易于使用就像我的所有资产一样,我尽量保持界面简单。
在几分钟之内,你就可以在游戏中添加绘画功能,并根据你的需要调整简单而强大的设置。
▶团队基础绘画3D绘画具有易于使用的基于团队的绘画功能。
你可以指定一个特定的颜色给一个特定的团队,并计算每个团队在你的场景中画了多少像素!▶Multi-Texture绘画如果你有一个复杂的材质和着色器,有多个纹理一起工作,那么没问题。
3D绘画允许你创建画笔,在同一时间绘制多个纹理,并给予每个画笔独特的设置。
▶完整的物质支持3D绘制不仅支持绘制所有的材质和着色器与统一,但所有你的定制的!使用直观的检查器,您可以轻松地选择您想要绘制的材质和纹理。
▶在游戏&编辑器3D绘画从一开始就被设计来支持游戏和编辑器中的绘画。
这允许您在编辑器中快速调整纹理,然后在游戏中使用完全相同的特性绘制它们。
▶混合模式你不局限于画普通的反照率纹理。
3D绘画有一系列的混合模式和设置,允许你画任何类型的纹理你喜欢。
例如,添加混合照明纹理,RGB隔离阿尔法混合切割纹理,和更多。
信贷:
2023/12/18 14:57:29 8.54MB Unity3D Paint3D
1
第6章纹理映射基础1、TextureBase演示使用纹理贴图的基本步骤。
2、TexFilterMode演示最近点采样和线性纹理过滤方式。
在程序运行时,单击键盘上的数字键“1”,使用最近点采样纹理过滤方式,单击键盘上的数字键“2”,则使用线性纹理过滤。
3、MipTexture演示如何创建和使用多级渐进纹理。
程序运行时,单击键盘上的数字键“1”,则使用多级渐进纹理,单击数字键“2”,则使用单级别纹理。
通过按下“↓”键和“↑”键可以放大和缩小显示的图形,从而可以仔细观察图像的变化,看到多级渐进纹理的效果。
4、TexAddressMode演示不同纹理寻址模式的效果。
程序运行时,单击键盘上的数字键“1”,使用重叠纹理寻址模式,单击键盘上的数字键“2”,使用镜像纹理寻址模式,单击键盘上的数字键“3”,使用夹取纹理寻址模式,单击键盘上的数字键“4”,使用边框颜色纹理寻址模式。
5、TexRenderState演示纹理阶段混合状态的使用。
1
土壤属性表主要字段包括:SU_SYM90(FAO90土壤分类系统中土壤名称);
SU_SYM85(FAO85分类);T_TEXTURE(顶层土壤质地);DRAINAGE(19.5);REF_DEPTH(土壤参考深度);AWC_CLASS(19.5);AWC_CLASS(土壤有效水含量);PHASE1:Real(土壤相位);PHASE2:String(土壤相位);
ROOTS:String(到土壤底部存在障碍的深度分类);
SWR:String(土壤含水量特征);
ADD_PROP:Real(土壤单元中与农业用途有关的特定土壤类型);
T_GRAVEL:Real(碎石体积百分比);
T_SAND:Real(沙含量);
T_SILT:Real(淤泥含量);
T_CLAY:Real(粘土含量);
T_USDA_TEX:Real(USDA土壤质地分类);
T_REF_BULK:Real(土壤容重);
T_OC:Real(有机碳含量);
T_PH_H2O:Real(酸碱度)T_CEC_CLAY:Real(粘性层土壤的阳离子交换能力);
T_CEC_SOIL:Real(土壤的阳离子交换能力)T_BS:Real(基本饱和度);
T_TEB:Real(交换性盐基);
T_CACO3:Real(碳酸盐或石灰含量)T_CASO4:Real(硫酸盐含量);
T_ESP:Real(可交换钠盐);
T_ECE:Real(电导率)。
2023/10/24 16:55:32 24.87MB 世界土壤HWSD
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
壁纸和现场背景WALLOOPPRIMEWalloopPrime-没有广告的最好的动态壁纸应用程序,总是更新!最后很酷的动态壁纸,不会耗尽你的电池电量!动态壁纸高清,AMOLED动态壁纸,动态壁纸3D4k,静态壁纸等等......立即改善您的手机!Walloop是一系列手机壁纸,带有4K动画GIF/视频等等......创新类别:▫️LIVE壁纸▫️AMOLEDLIVEWALLPAPERS(第一部电池消耗低的动态壁纸,全高清动态壁纸3D)▫️摘要和3D▫️AERIALVIEW(地球视图,卫星,无人机)▫️AMOLED(SuperAMOLED,Oled)▫️动物▫️ARTWORKS▫️BOUR&BOKEH▫️DARK(黑色壁纸,深色背景)▫️KVANTUMPHANTAZY▫️LOWPOLY(3dFractals)▫️LEGENDS(动漫,超级英雄,电视剧)▫️材料▫️极小▫️MISC▫️山▫️POLYSCAPES▫️台词▫️SCENIC(自然和城市)▫️SPACE&UNIVERSE▫️TEXTURE▫️TILTSHIFT▫️VAPORWAVE&GLITCH▫️YOSEMITE
2023/10/8 18:02:32 6.74MB Walloo Prime Premiu 8.7
1
Drawingonanimpressiverosterofexpertsinthefield,FundamentalsofComputerGraphics,FourthEditionoffersanidealresourceforcomputercoursecurriculaaswellasauser-friendlypersonalorprofessionalreference.Focusingongeometricintuition,thebookgivesthenecessaryinformationforunderstandinghowimagesgetontothescreenbyusingthecomplementaryapproachesofraytracingandrasterization.Itcoverstopicscommontoanintroductorycourse,suchassamplingtheory,texturemapping,spatialdatastructure,andsplines.Italsoincludesanumberofcontributedchaptersfromauthorsknownfortheirexpertiseandclearwayofexplainingconcepts.HighlightsoftheFourthEditionInclude:UpdatedcoverageofexistingtopicsMajorupdatesandimprovementstoseveralchapters,includingtexturemapping,graphicshardware,signalprocessing,anddatastructuresAtextnowprintedentirelyinfour-colortoenhanceillustrativefiguresofconceptsThefourtheditionofFundamentalsofComputerGraphicscontinuestoprovideanoutstandingandcomprehensiveintroductiontobasiccomputergraphictechnologyandtheory.Itretainsaninformalandintuitivestylewhileimprovingprecision,consistency,andcompletenessofmaterial,allowingaspiringandexperiencedgraphicsprogrammerstobetterunderstandandapplyfoundationalprinciplestothedevelopmentofefficientcodeincreatingfilm,game,orwebdesigns.
2023/10/4 15:52:05 20.55MB 图形学 计算机图形学 渲染 基础
1
Unity最新的人脸识别插件DlibFaceLandmarkDetector1.2.8需要Unity5.6.6或更高版支持iOS、Android、Windows10UWP、WebGL、Win&Mac&Linux您可以在Texture2D,WebCamTexture和“图像”字节数组中检测正面人脸和脸部界标(68点,17点,6点)内有各种实例方便学习
2023/9/14 15:28:13 171.89MB Unity 人脸识别 Dlib FaceLandmar
1
unity内嵌浏览器EmbeddedBrowserV2.1.0(适用于PC端)所支持的Unity版本:5.6.3及以上版本Renderawebpagetoatextureandfullyinteractwithit!Expediteyourinventorymanager,simplifyyourregistrationpage,orbuildaUIatlightningspeed!Demo|DocsFeatures-Rendersitesto2Dor3Dobjects-Chromiumbackend;best-in-classsupportfor:HTML,CSS,andJavaScript-CallJavaScript1fromUnity-CallUnityfromJavaScript1-Transparentoropaquepagebackground-EmbedHTML+assetsingame
2023/9/14 11:56:33 75B 网页 web unity内嵌 内嵌网页
1
共 69 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡