登录
首页 » Visual C++ » k_mean_uv

k_mean_uv

于 2013-01-15 发布 文件大小:1046KB
0 210
下载积分: 1 下载次数: 8

代码说明:

  利用k—mean算法根据U、V进行聚类分块,最后完成图像分割,分割出得块用不同的灰度等级表示出来。(K-mean algorithm to cluster sub-blocks according to the U, V, to finalize the image segmentation, segmentation have blocks with different gray levels represented.)

文件列表:

k_mean_uv
.........\Debug
.........\.....\k_mean_uv.exe,48640,2012-11-30
.........\.....\k_mean_uv.ilk,438096,2012-11-30
.........\.....\k_mean_uv.pdb,691200,2012-11-30
.........\k_mean_uv
.........\.........\Debug
.........\.........\.....\BuildLog.htm,6214,2012-11-30
.........\.........\.....\Frame.obj,11346,2012-11-29
.........\.........\.....\k_mean_uv.exe.embed.manifest,663,2012-11-29
.........\.........\.....\k_mean_uv.exe.embed.manifest.res,728,2012-11-29
.........\.........\.....\k_mean_uv.exe.intermediate.manifest,621,2012-11-30
.........\.........\.....\k_mean_uv.obj,52875,2012-11-29
.........\.........\.....\k_mean_uv.pch,3211264,2012-11-29
.........\.........\.....\mt.dep,67,2012-11-30
.........\.........\.....\stdafx.obj,11901,2012-11-29
.........\.........\.....\Upsample.obj,20814,2012-11-30
.........\.........\.....\vc90.idb,199680,2012-11-30
.........\.........\.....\vc90.pdb,274432,2012-11-30
.........\.........\Frame.cpp,2368,2012-11-29
.........\.........\Frame.h,763,2012-11-29
.........\.........\k_mean_uv.cpp,5922,2012-11-29
.........\.........\k_mean_uv.vcproj,5084,2012-11-29
.........\.........\k_mean_uv.vcproj.20121028-0840.Administrator.user,1423,2012-12-17
.........\.........\ReadMe.txt,1195,2012-11-29
.........\.........\stdafx.cpp,214,2012-11-29
.........\.........\stdafx.h,233,2012-11-29
.........\.........\targetver.h,498,2012-11-29
.........\.........\Upsample.cpp,10054,2012-11-29
.........\.........\Upsample.h,2191,2012-11-29
.........\k_mean_uv.ncb,1657856,2012-12-17
.........\k_mean_uv.sln,893,2012-11-29

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

发表评论

0 个回复

  • SingleCalibrate
    基于opencv的相机单目标定程序,很好的学习资源,做图像矫正的可以看看~(Opencv based on a single target of the camera program)
    2015-05-06 13:53:42下载
    积分:1
  • Camdemo
    Camshift算法,即"Continuously Adaptive Mean-Shift"算法,是一种自适应的运动跟踪算法。它主要通过视频图像中运动物体的颜色信息来达到跟踪目的。(Camshift algorithm, namely " Continuously Adaptive Mean-Shift" algorithm is an adaptive motion tracking algorithm. It is primarily the color information of the object' s movement through the video images to achieve tracking purposes.)
    2014-01-11 19:45:29下载
    积分: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
  • FillRegion
    填充区域图像,设置填充区域,填出图像的颜色(Filled regional images, set fill area, fill in the color of the image)
    2009-01-18 22:45:33下载
    积分:1
  • KMeans-with-opencv
    k均值分类在遥感影像中的应用,完整的c++代码,注释详细易懂,并且已经验证过(k-means classification in remote sensing images in the application, complete c++ code, comments, detailed and easy to understand, and have been verified)
    2021-01-24 20:28:37下载
    积分:1
  • NEW
    一种新的彩色图像去噪与增强模型(A new color image denoising and enhancement model)
    2008-05-28 20:54:06下载
    积分:1
  • shuangmushijue
    双目视觉经验总结,希望后面的不要犯错误。(Binocular visual experience summary, make no mistake behind.)
    2012-11-07 11:04:15下载
    积分:1
  • VCDigitalImageProcessing01
    说明:  VC++数字图像处理典型算法及实现 01 源程序(VC++ Digital Image Processing Algorithm and Implementation of a typical 01)
    2011-04-02 17:41:54下载
    积分:1
  • Cohen-SutherlandLiang-Barsky
    基于VC环境下的直线裁剪算法Cohen-Sutherland算法和Liang-Barsky算法的实现(Based on the realization of linear cutting algorithm VC environment under the Cohen-Sutherland algorithm and Liang-Barsky algorithm)
    2012-10-24 18:58:06下载
    积分:1
  • 利用C++实现了BMP的读入和显示 BMPCode
    利用C++实现了BMP图像的读入和显示利用C++实现了BMP图像的读入和显示利用C++实现了BMP图像的读入和显示(Use C++ achieve the BMP image to read and display BMP images using the C++ achieve to read and display BMP images using the C++ achieve to read and display)
    2013-06-25 09:30:57下载
    积分:1
  • 696518资源总数
  • 105540会员总数
  • 37今日下载