登录
首页 » Visual C++ » Labeling

Labeling

于 2011-05-09 发布 文件大小:14504KB
0 188
下载积分: 1 下载次数: 84

代码说明:

  对于二值图像进行labeling,求的对象个数,每个对象的像素数,中心点,长宽高矮值等(labeling for bianry image)

文件列表:

Labeling
........\CLAHE_C
........\.......\CLAHE_C.cpp,1124,2011-01-26
........\.......\CLAHE_C.vcproj,4596,2011-01-26
........\.......\CLAHE_C.vcproj.ZGC--20100825LP.Administrator.user,1435,2011-02-21
........\.......\cv210d.dll,3631104,2010-12-03
........\.......\cxcore210d.dll,3696640,2010-12-03
........\.......\d.txt,0,2011-01-26
........\.......\Debug
........\.......\.....\BuildLog.htm,8212,2011-01-26
........\.......\.....\clahe.obj,33163,2011-01-09
........\.......\.....\CLAHE_C.exe.embed.manifest,663,2011-01-26
........\.......\.....\CLAHE_C.exe.embed.manifest.res,728,2011-01-26
........\.......\.....\CLAHE_C.exe.intermediate.manifest,621,2011-01-26
........\.......\.....\CLAHE_C.obj,71485,2011-01-26
........\.......\.....\CLAHE_C.pch,4128768,2011-01-09
........\.......\.....\mt.dep,62,2011-01-26
........\.......\.....\stdafx.obj,11677,2011-01-09
........\.......\.....\TongueVeinMain.obj,72025,2011-01-09
........\.......\.....\vc90.idb,855040,2011-01-26
........\.......\.....\vc90.pdb,602112,2011-01-26
........\.......\highgui210d.dll,1605120,2010-12-03
........\.......\ms.xml,54,2011-01-26
........\.......\ReadMe.txt,1302,2011-01-09
........\.......\stdafx.cpp,294,2011-01-09
........\.......\stdafx.h,320,2011-01-09
........\.......\targetver.h,765,2011-01-09
........\.......\tbb_debug.dll,240816,2010-04-21

........\CLAHE_C.ncb,16059392,2011-02-21
........\CLAHE_C.sln,892,2011-01-09
........\Debug
........\.....\CLAHE_C.exe,30720,2011-01-26
........\.....\CLAHE_C.ilk,367340,2011-01-26
........\.....\CLAHE_C.pdb,986112,2011-01-26
........\.....\labeling.exe,81920,2011-05-09
........\.....\labeling.ilk,624652,2011-05-09
........\.....\labeling.pdb,1387520,2011-05-09
........\labeling
........\........\BinaryRegion.cpp,1054,2011-05-09
........\........\BinaryRegion.h,527,2011-05-09
........\........\Box.h,476,2011-04-21
........\........\cv210d.dll,3631104,2010-12-03
........\........\cxcore210d.dll,3696640,2010-12-03
........\........\Debug
........\........\.....\BinaryRegion.obj,45364,2011-05-09
........\........\.....\BuildLog.htm,8530,2011-05-09
........\........\.....\labeling.exe.embed.manifest,663,2011-04-27
........\........\.....\labeling.exe.embed.manifest.res,728,2011-04-27
........\........\.....\labeling.exe.intermediate.manifest,621,2011-05-09
........\........\.....\labeling.obj,142605,2011-05-09
........\........\.....\labeling.pch,3211264,2011-04-21
........\........\.....\mt.dep,62,2011-05-09
........\........\.....\Mu_BinaryRegion.obj,22582,2011-05-09
........\........\.....\Mu_RegionLabeling.obj,246804,2011-05-09
........\........\.....\stdafx.obj,12037,2011-04-21
........\........\.....\vc90.idb,855040,2011-05-09
........\........\.....\vc90.pdb,651264,2011-05-09
........\........\highgui210d.dll,1605120,2010-12-03
........\........\labeling.cpp,1104,2011-05-09
........\........\labeling.vcproj,4863,2011-05-09
........\........\labeling.vcproj.ZGC--20100825LP.Administrator.user,1435,2011-05-09
........\........\Mu_RegionLabeling.cpp,2491,2011-05-09
........\........\ReadMe.txt,1308,2011-04-21
........\........\stdafx.cpp,295,2011-04-21
........\........\stdafx.h,320,2011-04-21
........\........\targetver.h,765,2011-04-21
........\........\tbb_debug.dll,240816,2010-04-21


........\labeling.ncb,20483072,2011-05-09
........\labeling.sln,895,2011-04-21

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

发表评论

0 个回复

  • VapourSynth-BM3D-master
    VapourSynth-BM3D-master BM3D算法的原创代码,运行速度超快,参考文献《Image Denoising by Sparse 3-D Transform-Domain Collaborative Filtering》(VapourSynth-BM3D-master BM3D original algorithm code, run super-fast, Reference " Image Denoising by Sparse 3-D Transform-Domain Collaborative Filtering" )
    2016-10-17 19:18:10下载
    积分: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
  • DXFRead-master
    读取dxf文件,并利用opencv画出2D形状(Read the DXF file, and draw a 2D shape using OpenCV)
    2017-09-26 15:48:30下载
    积分:1
  • calication
    摄像标定法求T R矩阵的方法 摄像标定法求T R矩阵的方法 摄像标定法求T R矩阵的方法(how to calculate the matrix R and T using the Camera Calibration method)
    2011-06-27 16:58:09下载
    积分:1
  • face2_jiance
    人脸检测:可自动检测人脸,速度还可以吧!(Face Detection : can automatically detect faces and can also speed!)
    2007-01-26 09:17:23下载
    积分:1
  • PCNN(lateralinhibition)
    基于侧抑制的图像分割,在PCNN分割的基础上实现(failed to translate)
    2021-03-24 20:39:14下载
    积分:1
  • GMM-modeling-and-EM
    介绍Opencv这个图像处理库环境下的GMM建模与EM算法,从数学的角度深入分析高斯建模和EM算法(Introduce the the Opencv this image processing GMM modeling the EM algorithm in the library environment, in-depth analysis from a mathematical point of the Gaussian model and the EM algorithm)
    2012-07-11 15:40:59下载
    积分:1
  • vtk-CT(MC)
    MC算法实现CT医学图像的三维重建,面绘制技术(MC algorithm CT medical image reconstruction, surface rendering technology)
    2014-02-25 10:14:46下载
    积分:1
  • ostu
    ostu二值化算法vc实现,基于MIL图像处理软件包将图像解析,通过ostu求取二值化阈值,实现二值化算法(ostu binarization algorithm to achieve vc, MIL image processing software package based on the image resolution, strike through ostu binarization threshold binarization algorithm to achieve)
    2013-07-26 14:02:37下载
    积分:1
  • opencv-sift
    图像匹配,可以实现目标图像的匹配,匹配出最相似的训练图片。(Image matching, the matching can achieve the target image, matching the most similar training images.)
    2013-06-08 16:46:48下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 31今日下载