登录
首页 » Visual C++ » 02-gpbM

02-gpbM

于 2020-12-22 发布 文件大小:13270KB
0 278
下载积分: 1 下载次数: 2

代码说明:

  M估计子,计算机视觉大牛Peter Meer出品。(Generalized Projection based M-estimator C++ code to find the robust estimate derived without using any user supplied scale. The theory is described in Generalized Projection Based M-stimator. )

文件列表:

02-gpbM
.......\applications
.......\............\data
.......\............\....\faces
.......\............\scripts
.......\............\.......\faceClustering
.......\............\.......\..............\faceData_P00_128x128_D10.txt,90788,2011-06-02
.......\............\.......\..............\face_ground_truth.mat,222,2010-11-09
.......\............\.......\..............\gpbm_faceClustering.m,5059,2012-06-09
.......\............\.......\Homography
.......\............\.......\..........\computeCarrierVectors_homography.m,1120,2011-05-06
.......\............\.......\..........\computeCovarianceMatrices_homography.m,1383,2011-09-13
.......\............\.......\..........\gpbM_Homography.m,8827,2012-01-06
.......\............\.......\..........\iscolinear.m,2396,2011-02-19
.......\............\.......\..........\isdegenerate_dummy.m,65,2011-05-26
.......\............\.......\..........\isdegenerate_homography.m,517,2011-02-11
.......\............\.......\..........\Oxford_MertonCollege1_PtMatches_SIFT_outliers.mat,4255295,2011-02-11
.......\............\.......\..........\Oxford_MertonCollege3_PtMatches_images.mat,3753449,2011-02-19
.......\............\.......\projectiveMotion
.......\............\.......\................\calculateCovariances_fundamental.m,815,2010-09-14
.......\............\.......\................\calculateCovariances_homo.m,169,2011-02-04
.......\............\.......\................\calculateCovariances_motion_3D.m,552,2011-05-26
.......\............\.......\................\estimateFundamentalMatrix.m,1289,2011-06-06
.......\............\.......\................\generateHypotheses.m,524,2011-05-25
.......\............\.......\................\gpbm_ProjMotionSeg.m,7212,2012-01-09
.......\............\.......\................\IsotropicScaling.m,529,2010-09-14
.......\............\.......\................\MakeHomogenous.m,233,2010-09-14
.......\............\.......\................\MakeNonHomogenous.m,213,2010-09-20
.......\............\.......\................\motionData.mat,734634,2011-06-17
.......\............\.......\................\plotMotions.m,839,2011-06-02
.......\............\.......\................\refineUsingFundamentalMatrices.m,2485,2011-06-06
.......\............\.......\................\updateDepthEstimates.m,2097,2011-06-06
.......\blas_32.lib,646302,2011-02-04
.......\blas_64.lib,944212,2011-02-04
.......\commons.h,6154,2011-06-06
.......\computeErrors.m,4040,2011-05-31
.......\conjugateGradient.cpp,15406,2011-08-28
.......\conjugateGradient.h,2945,2011-08-28
.......\dichotomize_mex.cpp,6092,2011-05-18
.......\dichotomize_mex.mexw64,229888,2011-12-22
.......\estimateFraction_mex.cpp,8045,2011-05-11
.......\estimateFraction_mex.mexw64,214528,2011-12-22
.......\estimateModel_mex.cpp,16790,2011-09-13
.......\estimateModel_mex.mexw64,246784,2011-12-22
.......\estimateScale.m,8063,2011-06-17
.......\estimateScaleFromFrac.m,1151,2010-09-14
.......\estimateScaleFromFraction_mex.cpp,7012,2011-05-11
.......\estimateScaleFromFraction_mex.mexw64,214016,2011-12-22
.......\generateHypotheses.m,683,2011-06-02
.......\isdegenerate_dummy.m,65,2011-05-26
.......\kernels.h,616,2011-05-06
.......\lapack_32.lib,7311736,2011-02-04
.......\lapack_64.lib,9755764,2011-02-04
.......\libf2c_32.lib,302926,2011-02-04
.......\libf2c_64.lib,372146,2011-02-04
.......\matrixOperations.h,3721,2011-05-11
.......\mexAll.m,757,2011-06-17
.......\normalise2dpts.m,2430,2011-02-04
.......\vnorm.m,2077,2011-06-06

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

发表评论

0 个回复

  • CvThrehold
    基于opencv实时图像的2值化处理,一定要有摄像头(Opencv-based real-time image processing of two values, there must be a camera)
    2013-11-29 20:29:33下载
    积分:1
  • Binarization-Transformation
    图像处理源程序,实现二值化变换,经一幅图像灰度化后,变成二值化图像,包括大津法、最大类间方差法、一般阈值法、及文本识别最有用的Niblack法(Image processing program and realized binarization transformation, after by a gray-scale image into binary image, including the Otsu method, Otsu method, the general threshold, and text to identify the most useful Niblack method)
    2011-11-19 09:53:11下载
    积分:1
  • main
    利用形态学,霍夫(Hough)变换,实现畸变QR码的4个角点的定位。(To correct the distortion of the QR code,use morphology operation, Hough transform, to locat the positioning of the four corner points)
    2012-03-14 15:17:57下载
    积分:1
  • chenggongchengxu
    rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h" #include <iostream.h> void main(float R, float G, float B, float& H, float& S, float&V) { // r,g,b values are from 0 to 1 // h = [0,360], s = [0,1], v = [0,1] // if s == 0, then h =-1 (undefined) float min, max, delta,tmp tmp = R>G?G:R min = tmp>B?B:tmp tmp = R>G?R:G max = tmp>B?tmp:B V = max // v delta = max- min if( max != 0 ) S = delta/max // s else { // r = g = b = 0 // s = 0, v is undefined S = 0 H = 0 return } if (delta == 0){ H = 0 return } else if(R == max){ if (G >= B) H = (G- B)/delta // between yellow & magenta else H = (G- B)/delta+ 6 } else if( G == max ) H = 2+ ( B- R )/delta // between cyan & yellow else if (B == ma)
    2011-12-02 10:09:24下载
    积分:1
  • CudaSift-master
    在GPU-CUDA平台上进行SIFT特征提取,加快提取速度(On GPU-CUDA platform SIFT feature extraction, speeding up the extraction rate)
    2021-04-09 22:38:59下载
    积分:1
  • median-filtering
    中值滤波,取出奇数个数据进行排序,用排序后的中值取代要处理的数据即可(median filtering.rar)
    2013-12-05 17:24:42下载
    积分:1
  • PICPRO
    该代码,利用GDAL 1.4.2库实现遥感图像的几何校正、图像配准等,vs 2010实现。(The code GDAL 1.4.2 library implementation of remote sensing image geometric correction, image registration, vs 2010.)
    2012-08-31 10:29:39下载
    积分:1
  • SR_1
    基于分块的人脸图像超分辨率学习算法实验平台,利用学习到的训练集图像信息对低分辨率图像超分辨率,并可以查看超分辨率后的图像块匹配结果(用鼠标双击结果显示窗口中的实验图像),可以设置实验参数。(Block-based face image super-resolution algorithm for the experimental platform to learn, learning to use the training set of low-resolution image information super-resolution images and can view the image super-resolution block-matching results (double-click with the mouse results display window of the experimental images), the experimental parameters can be set.)
    2009-06-08 14:03:09下载
    积分:1
  • jpeg2k
    说明:  JPEG2000 的一个实现,期中,wavelet.dll是提供的功能接口。(An implementation of JPEG2000, period, wavelet.dll is to provide a functional interface.)
    2010-05-04 17:00:01下载
    积分:1
  • 9DIProcess_Final
    给图像加椒盐和高斯噪声,以及空域滤波(中值和均值滤波)!(to Image pretzels and Gaussian noise, and the spatial filter (mean values and filter)!)
    2006-07-30 16:19:03下载
    积分:1
  • 696516资源总数
  • 106633会员总数
  • 4今日下载