登录
首页 » QT » Qt-ImageProcess

Qt-ImageProcess

于 2014-05-09 发布 文件大小:13196KB
0 228
下载积分: 1 下载次数: 130

代码说明:

  利用Qt编写的简易图像处理程序,包括图像的边缘检测、放大缩小和几个常用的处理功能。(QT image processing procedures, including edge detection, zoom and several common processing functions.)

文件列表:

ImageProcess_code
.................\ImageProcess_code
.................\.................\debug
.................\.................\.....\appICO_res.o,17238,2012-06-15
.................\.................\.....\bitMapInfo.o,138603,2012-06-14
.................\.................\.....\ImageProcess.o,209652,2012-06-15
.................\.................\.....\ImageProcess_code.exe,146432,2014-05-09
.................\.................\.....\ImageProcess_code.ilk,872984,2014-05-09
.................\.................\.....\ImageProcess_code.pdb,1477632,2014-05-09
.................\.................\.....\main.o,202116,2012-06-15
.................\.................\.....\MainWindow.o,394120,2012-06-24
.................\.................\.....\moc_MainWindow.o,203510,2012-06-15
.................\.................\.....\qrc_res.o,26663,2012-06-15
.................\.................\GeneratedFiles
.................\.................\..............\Debug
.................\.................\..............\.....\moc_MainWindow.cpp,4370,2014-05-09
.................\.................\..............\qrc_res.cpp,155862,2014-05-09
.................\.................\..............\Release
.................\.................\ImageProcess
.................\.................\............\ImageProcess.cpp,8623,2012-06-15
.................\.................\............\ImageProcess.h,1267,2012-06-15
.................\.................\ImageProcess_code.pro,648,2012-06-14
.................\.................\ImageProcess_code.pro.user,14424,2012-06-24
.................\.................\ImageProcess_code.sdf,22564864,2014-05-09
.................\.................\ImageProcess_code.suo,4096,2014-05-09
.................\.................\ImageProcess_code.vcxproj,16970,2014-05-09
.................\.................\ImageProcess_code.vcxproj.filters,4453,2014-05-09
.................\.................\ImageProcess_code.vcxproj.user,575,2014-05-09
.................\.................\ipch
.................\.................\....\imageprocess_code-899e68c0
.................\.................\....\..........................\imageprocess_code-a044ecb7.ipch,45285376,2014-05-09
.................\.................\MainFram
.................\.................\........\appICO.rc,67,2012-06-12
.................\.................\........\main.cpp,507,2012-06-14
.................\.................\........\MainWindow.cpp,11375,2012-06-24
.................\.................\........\MainWindow.h,2702,2012-06-14
.................\.................\........\res
.................\.................\........\...\new.png




.................\.................\........\...\rotate90.png,1353,2010-06-23
.................\.................\........\...\save.png,1022,2009-04-22
.................\.................\........\...\undo.png,1768,2009-04-22
.................\.................\........\...\zoomin.png,1622,2009-04-22
.................\.................\........\...\zoomout.png,1601,2009-04-22
.................\.................\........\res.qrc,413,2012-06-12
.................\.................\Makefile,6695,2012-06-15
.................\.................\Makefile.Debug,7327,2012-06-15
.................\.................\Makefile.Release,7442,2012-06-15
.................\.................\TestImage




.................\.................\Win32
.................\.................\.....\Debug
.................\.................\.....\.....\appICO.res,17068,2014-05-09
.................\.................\.....\.....\CL.read.1.tlog,128930,2014-05-09
.................\.................\.....\.....\CL.write.1.tlog,3578,2014-05-09
.................\.................\.....\.....\custombuild.read.1.tlog,2238,2014-05-09
.................\.................\.....\.....\custombuild.write.1.tlog,762,2014-05-09
.................\.................\.....\.....\ImageProcess.obj,70668,2014-05-09
.................\.................\.....\.....\ImageProcess_code.exe.intermediate.manifest,638,2014-05-09
.................\.................\.....\.....\ImageProcess_code.lastbuildstate,94,2014-05-09
.................\.................\.....\.....\ImageProcess_code.log,1400,2014-05-09
.................\.................\.....\.....\link-cvtres.read.1.tlog,2,2014-05-09
.................\.................\.....\.....\link-cvtres.write.1.tlog,2,2014-05-09
.................\.................\.....\.....\link.read.1.tlog,4876,2014-05-09
.................\.................\.....\.....\link.write.1.tlog,1944,2014-05-09
.................\.................\.....\.....\main.obj,77521,2014-05-09
.................\.................\.....\.....\MainWindow.obj,186430,2014-05-09
.................\.................\.....\.....\moc_MainWindow.obj,80938,2014-05-09
.................\.................\.....\.....\mt.read.1.tlog,904,2014-05-09
.................\.................\.....\.....\mt.write.1.tlog,444,2014-05-09
.................\.................\.....\.....\qrc_res.obj,50097,2014-05-09
.................\.................\.....\.....\rc.read.1.tlog,354,2014-05-09
.................\.................\.....\.....\rc.write.1.tlog,360,2014-05-09
.................\.................\.....\.....\vc100.pdb,1003520,2014-05-09

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • recognize_face
    利用灰度积分投影直接对人脸图像进行检测和眼睛定位是一种常用的算法,但是直接采用该算法会受到背 景、特征等因素的影响,识别准确率较低。提出了一种基于最大类间方差阈值和区域膨胀相结合的检测与定位算法。该算 法首先计算最大类间方差设置阈值,把灰度图像转换为二值图像并检测出人脸区域,然后通过对该人脸区域中的连通区域 进行膨胀及连通性处理,精确定位眼睛坐标。实验表明,此算法可靠,具有较好的识别效果。(face recognized)
    2010-08-19 16:45:54下载
    积分:1
  • 最小二乘法估计仿射矩阵
    目前MATLAB里边对于多点计算仿射矩阵普遍采用RANSAC法,但是比较麻烦计算量也相对较大,通过最小二乘法来进行仿射矩阵的估计能够大大提高该效率,所以奉上自己在实验室写的仿射矩阵估计函数,来弥补matlab函数库在这方面的不足。(The MATLAB inside for calculating affine matrix commonly used RANSAC method, but more trouble calculation is relatively large, estimated by the least squares method to the affine matrix can greatly improve the efficiency, so give yourself in laboratory to write the estimated affine matrix function, to compensate for the lack of MATLAB Library in this area.)
    2018-02-01 17:11:33下载
    积分:1
  • palmprint PCA
    掌纹识别代码,内有详细代码以及train的图(Palmprint recognition code, there are detailed code and train diagram.cation code)
    2018-05-08 21:26:41下载
    积分:1
  • test_vegetable
    说明:  根据文献Verification of color vegetation indices for automated crop imaging applications所述方法实现的可见光(RGB)的植被提取,效果非常好,压缩文件内附有该文献英文原文,以及部分供测试图片。(According to the method described in the document verification of color vegetation indexes for automated cross imaging applications, the effect of vegetation extraction of visible light (RGB) is very good. The original English version of the document and some test pictures are attached to the compressed file.)
    2020-04-13 18:23:12下载
    积分:1
  • sar_modified
    说明:  matlab实现sar图像雷达成像运行代码,亲测可用(Matlab SAR image radar imaging code, pro test available)
    2021-01-29 16:11:33下载
    积分:1
  • 归档
    说明:  扫描文件夹,通过文件大小和创建时间判断图片文件是否重复,并分类和重命名(Scanning folders to determine whether image files are duplicated, categorized and renamed by file size and creation time)
    2018-12-26 22:11:08下载
    积分:1
  • ITKbrain
    ITK的脑室图像分割,可以对脑部的图像用itk进行分割,用VTK来进行显示。(the segration of brain of ITK )
    2009-03-20 17:42:08下载
    积分:1
  • example
    这是matlab视频图像处理中提取图像并将其转化为灰度图像的m文件,这是图像处理中的第一步(This is a matlab video image processing to extract images and translate them into gray image of m documents, this is the first step in image processing)
    2008-05-13 17:30:10下载
    积分:1
  • face_mosaic_processing
    暑期实习用matlab编写的一个人脸马赛克图像处理处理算法,附件同时包含了算法的原理解释(face mosaic image processing by matlab. )
    2009-05-11 13:48:10下载
    积分:1
  • jpegIO
    实现原始的JPEG图片编解码,不借助任何的第三方库,纯C++。(To achieve the original JPEG image decoding, without using any third-party libraries, pure C++.)
    2011-10-06 13:50:13下载
    积分:1
  • 696518资源总数
  • 106155会员总数
  • 8今日下载