登录
首页 » 图形图像 » 各种图像边缘提取算法的C语言实现及一些测试用图像。这些算法包括:Marr、Canny、shen...

各种图像边缘提取算法的C语言实现及一些测试用图像。这些算法包括:Marr、Canny、shen...

于 2022-04-27 发布 文件大小:2.01 MB
0 209
下载积分: 2 下载次数: 1

代码说明:

各种图像边缘提取算法的C语言实现及一些测试用图像。这些算法包括:Marr、Canny、shen-Castan、Sobel等等。(注:这些代码是《Algorithms for Image Processing And Computer Vision》一书中的内容,要想理解代码最好参看原书)。-various Image Edge Extraction Algorithm in C language and some test images. These algorithms include : Marr, Canny, Shen-Castan, Sobel and so on. (Note : the code is "Image Processing Algorithms for Computer Vision And" the contents of a book, in order to see the best understanding of the original code book).

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

发表评论

0 个回复

  • 最基本的软件包
    最基本的图形软件包-basic graphics package
    2022-03-21 02:02:19下载
    积分:1
  • CAD基本入门文档,定位,基本操作,很适合新手
    CAD基本入门文档,定位,基本操作,很适合新手-CAD basic introductory document, positioning, basic operation, it is suitable for novice
    2022-12-20 05:15:03下载
    积分:1
  • 人脸检测代码。算法都是基本的。程序也有较大局限性,不过作为参考还是有价值的。...
    人脸检测代码。算法都是基本的。程序也有较大局限性,不过作为参考还是有价值的。-face detection code. Algorithms are basic. Procedures also have been quite limited, but as a reference or value.
    2022-04-06 21:02:25下载
    积分:1
  • using OpenCV image histogram function development
    用OpenCV开发图像直方图功能-using OpenCV image histogram function development
    2022-05-20 18:31:49下载
    积分:1
  • 直方修正和彩色变换
    直方图修正和彩色变换-amendments and color histogram Transform
    2022-01-28 22:31:43下载
    积分:1
  • sophisticated graphics and animation system procedure is the preparation of my o...
    精细绘图及动画 制个程序是本人自己编写,所以这里能后做出详细解释。程序运行后会在屏幕上用triplex_font显示“press any key for set off”,下方是用基本的线条画出的发射架(有点粗糙),即程序中的DrawGun()函数,当按下任意键后,将在发射架上方出现一个用横线填充的飞机,同时背景被繁星填充,此时必须按住任意键不放,否则飞机将不会发射。发射完成后,即飞机坐标小于0,将出现一句话:"successfully!!!,press ESC to quit",若中途按ESC退出,则飞机Y坐标不小于0,将出现"failue,..."这句话。-sophisticated graphics and animation system procedure is the preparation of my own, here is an ability to make a detailed explanation. After running on the screen with triplex_font shows that the "press any key for set off", is the bottom line with the basic head of the launcher (somewhat rough), that the procedures DrawGun () function, when pressed any button, will be on the launch pad tower side there with a hyphen Filled with the aircraft, while the background was filled with stars, this time to be arbitrary button is pressed it, it will not launch aircraft. Fired Upon completion, the coordinates of the aircraft is less than 0, there will be one sentence : "successfully! ! ! , Press ESC to
    2023-04-03 20:20:03下载
    积分:1
  • 程序运行平台为AutoCAD2000简体中文版。 开发平台VC6.0及ObjectARX3.0(本程序所涉及的文件已包含在安装程序中)。 1. 解压缩sourc...
    程序运行平台为AutoCAD2000简体中文版。 开发平台VC6.0及ObjectARX3.0(本程序所涉及的文件已包含在安装程序中)。 1. 解压缩source.zip到C盘,自动生成c:source目录。 2.在VC6下打开工程c:sourceMyModelessSheet.dsw。 3.编译生成c:/source/debug/MyModelessSheet.arx文件。(用Rebuild All命令) 4.启动 AutoCAD2000。选择主菜单“工具”下“加载应用程序”菜单项。 弹出加载/卸载应用程序对话框,选中c:/source/debug/MyModelessSheet.arx 单击加载按扭。关闭对话框。 5.在AutoCAD命令行输入命令MODELESSSHEET,即可显示一个无模式标签对话框。 其中属性页1和属性页2为基本子标签,扩展标签为动态扩展的。 首次运行编辑控件使用初始数据,以后运行使用注册数据,调整对话框尺寸 则编辑窗口的位置自动调整。-platform for running AutoCAD English version. VC6.0 development platform and AutoCAD2000 (the procedures involved in the document has been included in the installation procedure). 1. Decompress source.zip to C plates, automatic generation c : source directory. 2. The VC6 open the project c : source MyModelessSheet.dsw. 3. C Compiler Generation :/source/debug/MyModelessSheet.arx document. (With Rebuild All orders) 4. Start AutoCAD2000. The main menu option "Tools" under "application loading" menu item. Pop loading/unloading applicatio
    2022-08-26 05:35:33下载
    积分:1
  • 1) 直线的生成 内容:用Bresenham算法画直线 要求:  将象素网格表现出来,建立网格坐标系  用橡皮筋...
    1) 直线的生成 内容:用Bresenham算法画直线 要求:  将象素网格表现出来,建立网格坐标系  用橡皮筋的形式输入参数  鼠标移动时,显示鼠标当前位置  显示判别式的计算过程和下一点的选择策略  记录生成点的坐标,建议用表的形式  图形生成过程可以重复进行 2) 圆弧的生成 内容:用Bresenham算法画圆 要求:  将象素网格表现出来,建立网格坐标系  用橡皮筋的形式输入参数  鼠标移动时,显示鼠标当前位置  显示判别式的计算过程和下一点的选择策略  记录生成点的坐标,建议用表的形式  图形生成过程可以重复进行 -1) 直线的生成 内容:用Bresenham算法画直线 要求:  将象素网格表现出来,建立网格坐标系  用橡皮筋的形式输入参数  鼠标移动时,显示鼠标当前位置  显示判别式的计算过程和下一点的选择策略  记录生成点的坐标,建议用表的形式  图形生成过程可以重复进行 2) 圆弧的生成 内容:用Bresenham算法画圆 要求:  将象素网格表现出来,建立网格坐标系  用橡皮筋的形式输入参数  鼠标移动时,显示鼠标当前位置  显示判别式的计算过程和下一点的选择策略  记录生成点的坐标,建议用表的形式  图形生成过程可以重复进行
    2022-05-22 04:38:32下载
    积分:1
  • 数据的显示(读入bmp文件)
    图像数据的显示(读入bmp文件)-Image Data Display (read bmp files)
    2022-07-10 21:05:08下载
    积分:1
  • / / TetGen计算Delaunay tetrahedralizations,约束Delaunay四
    // TetGen computes Delaunay tetrahedralizations, constrained Delaunay tetra- // // hedralizations, and quality Delaunay tetrahedral meshes. The latter are // // nicely graded and whose tetrahedra have radius-edge ratio bounded. Such // // meshes are suitable for finite element and finite volume methods. -//TetGen computes Delaunay tetrahedralizations, constrained Delaunay tetra-////hedralizations, and quality Delaunay tetrahedral meshes. The latter are//// nicely graded and whose tetrahedra have radius-edge ratio bounded. Such//// meshes are suitable for finite element and finite volume methods.
    2022-01-22 15:57:29下载
    积分:1
  • 696516资源总数
  • 106668会员总数
  • 21今日下载