搜索资源列表
tymatrix
- 将投影变换矩阵存储到一个一维数组中,与函数glFrustum,glOrtho,gluPerspective的相应参数相同,并比较当前投影矩阵和用所设计的函数所得结果。在屏幕上输出两个矩阵并进行比较。可使用glGetFloatv(GL_PROJECTION_MATRIX, ...)获得当前投影矩阵。-projection matrix storage to a one-dimensional arrays, and functions glFrustum. glOrtho, gluPerspect
characteristicdistill
- 矩特征提取算法代码。分别提取两类不同的特征,用二维数组矩阵提取矩特征再进行二值化处理图像。-moments feature extraction algorithm code. Extract two different characteristics, and using two-dimensional matrix array Moment Feature Extraction further two binary image processing.
showmtrix
- 在vc中调用matlab生成的dll示例,传递的参数在vc中是数组,对应matlab中是矩阵
Maxtrix
- 本实验利用数组实现矩阵的压缩存储,可实现查找,浏览,创建等功能
IDL-Array-operation
- 由于自带了很多的函数,IDL 在数组或矩阵的创建、运算操作中有着一系列 的技巧。要写出一个高效的IDL 程序,必须知道怎么用数组来进行数据处理, 对数组的创建和运算等进行了总结-Comes with a lot of functions because, IDL array or matrix in the creation, operation operation has a series of skills. IDL to write an efficient program, yo
kmean
- 基于OpenCV的二元吗,实现了划分随机分布点集的K-均值算法。按照类别分组的输入样本顺序输出包含样本类别索引的数组labels(i),存储在样本矩阵的第i行中。-Based on the binary OpenCV吗, implementation of the demarcation point set of randomly distributed K-means algorithm. Input in accordance with the type of packet contains
opencv
- 该库提供了所有OpenCV运行时的一些最基本的数据结构,包括矩阵,数组的基本运算,包括出错处理的一些基本函数。-opencv
meanshiftsegmentation
- 均值漂移图像分割测试程序,使用meanshift算法对彩色图像进行聚类分割,效果很好,并且显示使用时间、找到的类数,另包含RGB与LUV颜色空间的互相转换,图片矩阵数据转为降维数组等,程序中有详尽的注释和说明,并且配有测试结果图片,非常适合计算机视觉、机器学习、模式识别的朋友参考-failed to translate
Gauss-Jordan-elimination
- N 整形变量,输入参数,矩阵A的阶数 A[] 实型数组,输入、输出参数,输入是按列存放方阵A,计算结束时输出A的逆矩阵 B[] 实型数组,输入、输出参数,输入时按列存放实方阵B,计算结束时输出(A逆*B—)- Gauss Jordan elimination
gongbian
- 利用共变矩阵,扫描数组,估计潜伏期变化。-Covariance matrix using scanning arrays, it is estimated latency change.
Wavelet_Packet_group2
- 这两个函数是用来转换成记录的数组(即数组中的每个位置是一个子矩阵)小波包树的过程中这两个函数将有助于pogrammers子图像容易-These two functions are used to convert the wavelet packet tree into array of record (i.e. each location in the array is a sub-matrix)... These two function will help the pogrammers fo
FormatConvertor
- 图像处理类。用于将数字图像转化为矩阵形式。以一维和二维数组的形式进行储存。-Image processing class. For digital images into a matrix form. The form of a one-dimensional and two-dimensional array to store.
Image-processing
- 基于VC++图像处理入门 三元色RGB 图像的矩阵格式 二维数组和图像的关系-VC++ based two-dimensional array of image processing entry ternary color RGB image matrix format and image relationships
gray
- 先将图像利用地址的指针保存成一个一维数组,然后将彩色图像转化为灰度图像,再将结果返回到二维矩阵中显示。-Save the pointer using the address of the first image into a one-dimensional array, and then the color image into a grayscale image, and then returns the results to the two-dimensional matrix displa
ZIGZAG
- zigzag数组是JPEG编码里取像素数据的排列顺序,用户输入n,程序就可以实现规定矩阵沿45度线递增,形成一个zigzag数组-zigzag array is arranged in order to take the pixel JPEG encoded data, the user input n, the program can be achieved along the 45 degree line matrix specified increments to form a zigza
dftuv
- 计算网格距离,以此来进行频率域下的滤波。- DFTUV Computes meshgrid(网格数组) frequency matrices(频率矩阵). [U,V]=DFTUV(M,N) computes meshgrid frequency matrices U and V.U and V are useful for computing frequency-domain(频率域) filter(滤波) funcitions that can be used with
bayesgauss
- BAYESGAUSS贝叶斯分类器对高斯模式。 D = BAYESGAUSS(X,钙、马、P)计算贝叶斯决策 n维的功能模式的行X。 n-by-n-by-W大小的CA是一个数组,其中包含了协方差 的矩阵大小n-by-n,W类的数量。 大小n-by-W 马是一个数组,其列。柯尔- 水洼意味着向量。一个赔偿。矩阵和平均向量必须 为每个类指定,即使一些都是平等的。X是大小 K-by-n,K是模式的数量分类。P是 1-by-W数组,包含发生的概率
movingcamer
- 照相机场景漫游 摄像机场景移动1.学会利用变换矩阵实现摄像机漫游。 2.进一步巩固实例化变换。 3.掌握多个顶点数组对象(VAO)的使用。-Moving Camera demop
44162646
- 能够实现基于动态数组的定义,从而达到矩阵的变换和乘法运算()
用python显示图像直方图
- 我们要对图像求直方图,就需要先把图像矩阵进行flatten操作,使之变为一维数组,然后再进行统计。 一、画灰度图直方图 绘图都可以调用matplotlib.pyplot库来进行,其中的hist函数可以直接绘制直方图。