联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 图形图像处理(60) 
按平台查找All C++(60) 

[图形图像处理] Graph-algorithms

实验室工作№1,关于“图形算法”主题的算法和数据结构。莫斯科航空研究所。
Laboratory work №1 on algorithms and data structures on the topic "Graph algorithms". Moscow Aviation Institute. (2023-11-19, C++, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1700442065325414.html

[图形图像处理] Dijkstra-s-graph-algorithm

实验室工作№1关于“Dijkstra算法”主题的算法和数据结构。莫斯科航空研究所。
Laboratory work №1 on algorithms and data structures on the topic "Dijkstra s algorithm". Moscow Aviation Institute. (2023-11-15, C++, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1700297294271243.html

[图形图像处理] computer_graphics-Pathtrace

C++中的真实路径跟踪器实现,具有景深、运动模糊、网格区域光采样、俄罗斯轮盘赌(用于更快的光线...,
Realistic pathtracer implementation in C++ with depth of field, motion blur, mesh area light sampling, russian roulette (for faster ray termination), hair rendering and skin rendering (translucency) (2020-03-30, C++, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1690131431975086.html

[图形图像处理] GraphAlgorithms

用c++实现全对最短路径的算法:1。约翰逊s+重复了迪克斯特拉的第2集。贝尔曼福特3重复了一遍。...
algorithms for the all-pairs shortest-paths with c++ : 1. johnson s + repeated dijkstra s 2. repeated bellman-ford 3. floyd-warshall (2017-03-05, C++, 8KB, 下载0次)

http://www.pudn.com/Download/item/id/1687199789842324.html

[图形图像处理] feature_points

投影检测和匹配图像中的局部特征。为了检测特征,我使用哈里斯、log(blob)和dog。要匹配fea...
Project detect and matches local features in images. To detect feature, I use harris, log(blob) and dog. To match feature, i use sift, with 3 detector: harris, blob and dog (2023-05-15, C++, 3474KB, 下载0次)

http://www.pudn.com/Download/item/id/1686666220983126.html

[图形图像处理] SFND_2D_Feature_Tracking

关键点检测器(哈里斯、FAST、BRISK、ORB、AKAZE和SIFT),补丁描述符(BRIEF、ORB,FREAK、AKAZ和SIFT.),以及...
Keypoints Detector(HARRIS, FAST, BRISK, ORB, AKAZE, and SIFT), Patch Descriptor(BRIEF, ORB, FREAK, AKAZE and SIFT),and Matching(BFmatching, FLANN matching)). (2019-07-11, C++, 6646KB, 下载0次)

http://www.pudn.com/Download/item/id/1686664088310830.html

[图形图像处理] cpp_practice_image_processing

机具:Sobel;坎尼;哈里斯;霍夫线;拟合线;兰萨。
Implement: Sobel; Canny; Harris; Hough line; Fit line; RANSAC. (2022-05-20, C++, 1401KB, 下载0次)

http://www.pudn.com/Download/item/id/1686625922521539.html

[图形图像处理] test4

算法描述 SIFT特征不只具有尺度不变性,即使改变旋转角度,图像亮度或拍摄视角,仍然能够得到好的检测效果。整个算法分为以下几个部分: (1)构造尺度空间:DoG尺度空间 (2)检测DoG尺度空间极值点 (3)去除不好的特征点 (4)给特征点赋值一个128维的方向参数。每个关键点都包含三个信息:位置、尺度和方向。 (5)关键点描述子的生成: 首先将坐标轴旋转为关键点的方向,以确保旋转不变性。以关键点为中心取8×8的窗口。 (6)最后进行特征匹配。
Algorithm description SIFT features not only have scale invariance, but also can obtain good detection results even if the rotation angle, image brightness or shooting angle are detected. The whole algorithm is divided into the following parts: (1) tectonic scale space: DoG scale space (2) detecting the spatial extreme points of DoG scale (3) remove bad feature points (4) assign a 128 dimensional direction parameter to the feature point. Each key point contains three information: location, scale and direction. (5) generation of key point descriptors: Firstly, the coordinate axis is rotated as the direction of the key point to ensure the rotation invariance. Take the key point as the center and take the window of 8 x 8. (6) feature matching is performed at last. (2017-10-22, C++, 1154KB, 下载2次)

http://www.pudn.com/Download/item/id/1508650434416485.html

[图形图像处理] ku032

借鉴了主成分分析算法(PCA),利用贝叶斯原理估计混合logit模型的参数,利用自然梯度算法。
It draws on principal component analysis algorithm (PCA), Bayesian parameter estimation principle mixed logit model, Use of natural gradient algorithm. (2017-05-04, C++, 5KB, 下载0次)

http://www.pudn.com/Download/item/id/1493897128275194.html

[图形图像处理] root_script

用root程序读取ntuple文件的信息时(root -l root_script.cxx),需要此类型的画图脚本。输入存储信息的.root文件,取出指定tree下的leaf信息,画在一维直方图上,调整cut,不同的输入间图形对比,看图形形状的变化是否合理,进而解决问题。注:本程序在相关领域较实用,基本的东西都有,易于理解,借此入门,举一反三。
When reading information ntuple program file with the root (root-l root_script.cxx), you require this type of drawing scripts. Enter to store information .root file, remove the leaf information specified under the tree, painted on a one-dimensional histogram, adjust the cut, the graphical comparison between different input to see whether reasonable changes in pattern shape, and then solve the problem. Note: This program more practical in related fields, the basic things are easy to understand, thereby getting started, learn by analogy. (2016-05-06, C++, 1KB, 下载1次)

http://www.pudn.com/Download/item/id/1462530805682971.html

[图形图像处理] areaway

面积法计算图像的分维,前面几行表示用一曲线扩展为曲面,请根据自己的实际情况改动
Area method to calculate the fractal dimension images, in front of a few lines with a curve that extended to surface, please according to their own changes to the actual situation (2016-02-15, C++, 1KB, 下载1次)

http://www.pudn.com/Download/item/id/1455469828232621.html

[图形图像处理] 3131ff

本文以一维弧形探测器为原型建立了一种通用构造校正方程的方法, 首先建立以样 品中心为原点的几何模型方程, 然后根据精度要求对方程进行泰勒近似, 获得了简化的校正方程.
In this paper, a general method of constructing a universal structural correction equation is established by using the one dimension arc detector. (2015-06-27, C++, 921KB, 下载1次)

http://www.pudn.com/Download/item/id/1435396117411553.html

[图形图像处理] EdgeFinal7

   编程实现灰度图像的几种常用的边缘检测算法,包括:梯度边缘检测算法、Roberts边缘检测算法、Sobel边缘检测算法、拉普拉斯边缘检测算法、canny边缘检测算法、Prewitt边缘检测算法和Krisch边缘检测算法。
Programming of several commonly used gray image edge detection algorithm, including: gradient edge detection algorithm, Roberts edge detection algorithm, Sobel edge detection algorithm, Laplacian edge detection algorithm, canny edge detection algorithm, Prewitt edge detection algorithm and Krisch edge detection algorithm. (2013-08-18, C++, 692KB, 下载30次)

http://www.pudn.com/Download/item/id/2333313.html

[图形图像处理] G-E-L

构建图像的高斯金字塔和拉普拉斯金字塔,用于后期的图像复原
To establish an image of the Gaussian pyramid, Laplacian pyramid is used to post the image restoration (2012-04-25, C++, 5039KB, 下载23次)

http://www.pudn.com/Download/item/id/1844189.html

[图形图像处理] bitmap

我自己写的一个bmp图像数据读取的类,包含以下内容:读取8位位图或者24位位图图像数据到2维矩阵中,保存为8位位图或者24位位图。 转载请注明出处,谢谢!!
I wrote a class to read a bmp image data type, contains the following: Read 8-bit or 24-bit bitmap image data to 2-dimensional matrix, the bitmap is saved as 8-bit or 24-bit bitmap. Reprint please indicate the source, thank you! ! (2011-05-20, C++, 3KB, 下载9次)

http://www.pudn.com/Download/item/id/1539949.html

[图形图像处理] imageprocessing

可以实现很多图像处理的工作,如拉普拉斯锐化,直方图均衡化,边缘提取等
Can achieve a lot of image processing, such as Laplacian sharpening, histogram equalization, edge detection, etc. (2010-05-05, C++, 51KB, 下载10次)

http://www.pudn.com/Download/item/id/1157457.html

[图形图像处理] Laplacian

拉普拉斯变换,图形图像处理,已在项目系统中验证应用,对图形图像的处理优化有很大的参考作用
Laplace transform, graphics, image processing, has been in the project system to verify the application of image processing on the graphics which are great reference (2009-01-21, C++, 312KB, 下载2次)

http://www.pudn.com/Download/item/id/634239.html

[图形图像处理] LaplacianPyramid

一种图像拼接的技术,包括了拉普拉斯金字塔算法源代码和高斯金字塔源代码
An image mosaic of technologies, including the Laplacian pyramid algorithm source code and source code Gaussian pyramid (2007-09-24, C++, 16KB, 下载370次)

http://www.pudn.com/Download/item/id/337695.html

[图形图像处理] A0357

一套完整的图像处理与识别的源码(全中文注释) 这是我们内部开发与使用的一套图像处理代码,里面包括了大部分图像处理与识别处理的的函数:像模板变换,图像的平滑、锐化、边缘识别、图像中值滤波、图像模糊、图像逆滤波、图像模糊加噪、图像维纳滤波、线性变换、灰度拉伸、直方图均衡、图像腐蚀、图像膨胀、图像开运算、GIF确码编码、缩放、旋转、快速付立叶变换、离散余弦变换等等,等等,太多了。可以用于windows软件或嵌入式软件编程。内部用的,全中文注释,为了下载我才拿出来的。你们自己看着办吧。
a complete set of image processing and recognition of the source code (all Chinese Note) This is our internal development and use of a image processing code, includes the most image processing and recognition processing function : as template transform, Image smoothing, sharpening, edge recognition, image filtering and fuzzy images, image inverse filtering, fuzzy image noise increases, Wiener filter images, linear transformation, gray tensile, histogram equalization, images corrosion, expansive images, image open operation, GIF correct coding, zooming, rotation, fast Fourier transform, discrete cosine transform, and so on and so forth, that is too many. Can be used for windows software or embedded software programming. Internal use, and the whole Chinese translations, in order to download (2007-06-22, C++, 301KB, 下载895次)

http://www.pudn.com/Download/item/id/298789.html

[图形图像处理] codesforimageprocessing

实现简单图像处理,包括256色转灰度图、Hough变换、Walsh变换、中值滤波、二值化变换、亮度增减、傅立叶变换、反色、取对数、取指数、图像平移、图像旋转、图像细化、图像缩放、图像镜像、均值滤波、对比度拉伸、拉普拉斯锐化(边缘检测)、方块编码、梯度锐化、灰度均衡、直方图均衡、离散余弦变换、维纳滤波处理、逆滤波处理、阈值变换、高斯平滑。
simple image processing, including color to grayscale 256, the Hough transform, Walsh transform, Median filtering, binary conversion, brightness changes, Fourier transform, and color-from the few to admit index, image shifting, image rotation, refined images, image scaling, image mirroring, mean filtering, contrast stretching, Laplacian sharpening (edge detection), block codes, Sharpening gradient, gray balance, histogram equalization, discrete cosine transform, Wiener filter, reverse filtering, threshold transform, Gaussian smoothing. (2006-07-30, C++, 3281KB, 下载7327次)

http://www.pudn.com/Download/item/id/206703.html
123
总计:60