CK+数据集可在此官网(http://www.consortium.ri.cmu.edu/ckagree/)下载,但是需要填写个人信息绑定邮箱,通过后会给你的邮箱发送用户名和口令,但通过浏览器下载速度较慢,经常会下载失败。
因此,这里共享给大家本人下载成功后的CK+数据集的网盘下载链接,里面主要包含extended-cohn-kanade-images.zip和Emotion_labels.zip。
这里不用多说,第一个zip里面就是CK+的原始表情数据,里面包含有10000多张人脸表情图片,而第二个zip文件则是与人脸表情图片对应的标签值。
2024/5/20 16:16:27 379B CK+ 人脸表情数据库
1
《Imagewarev11逆向工程应用技术与范例》简体中文版
2024/5/20 8:22:45 18.12MB Imageware v11 逆向工程
1
Fusionofsyntheticapertureradar(SAR)andforwardlookinginfrared(FLIR)imagesisanimportantsubjectforaerospaceandsensorsurveillance.ThispaperpresentsaschemetoachieveanaturalcolorimagebasedonthecontoursfeatureofSARandthetargetregionfeatureofFLIRsothattheoverallscenerecognitionandsituationalawarenesscanbeimproved.TheSARandFLIRimagesarefirstdecomposedintosteerablepyramids,andthecontourmapsintheSARimageandtheregionmapsinthe
231KB 论文
1
Thispracticalguideprovidesnearly200self-containedrecipestohelpyousolvemachinelearningchallengesyoumayencounterinyourdailywork.Ifyou’recomfortablewithPythonanditslibraries,includingpandasandscikit-learn,you’llbeabletoaddressspecificproblemssuchasloadingdata,handlingtextornumericaldata,modelselection,anddimensionalityreductionandmanyothertopics.Eachrecipeincludescodethatyoucancopyandpasteintoatoydatasettoensurethatitactuallyworks.Fromthere,youcaninsert,combine,oradaptthecodetohelpconstructyourapplication.Recipesalsoincludeadiscussionthatexplainsthesolutionandprovidesmeaningfulcontext.Thiscookbooktakesyoubeyondtheoryandconceptsbyprovidingthenutsandboltsyouneedtoconstructworkingmachinelearningapplications.You’llfindrecipesfor:Vectors,matrices,andarraysHandlingnumericalandcategoricaldata,text,images,anddatesandtimesDimensionalityreductionusingfeatureextractionorfeatureselectionModelevaluationandselectionLinearandlogicalregression,treesandforests,andk-nearestneighborsSupportvectormachines(SVM),naïveBayes,clustering,andneuralnetworksSavingandloadingtrainedmodels
2024/5/19 5:40:14 4.59MB Machine Lear Keras
1
<?php/***图片加水印*@param$srcImg原图*@param$waterImg水印图片*@param$savepath保存路径*@param$savename保存名字*@param$position水印位置*1:左上2:右上3:居中4:左下5:右下*@param$opacity透明度*0:全透明100:完全不透明*@return成功--加水印后的新图片地址*失败---1:源文件不存在,-2:水印不存在,-3源文件图片对象建立失败,-4:水印文件图像对象建立失败,-5:加水印后的新图片保存失败*获取源文件路径、宽高等信息,得出保存后文件保存路径、水印放置位置->建立源文件和水印图片对象->合并图片对象(imagecopymerge)->销毁图片对象*/functionimg_create_from_ext($imgfile){$info=getimagesize($imgfile);$im=null;switch($info[2]){case1:$im=imagecreatefromgif($imgfile);break;case2:$im=imagecreatefromjpeg($imgfile);break;case3:$im=imagecreatefrompng($imgfile);break;}return$im;}functionimg_water_mark($srcImg,$waterImg,$savepath=null,$savename=null,$position=5,$opacity=50){$temp=pathinfo($srcImg);$name=$temp['basename'];$path=$temp['dirname'];$exte=$temp['extension'];$savename=$savename?$savename:$name;$savepath=$savepath?$savepath:$path;$savefile=$savepath.'/'.$savename;$srcinfo=@getimagesize($srcImg);if(!$srcinfo){return-1;}$waterinfo=@getimagesize($waterImg);if(!$waterinfo){return-2;}$srcImgObj=img_create_from_ext($srcImg);if(!$srcImgObj){return-3;}$waterImgObj=img_create_from_ext($waterImg);if(!$waterImgObj){return-4;}switch($position){case1:$x=$y=0;break;case2:$x=$srcinfo[0]-$waterinfo[0];$y=0;break;case3:$x=($srcinfo[0]-$waterinfo[0])/2;$y=($srcinfo[1]-$waterinfo[1])/2;break;case4:$x=0;$y=$srcinfo[1]-$waterinfo[1];break;case5:$x=$srcinfo[0]-$waterinfo[0];
2024/5/18 15:36:22 3KB 技术
1
数字图像处理,冈萨雷斯,英文版,第四版,国内外经典教材。
正版PDF书籍,压缩包还赠送第三版。
共两本。
压缩包懒得打英文了,直接中文说明是什么经典教材,权衡好下载。
2024/5/18 10:52:22 69.21MB 数字图像处理 Digital Image Processing
1
毕业设计和课程设计全套资料,主程序代码clc;clearall;closeall;warningoffall;I=imread('images\\1.jpg');I1=Image_Normalize(I,0);%图像归一化hsize=[33];sigma=0.5;I2=Image_Smooth(I1,hsize,sigma,0);I3=Gray_Convert(I2,0);bw2=Image_Binary(I3,0);%二值化处理[~,~,xy_long]=Hough_Process(bw2,I1,0);%霍夫变换angle=Compute_Angle(xy_long);%计算角度[I4,bw3]=Image_Rotate(I1,bw2,angle*1.8,0);%图像旋转[bw4,Loc1]=Morph_Process(bw3,0);%形态处理[Len,XYn,xy_long]=Hough_Process(bw4,I4,0);[bw5,bw6]=Region_Segmation(XYn,bw4,I4,0);[stats1,stats2,Line]=Location_Label(bw5,bw6,I4,XYn,Loc1,1);[Dom,Aom,Answer,Bn]=Analysis(stats1,stats2,Line,I4);
1
ThePointCloudLibrary(PCL)isastandalone,largescale,openprojectfor2D/3Dimageandpointcloudprocessing.最新文档,
56.07MB PCL
1
网络服务器搭建http://u.download.csdn.net/images/btn_submit.png
2024/5/13 4:55:20 2.06MB 服务器搭建
1
WilliamK.Pratt(Author)ProductDetailsHardcover:720pagesPublisher:Wiley-Interscience;2edition(April1991)Language:EnglishISBN-10:0471857661ISBN-13:978-0471857662ProductDescriptionThisisarevisededitionofatextthatdescribesanimportanttechnologywithscientific,industrial,biomedical,spaceandgovernmentapplications.Muchofthenewmaterialinthisbookdealswithimageanalysis,asubjectinwhichtherehasbeenconsiderableprogressinthelastdecade.
2024/5/12 12:54:14 22.22MB Digital Image Processing
1
共 722 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡