在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Visual C++数字图像获取、处理及实践应用

Visual C++数字图像获取、处理及实践应用

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:6.79M
  • 下载次数:9
  • 浏览次数:65
  • 发布时间:2021-03-09
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
全书基本涵概了从图像获取到处理的各个领域,由自成体系而又互有联系的 12 章组成。在介绍数字图像处理基础知识的同时,加入了该领域一些较新的研究成果和应用,例如小波变换、 Canny 分割算子、JPEG 2000 图像编码等。书中对所介绍的图像处理算法都附有完整的 Visual C++源代码,并给出了相应的编程实例和处理效果,读者在学习过程中可以结合程序来加深理解,也可以将代码直接用于图像处理。
【实例截图】
【核心代码】
f1e1d5a3-5ca4-4638-aae9-7dba140d2ac2
└── 《Visual C++数字图像处理典型算法及实现》电子书与配套光盘
├── 01
│   └── DIBDisplay
│   ├── cdib.cpp
│   ├── cdib.h
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── ColorTable.h
│   ├── Debug
│   │   ├── cdib.obj
│   │   ├── ChildFrm.obj
│   │   ├── DIBDisplayDoc.obj
│   │   ├── DIBDisplay.exe
│   │   ├── DIBDisplay.obj
│   │   ├── DIBDisplay.pdb
│   │   ├── DIBDisplay.res
│   │   ├── DIBDisplayView.obj
│   │   ├── DibImage.obj
│   │   ├── DIBPrcs.obj
│   │   ├── MainFrm.obj
│   │   ├── StdAfx.obj
│   │   └── vc60.pdb
│   ├── DIBDisplay.aps
│   ├── DIBDisplay.clw
│   ├── DIBDisplay.cpp
│   ├── DIBDisplayDoc.cpp
│   ├── DIBDisplayDoc.h
│   ├── DIBDisplay.dsp
│   ├── DIBDisplay.dsw
│   ├── DIBDisplay.h
│   ├── DIBDisplay.ncb
│   ├── DIBDisplay.opt
│   ├── DIBDisplay.plg
│   ├── DIBDisplay.rc
│   ├── DIBDisplayView.cpp
│   ├── DIBDisplayView.h
│   ├── DibImage.cpp
│   ├── DibImage.h
│   ├── DIBPrcs.cpp
│   ├── GlobalApi.h
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── DIBDisplayDoc.ico
│   │   ├── DIBDisplay.ico
│   │   ├── DIBDisplay.rc2
│   │   └── Toolbar.bmp
│   ├── Resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 02
│   └── IMGCaputre
│   ├── cdib.cpp
│   ├── cdib.h
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── ColorTable.h
│   ├── Default.SUP
│   ├── DIBPrcs.cpp
│   ├── DibShow.cpp
│   ├── GlobalApi.h
│   ├── ImageProcessing.aps
│   ├── ImageProcessing.clw
│   ├── ImageProcessing.cpp
│   ├── ImageProcessingDoc.cpp
│   ├── ImageProcessingDoc.h
│   ├── ImageProcessing.dsp
│   ├── ImageProcessing.dsp.bak
│   ├── ImageProcessing.h
│   ├── ImageProcessing.ncb
│   ├── ImageProcessing.opt
│   ├── ImageProcessing.plg
│   ├── ImageProcessing.rc
│   ├── ImageProcessingView.cpp
│   ├── ImageProcessingView.h
│   ├── ImageView.cpp
│   ├── IMGCapture.dsw
│   ├── IMGCapture.ncb
│   ├── IMGCapture.opt
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── ImageProcessingDoc.ico
│   │   ├── ImageProcessing.ico
│   │   ├── ImageProcessing.rc2
│   │   └── Toolbar.bmp
│   ├── resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 03
│   └── LineTrans
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── DibImage.cpp
│   ├── DibImage.h
│   ├── IntensityDlg.cpp
│   ├── IntensityDlg.h
│   ├── LinerParaDlg.cpp
│   ├── LinerParaDlg.h
│   ├── LineTrans.aps
│   ├── LineTrans.clw
│   ├── LineTrans.cpp
│   ├── LineTransDoc.cpp
│   ├── LineTransDoc.h
│   ├── LineTrans.dsp
│   ├── LineTrans.dsw
│   ├── LineTrans.h
│   ├── LineTrans.ncb
│   ├── LineTrans.opt
│   ├── LineTrans.plg
│   ├── LineTrans.rc
│   ├── LineTransView.cpp
│   ├── LineTransView.h
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── PointStreDlg.cpp
│   ├── PointStreDlg.h
│   ├── PointThreDlg.cpp
│   ├── PointThreDlg.h
│   ├── PointWinDlg.cpp
│   ├── PointWinDlg.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── LineTransDoc.ico
│   │   ├── LineTrans.ico
│   │   ├── LineTrans.rc2
│   │   └── Toolbar.bmp
│   ├── Resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 04
│   └── GeoTrans
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── DibImage.cpp
│   ├── DibImage.h
│   ├── GeoRotaDlg.cpp
│   ├── GeoRotaDlg.h
│   ├── GeoTrans.aps
│   ├── GeoTrans.clw
│   ├── GeoTrans.cpp
│   ├── GeoTransDlg.cpp
│   ├── GeoTransDlg.h
│   ├── GeoTransDoc.cpp
│   ├── GeoTransDoc.h
│   ├── GeoTrans.dsp
│   ├── GeoTrans.dsw
│   ├── GeoTrans.h
│   ├── GeoTrans.ncb
│   ├── GeoTrans.opt
│   ├── GeoTrans.plg
│   ├── GeoTrans.rc
│   ├── GeoTransView.cpp
│   ├── GeoTransView.h
│   ├── GeoZoomDlg.cpp
│   ├── GeoZoomDlg.h
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── GeoTransDoc.ico
│   │   ├── GeoTrans.ico
│   │   ├── GeoTrans.rc2
│   │   └── Toolbar.bmp
│   ├── Resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 05
│   └── FreTrans
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── DibImage.cpp
│   ├── DibImage.h
│   ├── FreTrans.aps
│   ├── FreTrans.clw
│   ├── FreTrans.cpp
│   ├── FreTransDoc.cpp
│   ├── FreTransDoc.h
│   ├── FreTrans.dsp
│   ├── FreTrans.dsw
│   ├── FreTrans.h
│   ├── FreTrans.ncb
│   ├── FreTrans.opt
│   ├── FreTrans.plg
│   ├── FreTrans.rc
│   ├── FreTransView.cpp
│   ├── FreTransView.h
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── FreTransDoc.ico
│   │   ├── FreTrans.ico
│   │   ├── FreTrans.rc2
│   │   └── Toolbar.bmp
│   ├── Resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 06
│   └── TemplateTrans
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── ColorDlg.cpp
│   ├── ColorDlg.h
│   ├── ColorTable.h
│   ├── DibImage.cpp
│   ├── DibImage.h
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── MidFilterDlg.cpp
│   ├── MidFilterDlg.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── TemplateTransDoc.ico
│   │   ├── TemplateTrans.ico
│   │   ├── TemplateTrans.rc2
│   │   └── Toolbar.bmp
│   ├── Resource.h
│   ├── SharpThreDlg.cpp
│   ├── SharpThreDlg.h
│   ├── SmoothDlg.cpp
│   ├── SmoothDlg.h
│   ├── StdAfx.cpp
│   ├── StdAfx.h
│   ├── TemplateTrans.aps
│   ├── TemplateTrans.clw
│   ├── TemplateTrans.cpp
│   ├── TemplateTransDoc.cpp
│   ├── TemplateTransDoc.h
│   ├── TemplateTrans.dsp
│   ├── TemplateTrans.dsw
│   ├── TemplateTrans.h
│   ├── TemplateTrans.ncb
│   ├── TemplateTrans.opt
│   ├── TemplateTrans.plg
│   ├── TemplateTrans.rc
│   ├── TemplateTransView.cpp
│   └── TemplateTransView.h
├── 07
│   └── Morph
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── DibImage.cpp
│   ├── DibImage.h
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── Morph.aps
│   ├── MorphCloseDlg.cpp
│   ├── MorphCloseDlg.h
│   ├── Morph.clw
│   ├── Morph.cpp
│   ├── MorphDilationDlg.cpp
│   ├── MorphDilationDlg.h
│   ├── MorphDoc.cpp
│   ├── MorphDoc.h
│   ├── Morph.dsp
│   ├── Morph.dsw
│   ├── MorphErosionDlg.cpp
│   ├── MorphErosionDlg.h
│   ├── Morph.h
│   ├── Morph.ncb
│   ├── MorphOpenDlg.cpp
│   ├── MorphOpenDlg.h
│   ├── Morph.opt
│   ├── Morph.plg
│   ├── Morph.rc
│   ├── MorphView.cpp
│   ├── MorphView.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── MorphDoc.ico
│   │   ├── Morph.ico
│   │   ├── Morph.rc2
│   │   └── Toolbar.bmp
│   ├── Resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 08
│   └── EdgeContour
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── DibImage.cpp
│   ├── DibImage.h
│   ├── EdgeContour.aps
│   ├── EdgeContour.cpp
│   ├── EdgeContourDoc.cpp
│   ├── EdgeContourDoc.h
│   ├── EdgeContour.dsp
│   ├── EdgeContour.dsw
│   ├── EdgeContour.h
│   ├── EdgeContour.ncb
│   ├── EdgeContour.opt
│   ├── EdgeContour.plg
│   ├── EdgeContour.rc
│   ├── EdgeContourView.cpp
│   ├── EdgeContourView.h
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── EdgeContourDoc.ico
│   │   ├── EdgeContour.ico
│   │   ├── EdgeContour.rc2
│   │   └── Toolbar.bmp
│   ├── Resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 09
│   └── Direct
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── DibImage.cpp
│   ├── DibImage.h
│   ├── Direct.aps
│   ├── Direct.clw
│   ├── Direct.cpp
│   ├── DirectDoc.cpp
│   ├── DirectDoc.h
│   ├── Direct.dsp
│   ├── Direct.dsw
│   ├── Direct.h
│   ├── Direct.ncb
│   ├── Direct.opt
│   ├── Direct.plg
│   ├── Direct.rc
│   ├── DirectView.cpp
│   ├── DirectView.h
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── DirectDoc.ico
│   │   ├── Direct.ico
│   │   ├── Direct.rc2
│   │   └── Toolbar.bmp
│   ├── Resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 10
│   └── IMGReg
│   ├── cdib.cpp
│   ├── cdib.h
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── ColorTable.h
│   ├── Default.SUP
│   ├── DIBPrcs.cpp
│   ├── DibShow.cpp
│   ├── DlgAftReg.cpp
│   ├── DlgAftReg.h
│   ├── DlgRecMatch.cpp
│   ├── DlgRecMatch.h
│   ├── DlgReg.cpp
│   ├── DlgReg.h
│   ├── GlobalApi.h
│   ├── IMGReg.aps
│   ├── IMGReg.clw
│   ├── IMGReg.cpp
│   ├── IMGRegDoc.cpp
│   ├── IMGRegDoc.h
│   ├── IMGReg.dsp
│   ├── IMGReg.dsw
│   ├── IMGReg.h
│   ├── IMGReg.ncb
│   ├── IMGReg.opt
│   ├── IMGReg.plg
│   ├── IMGReg.rc
│   ├── IMGRegView.cpp
│   ├── IMGRegView.h
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── ImageProcessing.ico
│   │   ├── IMGRegDoc.ico
│   │   ├── IMGReg.ico
│   │   ├── IMGReg.rc2
│   │   └── Toolbar.bmp
│   ├── Resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 11
│   └── IMGRestore
│   ├── cdib.cpp
│   ├── cdib.h
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── ColorTable.h
│   ├── Default.SUP
│   ├── DIBPrcs.cpp
│   ├── FreTrans.cpp
│   ├── GlobalApi.h
│   ├── ImageProcessing.aps
│   ├── ImageProcessing.clw
│   ├── ImageProcessing.cpp
│   ├── ImageProcessingDoc.cpp
│   ├── ImageProcessingDoc.h
│   ├── ImageProcessing.h
│   ├── ImageProcessing.ncb
│   ├── ImageProcessing.opt
│   ├── ImageProcessing.plg
│   ├── ImageProcessing.rc
│   ├── ImageProcessingView.cpp
│   ├── ImageProcessingView.h
│   ├── ImageView.cpp
│   ├── IMBRestore.dsp
│   ├── IMBRestore.dsw
│   ├── IMBRestore.ncb
│   ├── IMBRestore.opt
│   ├── IMBRestore.plg
│   ├── IMGRestore.dsw
│   ├── IMGRestore.ncb
│   ├── IMGRestore.opt
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── ReadMe.txt
│   ├── res
│   │   ├── ImageProcessingDoc.ico
│   │   ├── ImageProcessing.ico
│   │   ├── ImageProcessing.rc2
│   │   └── Toolbar.bmp
│   ├── resource.h
│   ├── restore.cpp
│   ├── SegApi.cpp
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── 12
│   └── ImageCoding
│   ├── cdib.cpp
│   ├── cdib.h
│   ├── ChildFrm.cpp
│   ├── ChildFrm.h
│   ├── ColorTable.h
│   ├── Default.SUP
│   ├── DIBPrcs.cpp
│   ├── DibShow.cpp
│   ├── DlgArith.cpp
│   ├── DlgBitPlane.cpp
│   ├── DlgCoding.h
│   ├── DlgCodingHuffman.cpp
│   ├── DlgHuffman.cpp
│   ├── DlgShannon.cpp
│   ├── DWT.CPP
│   ├── GlobalApi.h
│   ├── ImageCoding.cpp
│   ├── ImageCoding.dsp
│   ├── ImageCoding.dsw
│   ├── ImageCoding.ncb
│   ├── ImageCoding.opt
│   ├── ImageCoding.plg
│   ├── ImageProcessing.aps
│   ├── ImageProcessing.clw
│   ├── ImageProcessing.cpp
│   ├── ImageProcessingDoc.cpp
│   ├── ImageProcessingDoc.h
│   ├── ImageProcessing.h
│   ├── ImageProcessing.ncb
│   ├── ImageProcessing.opt
│   ├── ImageProcessing.plg
│   ├── ImageProcessing.rc
│   ├── ImageProcessingView.cpp
│   ├── ImageProcessingView.h
│   ├── ImageView.cpp
│   ├── MainFrm.cpp
│   ├── MainFrm.h
│   ├── res
│   │   ├── ImageProcessingDoc.ico
│   │   ├── ImageProcessing.ico
│   │   ├── ImageProcessing.rc2
│   │   └── Toolbar.bmp
│   ├── resource.h
│   ├── StdAfx.cpp
│   └── StdAfx.h
├── VC++数字图像处理.pdf
└── 说明.txt

38 directories, 439 files

标签:

实例下载地址

Visual C++数字图像获取、处理及实践应用

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警