下你所需,载你所想!
汇集开发技术源码资料

VC++数字图像处理与工程案例代码

:17.424MB :1 :2022-10-17 13:00:39

部分简介

VC++数字图像处理与工程案例代码如果开发者对于本文件有需要的可以参考。
.
├── VC数字图像
│ ├── chap01
│ │ ├── 256色转灰度图
│ │ │ ├── 源代码
│ │ │ │ ├── Debug
│ │ │ │ │ ├── MainFrm.obj
│ │ │ │ │ ├── MainFrm.sbr
│ │ │ │ │ ├── MyDIP.bsc
│ │ │ │ │ ├── MyDIP.exe
│ │ │ │ │ ├── MyDIP.ilk
│ │ │ │ │ ├── MyDIP.obj
│ │ │ │ │ ├── MyDIP.pch
│ │ │ │ │ ├── MyDIP.pdb
│ │ │ │ │ ├── MyDIP.res
│ │ │ ├── BMPViewerDoc.h
│ │ │ ├── BMPViewerView.cpp
│ │ │ ├── BMPViewerView.h
│ │ │ ├── Debug
│ │ │ │ └── BMPViewer.exe
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ └── res
│ │ │ ├── BMPViewer.ico
│ │ │ ├── BMPViewer.rc2
│ │ │ ├── BMPViewerDoc.ico
│ │ │ ├── Toolbar.bmp
│ │ │ └── icon1.ico
│ │ ├── Sobel算子边缘检测算法
│ │ │ └── readme.txt
│ │ ├── hough变化
│ │ │ ├── 源代码
│ │ │ │ ├── Debug
│ │ │ │ │ └── MyDIP.exe
│ │ │ │ ├── MainFrm.cpp
│ │ │ │ ├── MainFrm.h
│ │ │ │ ├── MyDIP.aps
│ │ │ │ ├── MyDIP.clw
│ │ │ │ ├── MyDIP.cpp
│ │ │ │ ├── MyDIP.dsp
│ │ │ │ ├── MyDIP.dsw
│ │ │ │ ├── MyDIP.h
│ │ │ │ ├── MyDIP.ncb
│ │ │ │ ├── MyDIP.opt
│ │ │ │ ├── MyDIP.plg
│ │ │ │ ├── MyDIP.positions
│ │ │ │ ├── MyDIP.rc
│ │ │ │ ├── MyDIPDoc.cpp
│ │ │ │ ├── MyDIPDoc.h
│ │ │ │ ├── MyDIPView.cpp
│ │ │ │ ├── MyDIPView.h
│ │ │ │ ├── ReadMe.txt
│ │ │ │ ├── Resource.h
│ │ │ │ ├── StdAfx.cpp
│ │ │ │ ├── StdAfx.h
│ │ │ │ ├── dibapi.cpp
│ │ │ │ ├── dibapi.h
│ │ │ │ ├── mydib.cpp
│ │ │ │ ├── mydib.h
│ │ │ │ └── res
│ │ │ │ ├── MyDIP.ico
│ │ │ │ ├── MyDIP.rc2
│ │ │ │ ├── MyDIPDoc.ico
│ │ │ │ └── Toolbar.bmp
│ │ │ └── 测试图片
│ │ │ ├── result.bmp
│ │ │ └── source.bmp
│ │ ├── 用Canny算子提取边缘
│ │ │ ├── 源代码
│ │ │ │ ├── ChildFrm.cpp
│ │ │ │ ├── ChildFrm.h
│ │ │ │ ├── ColorTable.h
│ │ │ │ ├── DIBPrcs.cpp
│ │ │ │ ├── Debug
│ │ │ │ │ └── ImageProcessing.exe
│ │ │ │ ├── GlobalApi.h
│ │ │ │ ├── ImageProcessing.aps
│ │ │ │ ├── ImageProcessing.clw
│ │ │ │ ├── ImageProcessing.cpp
│ │ │ │ ├── ImageProcessing.dsp
│ │ │ │ ├── ImageProcessing.dsw
│ │ │ │ ├── ImageProcessing.h
│ │ │ │ ├── ImageProcessing.ncb
│ │ │ │ ├── ImageProcessing.opt
│ │ │ │ ├── ImageProcessing.plg
│ │ │ │ ├── ImageProcessing.rc
│ │ │ │ ├── ImageProcessingDoc.cpp
│ │ │ │ ├── ImageProcessingDoc.h
│ │ │ │ ├── ImageProcessingView.cpp
│ │ │ │ ├── ImageProcessingView.h
│ │ │ │ ├── MainFrm.cpp
│ │ │ │ ├── MainFrm.h
│ │ │ │ ├── ReadMe.txt
│ │ │ │ ├── Recog.asp
│ │ │ │ ├── Release
│ │ │ │ │ └── ImageProcessing.exe
│ │ │ │ ├── Resource.h
│ │ │ │ ├── SegApi.cpp
│ │ │ │ ├── StdAfx.cpp
│ │ │ │ ├── StdAfx.h
│ │ │ │ ├── cdib.cpp
│ │ │ │ ├── cdib.h
│ │ │ │ └── res
│ │ │ │ ├── ImageProcessing.ico
│ │ │ │ ├── ImageProcessing.rc2
│ │ │ │ ├── ImageProcessingDoc.ico
│ │ │ │ └── Toolbar.bmp
│ │ │ └── 测试图片
│ │ │ ├── 用canny算子提取边缘.bmp
│ │ │ └── 原始lena图像.bmp
│ │ ├── 取对数
│ │ │ ├── 源代码
│ │ │ │ ├── Debug
│ │ │ │ ├── MainFrm.cpp
│ │ │ │ ├── MainFrm.h
│ │ │ │ ├── MyDIP.aps
│ │ │ │ ├── MyDIP.clw
│ │ │ │ ├── MyDIP.cpp
│ │ │ │ ├── MyDIP.dsp
│ │ │ │ ├── MyDIP.dsw
│ │ │ │ ├── MyDIP.h
│ │ │ │ ├── MyDIP.ncb
│ │ │ │ ├── MyDIP.opt
│ │ │ │ ├── MyDIP.rc
│ │ │ │ ├── MyDIPDoc.cpp
│ │ │ │ ├── MyDIPDoc.h
│ │ │ │ ├── MyDIPView.cpp
│ │ │ │ ├── MyDIPView.h
│ │ │ │ ├── ReadMe.txt
│ │ │ │ ├── Release
│ │ │ │ │ └── MyDIP.exe
│ │ │ │ ├── Resource.h
│ │ │ │ ├── StdAfx.cpp
│ │ │ │ ├── StdAfx.h
│ │ │ │ ├── dibapi.cpp
│ │ │ │ ├── dibapi.h
│ │ │ │ ├── mydib.cpp
│ │ │ │ ├── mydib.h
│ │ │ │ └── res
│ │ │ │ ├── MyDIP.ico
│ │ │ │ ├── MyDIP.rc2
│ │ │ │ ├── MyDIPDoc.ico
│ │ │ │ └── Toolbar.bmp
│ │ │ └── 测试图片
│ │ │ ├── 原始lena图像.bmp
│ │ │ └── 取对数后.bmp
│ │ ├── 取指数
│ │ │ ├── 源代码
│ │ │ │ ├── Debug
│ │ │ │ ├── MainFrm.cpp
│ │ │ │ ├── MainFrm.h
│ │ │ │ ├── MyDIP.aps
│ │ │ │ ├── MyDIP.clw
│ │ │ │ ├── MyDIP.cpp
│ │ │ │ ├── MyDIP.dsp
│ │ │ │ ├── MyDIP.dsw
│ │ │ │ ├── MyDIP.h
│ │ │ │ ├── MyDIP.ncb
│ │ │ │ ├── MainFrm.cpp
│ │ │ │ ├── MainFrm.h
│ │ │ │ ├── MyDIP.clw
│ │ │ │ ├── MyDIP.cpp
│ │ │ │ ├── MyDIP.dsp
│ │ │ │ ├── Wavelet1D.ncb
│ │ │ │ ├── Wavelet1D.opt
│ │ │ │ ├── Wavelet1D.plg
│ │ │ │ ├── Wavelet1D.rc
│ │ │ │ ├── Wavelet1DDlg.cpp
│ │ │ │ ├── Wavelet1DDlg.h
│ │ │ │ ├── h1.dat
│ │ │ │ ├── h10.dat
│ │ │ │ ├── h2.dat
│ │ │ │ ├── h3.dat
│ │ │ │ ├── h4.dat
│ │ │ │ ├── h5.dat
│ │ │ │ ├── h6.dat
│ │ │ │ ├── h7.dat
│ │ │ │ ├── h8.dat
│ │ │ │ ├── h9.dat
│ │ │ │ └── res
│ │ │ │ ├── Wavelet1D.ico
│ │ │ │ └── Wavelet1D.rc2
│ │ │ └── Wavelet2D
│ │ │ ├── ColorTable.h
│ │ │ ├── DIBAPI.CPP
│ │ │ ├── DIBAPI.H
│ │ │ ├── Debug
│ │ │ ├── ReadMe.txt
│ │ │ ├── Resource.h
│ │ │ ├── Sample.bmp
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── Wavelet2D.aps
│ │ │ ├── Wavelet2D.clw
│ │ │ ├── Wavelet2D.cpp
│ │ │ ├── Wavelet2D.dsp
│ │ │ ├── Wavelet2D.dsw
│ │ │ ├── Wavelet2D.exe
│ │ │ ├── Wavelet2D.h
│ │ │ ├── Wavelet2D.ncb
│ │ │ ├── Wavelet2D.opt
│ │ │ ├── Wavelet2D.plg
│ │ │ ├── Wavelet2D.rc
│ │ │ ├── Wavelet2DDlg.cpp
│ │ │ ├── Wavelet2DDlg.h
│ │ │ ├── h1.dat
│ │ │ ├── h10.dat
│ │ │ ├── h2.dat
│ │ │ ├── h3.dat
│ │ │ ├── h4.dat
│ │ │ ├── h5.dat
│ │ │ ├── h6.dat
│ │ │ ├── h7.dat
│ │ │ ├── h8.dat
│ │ │ ├── h9.dat
│ │ │ └── res
│ │ │ ├── Wavelet2D.ico
│ │ │ └── Wavelet2D.rc2
│ │ ├── 滚动浏览位图
│ │ │ ├── Debug
│ │ │ │ ├── Sample.bmp
│ │ │ │ └── ScrollBitmap.exe
│ │ │ ├── Readme.txt
│ │ │ ├── Resource.h
│ │ │ ├── ScrollBitmap.aps
│ │ │ ├── ScrollBitmap.cpp
│ │ │ ├── ScrollBitmap.dsp
│ │ │ ├── ScrollBitmap.dsw
│ │ │ ├── ScrollBitmap.exe
│ │ │ ├── ScrollBitmap.h
│ │ │ ├── ScrollBitmap.ilk
│ │ │ ├── ScrollBitmap.ncb
│ │ │ ├── ScrollBitmap.opt
│ │ │ ├── ScrollBitmap.plg
│ │ │ ├── ScrollBitmap.rc
│ │ │ ├── ScrollBitmapDlg.cpp
│ │ │ ├── ScrollBitmapDlg.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── commondialog.cpp
│ │ │ ├── commondialog.h
│ │ │ └── res
│ │ │ ├── 38.ico
│ │ │ ├── ScrollBitmap.rc2
│ │ │ └── bmp.bmp
│ │ └── 透明位图背景上的滚动字幕实例
│ │ ├── CreditStatic.cpp
│ │ ├── CreditStatic.h
│ │ ├── Debug
│ │ │ └── dlgscroll.exe
│ │ ├── ReadMe.txt
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── dlgscroll.aps
│ │ ├── dlgscroll.clw
│ │ ├── dlgscroll.cpp
│ │ ├── dlgscroll.dsp
│ │ ├── dlgscroll.dsw
│ │ ├── dlgscroll.h
│ │ ├── dlgscroll.ncb
│ │ ├── dlgscroll.opt
│ │ ├── dlgscroll.plg
│ │ ├── dlgscroll.rc
│ │ ├── dlgscrollDlg.cpp
│ │ ├── dlgscrollDlg.h
│ │ └── res
│ │ ├── back.bmp
│ │ ├── dlgscroll.ico
│ │ ├── dlgscroll.rc2
│ │ └── 滚动车.bmp
│ ├── chap03
│ │ └── 基于数字图像处理的数码相机调焦系统
│ │ ├── CDib.cpp
│ │ ├── CDib.h
│ │ ├── Debug
│ │ │ └── Pro2.exe
│ │ ├── Definition.cpp
│ │ ├── Definition.h
│ │ ├── DialogIm.cpp
│ │ ├── DialogIm.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── Pro2.aps
│ │ ├── Pro2.clw
│ │ ├── Pro2.cpp
│ │ ├── Pro2.dsp
│ │ ├── Pro2.dsw
│ │ ├── Pro2.h
│ │ ├── Pro2.ncb
│ │ ├── Pro2.opt
│ │ ├── Pro2.plg
│ │ ├── Pro2.rc
│ │ ├── Pro2Doc.cpp
│ │ ├── Pro2Doc.h
│ │ ├── Pro2View.cpp
│ │ ├── Pro2View.h
│ │ ├── ReadMe.txt
│ │ ├── StatChart.cpp
│ │ ├── StatChart.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── res
│ │ │ ├── Pro2.ico
│ │ │ ├── Pro2.rc2
│ │ │ ├── Pro2Doc.ico
│ │ │ └── Toolbar.bmp
│ │ └── resource.h
│ ├── chap04
│ │ └── 计算机集成数控技术
│ │ ├── example
│ │ │ ├── e1.bmp
│ │ │ ├── e1.nc
│ │ │ ├── e2.bmp
│ │ │ ├── e2.nc
│ │ │ ├── e3.bmp
│ │ │ ├── e3.nc
│ │ │ ├── e4.bmp
│ │ │ └── e4.nc
│ │ ├── imageCAM
│ │ │ ├── 33.nc
│ │ │ ├── AddToolDia.cpp
│ │ │ ├── AddToolDia.h
│ │ │ ├── AdjustColorDlg.cpp
│ │ │ ├── AdjustColorDlg.h
│ │ │ ├── BCDlg.cpp
│ │ │ ├── BCDlg.h
│ │ │ ├── CONFIG.CFG
│ │ │ ├── CanvasSize.cpp
│ │ │ ├── CanvasSize.h
│ │ │ ├── ChildFrm.cpp
│ │ │ ├── ChildFrm.h
│ │ │ ├── ColorBitsDlg.cpp
│ │ │ ├── ColorBitsDlg.h
│ │ │ ├── ColorGrid.cpp
│ │ │ ├── ColorGrid.h
│ │ │ ├── ConvoluteDlg.cpp
│ │ │ ├── ConvoluteDlg.h
│ │ │ ├── CqOctree.cpp
│ │ │ ├── DIBAPI.CPP
│ │ │ ├── DIBAPI.H
│ │ │ ├── DIBSTATIC.CPP
│ │ │ ├── DIBSTATIC.H
│ │ │ ├── DOCMANAGER.CPP
│ │ │ ├── DOCMANAGER.H
│ │ │ ├── Debug
│ │ │ │ └── imageCAM.exe
│ │ │ ├── Dib.cpp
│ │ │ ├── Dib.h
│ │ │ ├── FloatDibWnd.cpp
│ │ │ ├── FloatDibWnd.h
│ │ │ ├── FollowingDlg.cpp
│ │ │ ├── FollowingDlg.h
│ │ │ ├── GrayDlg.cpp
│ │ │ ├── GrayDlg.h
│ │ │ ├── HLP
│ │ │ │ ├── AfxCore.rtf
│ │ │ │ ├── AfxPrint.rtf
│ │ │ │ ├── AppExit.bmp
│ │ │ │ ├── Bullet.bmp
│ │ │ │ ├── CurArw2.bmp
│ │ │ │ ├── CurArw4.bmp
│ │ │ │ ├── CurHelp.bmp
│ │ │ │ ├── EditCopy.bmp
│ │ │ │ ├── EditCut.bmp
│ │ │ │ ├── EditPast.bmp
│ │ │ │ ├── EditUndo.bmp
│ │ │ │ ├── FileNew.bmp
│ │ │ │ ├── FileOpen.bmp
│ │ │ │ ├── FilePrnt.bmp
│ │ │ │ ├── FileSave.bmp
│ │ │ │ ├── HlpSBar.bmp
│ │ │ │ ├── HlpTBar.bmp
│ │ │ │ ├── IMAGENC.GID
│ │ │ │ ├── RecFirst.bmp
│ │ │ │ ├── RecLast.bmp
│ │ │ │ ├── RecNext.bmp
│ │ │ │ ├── RecPrev.bmp
│ │ │ │ ├── ScMenu.bmp
│ │ │ │ ├── Scmax.bmp
│ │ │ │ ├── Scmin.bmp
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── imageCAM.HLP
│ │ │ │ ├── imageCAM.LOG
│ │ │ │ ├── imageCAM.cnt
│ │ │ │ ├── imageCAM.hm
│ │ │ │ ├── imageCAM.hpj
│ │ │ │ ├── imageCAM.ph
│ │ │ │ └── imageNC.LOG
│ │ │ ├── HTMLHELP.H
│ │ │ ├── HTMLHELP.LIB
│ │ │ ├── IP.CPP
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── OutputDialog.cpp
│ │ │ ├── OutputDialog.h
│ │ │ ├── PREVIEWFILEDLG.CPP
│ │ │ ├── PREVIEWFILEDLG.H
│ │ │ ├── PaintParambar.cpp
│ │ │ ├── PaintParambar.h
│ │ │ ├── PaintToolbar.cpp
│ │ │ ├── PaintToolbar.h
│ │ │ ├── PenParamsList.cpp
│ │ │ ├── PenParamsList.h
│ │ │ ├── PenWidth.cpp
│ │ │ ├── PenWidth.h
│ │ │ ├── RES
│ │ │ │ ├── 4WAY01.CUR
│ │ │ │ ├── BITMAP1.BMP
│ │ │ │ ├── BMP00001.BMP
│ │ │ │ ├── BMP00002.BMP
│ │ │ │ ├── BMP00003.BMP
│ │ │ │ ├── BMP00004.BMP
│ │ │ │ ├── CUR00001.CUR
│ │ │ │ ├── CUR00002.CUR
│ │ │ │ ├── CUR00003.CUR
│ │ │ │ ├── CURSOR1.CUR
│ │ │ │ ├── CURSORFR.CUR
│ │ │ │ ├── Cross02.cur
│ │ │ │ ├── Cross03.cur
│ │ │ │ ├── H_MOVE.CUR
│ │ │ │ ├── PICK.CUR
│ │ │ │ ├── Pencil.cur
│ │ │ │ ├── TOOLBAR1.BMP
│ │ │ │ ├── Toolbar.bmp
│ │ │ │ ├── imageCAM.ico
│ │ │ │ ├── imageCAM.rc2
│ │ │ │ ├── imageCAMDoc.ico
│ │ │ │ ├── toolbase1.BMP
│ │ │ │ ├── toolbase2.BMP
│ │ │ │ └── 未命名.BMP
│ │ │ ├── ReadMe.txt
│ │ │ ├── Scale.cpp
│ │ │ ├── Scale.h
│ │ │ ├── SelectPaste.cpp
│ │ │ ├── SelectPaste.h
│ │ │ ├── SelectparDlg.cpp
│ │ │ ├── SelectparDlg.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── TOOLBASE.H
│ │ │ ├── imageCAM.aps
│ │ │ ├── imageCAM.clw
│ │ │ ├── imageCAM.cpp
│ │ │ ├── imageCAM.dsp
│ │ │ ├── imageCAM.dsw
│ │ │ ├── imageCAM.h
│ │ │ ├── imageCAM.ncb
│ │ │ ├── imageCAM.odl
│ │ │ ├── imageCAM.opt
│ │ │ ├── imageCAM.plg
│ │ │ ├── imageCAM.positions
│ │ │ ├── imageCAM.rc
│ │ │ ├── imageCAM.reg
│ │ │ ├── imageCAMDoc.cpp
│ │ │ ├── imageCAMDoc.h
│ │ │ ├── imageCAMView.cpp
│ │ │ ├── imageCAMView.h
│ │ │ └── resource.h
│ │ ├── 数控代码仿真器.exe
│ │ ├── 简单数控代码说明.doc
│ │ └── 数控代码仿真器使用说明.doc
│ ├── chap05
│ │ └── 细胞识别统计系统
│ │ ├── Blood.bmp
│ │ ├── Cell.aps
│ │ ├── Cell.clw
│ │ ├── Cell.cpp
│ │ ├── Cell.dsp
│ │ ├── Cell.dsw
│ │ ├── Cell.exe
│ │ ├── Cell.h
│ │ ├── Cell.ncb
│ │ ├── Cell.opt
│ │ ├── Cell.plg
│ │ ├── Cell.rc
│ │ ├── CellDoc.cpp
│ │ ├── CellDoc.h
│ │ ├── CellView.cpp
│ │ ├── CellView.h
│ │ ├── Cell_debug.exe
│ │ ├── HSI.cpp
│ │ ├── HSI.h
│ │ ├── HSIDlg.cpp
│ │ ├── HSIDlg.h
│ │ ├── HistogramDlg.cpp
│ │ ├── HistogramDlg.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Resource.h
│ │ ├── Set.cpp
│ │ ├── Set.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── cell.bmp
│ │ ├── res
│ │ │ ├── Cell.ico
│ │ │ ├── Cell.rc2
│ │ │ ├── CellDoc.ico
│ │ │ ├── Toolbar.bmp
│ │ │ └── cursor1.cur
│ │ └── 血液图片
│ │ ├── Blood.bmp
│ │ └── cell.bmp
│ ├── chap06
│ │ └── 人脸检测系统
│ │ ├── DIB.cpp
│ │ ├── DIB.h
│ │ ├── Debug
│ │ │ ├── face.exe
│ │ │ └── facemodel.bmp
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── face.aps
│ │ ├── face.clw
│ │ ├── face.cpp
│ │ ├── face.dsp
│ │ ├── face.dsw
│ │ ├── face.h
│ │ ├── face.ncb
│ │ ├── face.opt
│ │ ├── face.plg
│ │ ├── face.rc
│ │ ├── faceDoc.cpp
│ │ ├── faceDoc.h
│ │ ├── faceView.cpp
│ │ ├── faceView.h
│ │ ├── facemodel
│ │ │ ├── Thumbs.db
│ │ │ └── facemodel.bmp
│ │ └── res
│ │ ├── Toolbar.bmp
│ │ ├── face.ico
│ │ ├── face.rc2
│ │ └── faceDoc.ico
│ ├── chap07
│ │ └── 车牌定位
│ │ ├── ChildFrm.cpp
│ │ ├── ChildFrm.h
│ │ ├── ColorTable.h
│ │ ├── DIBAPI.CPP
│ │ ├── DIBAPI.H
│ │ ├── Debug
│ │ │ └── TypeRec.exe
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── TemplateTrans.cpp
│ │ ├── TemplateTrans.h
│ │ ├── TypeRec.aps
│ │ ├── TypeRec.clw
│ │ ├── TypeRec.cpp
│ │ ├── TypeRec.dsp
│ │ ├── TypeRec.dsw
│ │ ├── TypeRec.h
│ │ ├── TypeRec.ncb
│ │ ├── TypeRec.opt
│ │ ├── TypeRec.plg
│ │ ├── TypeRec.rc
│ │ ├── TypeRecDoc.cpp
│ │ ├── TypeRecDoc.h
│ │ ├── TypeRecView.cpp
│ │ ├── TypeRecView.h
│ │ ├── edgecontour.cpp
│ │ ├── edgecontour.h
│ │ ├── pic
│ │ │ ├── Img10_24-gray.bmp
│ │ │ ├── Img10_24.bmp
│ │ │ ├── Img1_24-256.bmp
│ │ │ ├── Img1_24-gray.bmp
│ │ │ ├── Img1_24.bmp
│ │ │ └── Thumbs.db
│ │ ├── res
│ │ │ ├── Toolbar.bmp
│ │ │ ├── TypeRec.ico
│ │ │ ├── TypeRec.rc2
│ │ │ └── TypeRecDoc.ico
│ │ ├── suanfa1.cpp
│ │ └── suanfa1.h
│ ├── chap08
│ │ └── 基于神经网络的文字识别系统
│ │ ├── Readme.txt
│ │ ├── 矩阵类库源代码
│ │ │ ├── test.cpp
│ │ │ ├── test.dsp
│ │ │ ├── test.dsw
│ │ │ ├── tmat.h
│ │ │ └── tvec.h
│ │ └── 数字识别系统源代码
│ │ ├── Bp.h
│ │ ├── ChildView.cpp
│ │ ├── ChildView.h
│ │ ├── DBpParamater.cpp
│ │ ├── DBpParamater.h
│ │ ├── DIBAPI.CPP
│ │ ├── DIBAPI.H
│ │ ├── DigitRec.aps
│ │ ├── DigitRec.clw
│ │ ├── DigitRec.cpp
│ │ ├── DigitRec.dsp
│ │ ├── DigitRec.dsw
│ │ ├── DigitRec.h
│ │ ├── DigitRec.ncb
│ │ ├── DigitRec.opt
│ │ ├── DigitRec.plg
│ │ ├── DigitRec.rc
│ │ ├── INPUT1.cpp
│ │ ├── INPUT1.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ ├── DigitRec.exe
│ │ │ └── 图片
│ │ │ ├── num
│ │ │ ├── result.txt
│ │ │ ├── whi.dat
│ │ │ ├── win.dat
│ │ │ ├── 训练样本.bmp
│ │ │ ├── 测试图片1.bmp
│ │ │ ├── 测试图片2.bmp
│ │ │ ├── 测试图片3.bmp
│ │ │ ├── 测试图片4.bmp
│ │ │ ├── 测试图片5.bmp
│ │ │ ├── 测试图片6.bmp
│ │ │ ├── 测试图片7.bmp
│ │ │ └── 已经训练好的网络参数.rar
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── mydiblib.h
│ │ ├── res
│ │ │ ├── DigitRec.ico
│ │ │ ├── DigitRec.rc2
│ │ │ └── Toolbar.bmp
│ │ └── 使用说明.txt
│ ├── chap09
│ │ └── reame.txt
│ ├── chap10
│ │ └── 运动识别系统
│ │ ├── DIB.cpp
│ │ ├── DIB.h
│ │ ├── Debug
│ │ │ └── ydpd.exe
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── Track.cpp
│ │ ├── Track.h
│ │ ├── filename.txt
│ │ ├── imgs
│ │ │ ├── Thumbs.db
│ │ │ ├── ball.bmp
│ │ │ ├── filename.txt
│ │ │ ├── test_1.bmp
│ │ │ ├── test_2.bmp
│ │ │ ├── test_3.bmp
│ │ │ ├── test_4.bmp
│ │ │ ├── test_5.bmp
│ │ │ ├── test_6.bmp
│ │ │ ├── test_7.bmp
│ │ │ ├── test_8.bmp
│ │ │ ├── test_9.bmp
│ │ │ ├── test_bk1.bmp
│ │ │ └── test_bk2.bmp
│ │ ├── res
│ │ │ ├── Toolbar.bmp
│ │ │ ├── ydpd.ico
│ │ │ ├── ydpd.rc2
│ │ │ └── ydpdDoc.ico
│ │ ├── test.bmp
│ │ ├── test_1.bmp
│ │ ├── test_2.bmp
│ │ ├── test_3.bmp
│ │ ├── test_4.bmp
│ │ ├── test_5.bmp
│ │ ├── test_6.bmp
│ │ ├── test_7.bmp
│ │ ├── test_8.bmp
│ │ ├── test_9.bmp
│ │ ├── test_bk1.bmp
│ │ ├── ydgj.h
│ │ ├── ydpd.aps
│ │ ├── ydpd.clw
│ │ ├── ydpd.cpp
│ │ ├── ydpd.dsp
│ │ ├── ydpd.dsw
│ │ ├── ydpd.h
│ │ ├── ydpd.ncb
│ │ ├── ydpd.opt
│ │ ├── ydpd.plg
│ │ ├── ydpd.rc
│ │ ├── ydpdDoc.cpp
│ │ ├── ydpdDoc.h
│ │ ├── ydpdView.cpp
│ │ └── ydpdView.h
│ ├── chap11
│ │ └── 人体跟踪源代码
│ │ ├── Fn000.bmp
│ │ ├── p8.avi
│ │ └── 人体跟踪系统源代码
│ │ ├── AnimateIcon.cpp
│ │ ├── AnimateIcon.h
│ │ ├── AviToolbar.cpp
│ │ ├── AviToolbar.h
│ │ ├── BtnST.cpp
│ │ ├── BtnST.h
│ │ ├── CJ60Lib.dll
│ │ ├── CJ60Lib.h
│ │ ├── CJ60Lib.lib
│ │ ├── CJ60Libd.dll
│ │ ├── CJ60Libd.lib
│ │ ├── CJCaption.h
│ │ ├── CJControlBar.h
│ │ ├── CJDockBar.h
│ │ ├── CJDockContext.h
│ │ ├── CJExplorerBar.h
│ │ ├── CJFlatButton.h
│ │ ├── CJFlatComboBox.h
│ │ ├── CJFlatHeaderCtrl.h
│ │ ├── CJFrameWnd.h
│ │ ├── CJListCtrl.h
│ │ ├── CJListView.h
│ │ ├── CJMDIFrameWnd.h
│ │ ├── CJMiniDockFrameWnd.h
│ │ ├── CJOutlookBar.h
│ │ ├── CJPagerCtrl.h
│ │ ├── CJSearchEdit.h
│ │ ├── CJSizeDockBar.h
│ │ ├── CJTabCtrlBar.h
│ │ ├── CJToolBar.h
│ │ ├── CTTrackingView.cpp
│ │ ├── CTTrackingView.h
│ │ ├── CoolBar.h
│ │ ├── CoolMenu.h
│ │ ├── DTASvm.aps
│ │ ├── DTASvm.clw
│ │ ├── DTASvm.cpp
│ │ ├── DTASvm.dsp
│ │ ├── DTASvm.dsw
│ │ ├── DTASvm.h
│ │ ├── DTASvm.ncb
│ │ ├── DTASvm.opt
│ │ ├── DTASvm.plg
│ │ ├── DTASvm.rc
│ │ ├── DTASvmDoc.cpp
│ │ ├── DTASvmDoc.h
│ │ ├── DTASvmView.cpp
│ │ ├── DTASvmView.h
│ │ ├── DataView.cpp
│ │ ├── DataView.h
│ │ ├── Debug
│ │ ├── FixTB.h
│ │ ├── FlatBar.h
│ │ ├── Global.cpp
│ │ ├── Global.h
│ │ ├── Include
│ │ │ ├── CJ60Lib.h
│ │ │ ├── CJCaption.h
│ │ │ ├── CJControlBar.h
│ │ │ ├── CJDockBar.h
│ │ │ ├── CJDockContext.h
│ │ │ ├── CJExplorerBar.h
│ │ │ ├── CJFlatButton.h
│ │ │ ├── CJFlatComboBox.h
│ │ │ ├── CJFlatHeaderCtrl.h
│ │ │ ├── CJFrameWnd.h
│ │ │ ├── CJListCtrl.h
│ │ │ ├── CJListView.h
│ │ │ ├── CJMDIFrameWnd.h
│ │ │ ├── CJMiniDockFrameWnd.h
│ │ │ ├── CJOutlookBar.h
│ │ │ ├── CJPagerCtrl.h
│ │ │ ├── CJSearchEdit.h
│ │ │ ├── CJSizeDockBar.h
│ │ │ ├── CJTabCtrlBar.h
│ │ │ ├── CJToolBar.h
│ │ │ ├── CoolBar.h
│ │ │ ├── CoolMenu.h
│ │ │ ├── FixTB.h
│ │ │ ├── FlatBar.h
│ │ │ ├── MenuBar.h
│ │ │ ├── ModulVer.h
│ │ │ ├── SHFileInfo.h
│ │ │ ├── ShellPidl.h
│ │ │ ├── ShellTree.h
│ │ │ ├── Subclass.h
│ │ │ └── hyperlink.h
│ │ ├── InfoView.cpp
│ │ ├── InfoView.h
│ │ ├── Lib
│ │ │ ├── CJ60Lib.dll
│ │ │ ├── CJ60Lib.lib
│ │ │ ├── CJ60Libd.dll
│ │ │ ├── CJ60Libd.lib
│ │ │ ├── DTASvm.exe
│ │ │ ├── DTASvm.ilk
│ │ │ └── thl.lib
│ │ ├── MVC2D1.tmp
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── MenuBar.h
│ │ ├── ModulVer.h
│ │ ├── MyBarLeft.cpp
│ │ ├── MyBarLeft.h
│ │ ├── MyBarLeftBottom.cpp
│ │ ├── MyBarLeftBottom.h
│ │ ├── MyTreeView.cpp
│ │ ├── MyTreeView.h
│ │ ├── MyView.cpp
│ │ ├── MyView.h
│ │ ├── Page.wos
│ │ ├── ReadMe.txt
│ │ ├── RightBar.cpp
│ │ ├── RightBar.h
│ │ ├── SHFileInfo.h
│ │ ├── ShellPidl.h
│ │ ├── ShellTree.h
│ │ ├── Splash.cpp
│ │ ├── Splash.h
│ │ ├── SplashBox.cpp
│ │ ├── SplashBox.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── Subclass.h
│ │ ├── TextTrans.cpp
│ │ ├── TextTrans.h
│ │ ├── Tracking.cpp
│ │ ├── Tracking.h
│ │ ├── UserDlg.cpp
│ │ ├── UserDlg.h
│ │ ├── hyperlink.h
│ │ ├── res
│ │ │ ├── 100_4227.bmp
│ │ │ ├── 32x32x16_Exit.ico
│ │ │ ├── 32x32x16_Exit1.ico
│ │ │ ├── 32x32x16_Ok.ico
│ │ │ ├── 32x32x16_Ok1.ico
│ │ │ ├── AnimateIcon.bmp
│ │ │ ├── BACK.BMP
│ │ │ ├── CT32.avi
│ │ │ ├── DATA.avi
│ │ │ ├── DLGBKgroud.bmp
│ │ │ ├── DLGCaption.bmp
│ │ │ ├── DLGCaption1.bmp
│ │ │ ├── DTA.avi
│ │ │ ├── DTAS.avi
│ │ │ ├── DTAS2.avi
│ │ │ ├── DTAS3.avi
│ │ │ ├── DTAS4.avi
│ │ │ ├── DTAS5.avi
│ │ │ ├── DTASvm.bmp
│ │ │ ├── DTASvm.rc2
│ │ │ ├── DTASvm1.ico
│ │ │ ├── Skins
│ │ │ │ ├── BACK0.BMP
│ │ │ │ ├── BACK2.BMP
│ │ │ │ ├── BACK3.BMP
│ │ │ │ ├── BACK4.BMP
│ │ │ │ ├── BACK5.BMP
│ │ │ │ └── BACK7.BMP
│ │ │ ├── Splsh16-2.bmp
│ │ │ ├── Splsh16-3.bmp
│ │ │ ├── Splsh16.bmp
│ │ │ ├── Splsh16back.bmp
│ │ │ ├── Thumbs.db
│ │ │ ├── Toobar48.bmp
│ │ │ ├── Toolbar.bmp
│ │ │ ├── ToolbarCold.bmp
│ │ │ ├── ToolbarCold2.bmp
│ │ │ ├── ToolbarCold3.bmp
│ │ │ ├── Toolbarhot.bmp
│ │ │ ├── Toolbarhot1.bmp
│ │ │ ├── U.bmp
│ │ │ ├── avi3.bin
│ │ │ ├── bitmap1.bmp
│ │ │ ├── cur00004.cur
│ │ │ ├── cur_movi.cur
│ │ │ ├── cur_zoom.cur
│ │ │ ├── cursor1.cur
│ │ │ ├── icon_no.ico
│ │ │ ├── icon_yes.ico
│ │ │ ├── idr_main.ico
│ │ │ ├── il_class.bmp
│ │ │ ├── il_tab.bmp
│ │ │ ├── key.bmp
│ │ │ ├── mainfram.bmp
│ │ │ ├── psst.ico
│ │ │ ├── psst_2.bmp
│ │ │ ├── rc.bmp
│ │ │ └── 复件 Toolbarhot.bmp
│ │ └── resource.h
│ └── readme.txt
└── VC数字图像.rar
227 directories, 1663 files

VC++数字图像处理与工程案例代码

热门推荐

相关文章