登录
首页 » Visual C++ » VC-PH

VC-PH

于 2010-05-15 发布 文件大小:5648KB
0 149
下载积分: 1 下载次数: 675

代码说明:

  球面坐标定位法校正鱼眼图像畸变,使用visual studio 2008 编写,需要OpenCV的支持(Spherical coordinates locating fish eye image distortion correction, prepared using visual studio 2008, requires the support of OpenCV)

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

发表评论

0 个回复

  • MFCvtk
    说明:  MFC结合VTK做图像处理的程序,实现了图像的显示和缩放功能。(MFC combines VTK to do image processing procedures, to achieve an image display and the zoom feature.)
    2021-02-19 16:09:45下载
    积分:1
  • DEM-read
    此程序可以根据一幅图像的DEM读取一幅图像(This program can read an image of an image based on DEM)
    2014-11-23 15:26:16下载
    积分:1
  • XIHUA
    本程序是使用c++开发语言编写的,功能是将bmp图像进行细化处理,比如,可以将比较粗的汉字细化成较细的汉字。(This program used c++ development language, the function is to thinning BMP image . For example, it can be more crude refining the Chinese characters into a fine characters.)
    2016-01-06 16:35:17下载
    积分:1
  • ImageBoard
    图像处理软件,功能齐全,简单,而且逻辑清除,很适合图像处理编程初学者(Image processing software, full-featured, simple, clear and logical, it is suitable for image processing programming beginners)
    2020-12-27 20:19:02下载
    积分:1
  • Huffman
    huffman编码 基于对BMP格式图像的编码! 具体你们自己看看!(Huffman code)
    2010-07-13 14:11:25下载
    积分:1
  • Wave-equation-forward-modeling
    1、参数初始化; 2、形成边界削波数据; 3、波场初始化; 4、Zmax层波场延拓到深度Zmax-1; 5、Zi+1层波场延拓到深度Zi; 6、重复5,从Iz Nz-1开始,直到Iz 1,得测线上的频率—空间域波场; 7、频率-空间域波场对频率做反傅里叶变换,得时间-空间波场; (1, parameter initialization 2, the formation of boundary clipping data 3, wave field initialization 4, Zmax layer wave field extended to the depth of Zmax-1 5, Zi+1 layer wave field extended to the depth of Zi 6, repeat 5, starting Iz Nz-1 until Iz 1, the frequency of the test line- spatial domain wave field 7, frequency space domain wave field to frequency inverse Fourier transform, time- space field )
    2021-03-07 16:59:29下载
    积分:1
  • stereo
    立体视觉代码。主要过程包括:harris角点检测,zncc最优策略匹配,扩散得到更多特征对应,计算disparity和对应颜色值。另外提供了两幅图片以及对应的特征匹配的结果和disparity图像。(Three-dimensional visual codes. The main process includes: harris corner detection, zncc optimal strategy for matching, the proliferation of more features of the corresponding calculation of disparity and the corresponding color value. Also provides a picture and two corresponding feature matching results and disparity images.)
    2020-06-29 14:40:02下载
    积分:1
  • wnrVC6.0
    运动模糊图像 图像复原 维纳滤波复原 逆滤波复原 VC++6.0程序 代码(Motion-blurred image restoration image restoration Wiener filtering inverse filtering to recover VC++ 6.0 code)
    2020-12-12 11:29:17下载
    积分:1
  • GNSS-PRocess
    本文介绍了一种 )’’ 多系统静态基线数据处理方法!该方法使用统一的方式来处理 &’ 5.)6’’ 北斗 及三者融合的观测数据#这种处理方法已经实现在广州南方测绘仪器有限公司的静态后处理软件中#本文使用实际数据验 证了这种处理方法!得到了较好的结果(This article describes a ) ' multi-system static baseline data processing method! This method uses a unified way to deal & ' ' 5.) 6' ' ' Compass and three observational data fusion# This treatment method It has been achieved in the static Guangzhou South mapping Instrument Co.# post-processing software used herein, the actual data validation of this approach! Get better results)
    2015-06-30 11:16:20下载
    积分:1
  • EDLines 快速直线检测算子
    EDLines是一种快速直线检测算子,2012年在ICCV上提出,也是目前处理直线检测最快的算法之一,该算法包含三个步骤:(1)边缘提取:利用Edge Drawing (ED)算法[28,29]从灰度图像中提取边缘片段;(2)线段检测:利用最小二乘法提取直线段;(3)线段确认:遵循Helmholtz定律,从已提取的直线段中摒弃虚假线段。EDLines算法的优越性得益于Edge Drawing (ED)算法能够从灰度图像中准确、快速、稳定地提取出光滑、完整的边缘片段。Edge Drawing (ED)算法包含以下步骤: (1)采用size=5*5,σ=1的高斯核对灰度图像进行平滑滤波,去除噪声; (2)采用一种常用的梯度算子,如Prewitt、Sobel或Scharr等计算平滑后图像中每个像素点的梯度幅度和梯度方向; (3)将梯度图中邻域内幅度最大的像素点标记为锚点,这些锚点成为图像边缘点(edge elements)的概率很大; (4)将相邻的锚点连接成边缘线。从一个锚点起始,ED利用相邻像素的梯度幅度和方向在梯度为最大值的锚点之间游走。 (Edge Drawing (ED) is our recently-proposed, novel, fast edge detection algorithm. What makes ED stand out the existing edge detectors, e.g., Canny, is the following: While the other edge detectors give out a binary edge image as output, where the etected edge pixels are usually independent, discontinuous entities ED produces a set of edge segments, which are clean, contiguous, i.e., connected, chains of edge pixels. Thus, while the output of the other edge detectors requires urther processing to generate potential object boundaries, which may not even be possible or result in inaccuracies ED not only produces perfectly connected object boundaries by default, but it also achieves this in blazing speed compared to other edge detector.)
    2021-03-22 16:29:16下载
    积分:1
  • 696518资源总数
  • 104228会员总数
  • 45今日下载