(ThemostclassictodotoensurethatotherpeopledonotrealizeuploadedarticleGrabCutInteractiveForegroundExtractionusingIteratedGraphCutswithgraphcutrealizeimagesegmentation,hasverygoodresults) - IMDN开发者社群-imdn.cn">
登录
首页 » Visual C++ » GrabCutSource

GrabCutSource

于 2020-10-30 发布 文件大小:1357KB
0 194
下载积分: 1 下载次数: 2345

代码说明:

  最经典之做,保证别人没有上传过 实现文章 “GrabCut" Interactive Foreground Extraction using Iterated Graph Cuts 用graphcut实现图像分割,效果非常好(The most classic to do to ensure that other people do not realize uploaded article GrabCut Interactive Foreground Extraction using Iterated Graph Cuts with graphcut realize image segmentation, has very good results)

文件列表:

databg.bin
datafg.bin
fglabel.bmp
gmm.cpp
gmm.h
gmm_train_val
GrabCut.cpp
GrabCut.exe
GrabCut.h
GrabCut.ncb
GrabCut.rc
GrabCut.sln
GrabCut.vcproj
GrabCutDoc.cpp
GrabCutDoc.h
GrabCutView.cpp
GrabCutView.h
kmeans_train_val
MainFrm.cpp
MainFrm.h
MinCut
......\block.h
......\energy.h
......\graph.cpp
......\graph.h
......\maxflow.cpp
model.txt
ReadMe.txt
res
...\bmp00001.bmp

...\GrabCut.manifest
...\GrabCut.rc2


...\Toolbar.bmp
...\toolbar1.bmp
resource.h
stdafx.cpp
stdafx.h
Torch
.....\Allocator.cpp
.....\Allocator.h
.....\Bagging.cpp
.....\Bagging.h
.....\BayesClassifier.cpp
.....\BayesClassifier.h
.....\BayesClassifierMachine.cpp
.....\BayesClassifierMachine.h
.....\BeamSearchDecoder.cpp
.....\BeamSearchDecoder.h
.....\Boosting.cpp
.....\Boosting.h
.....\BoostingMeasurer.cpp
.....\BoostingMeasurer.h
.....\ClassFormat.cpp
.....\ClassFormat.h
.....\ClassFormatDataSet.cpp
.....\ClassFormatDataSet.h
.....\ClassMeasurer.cpp
.....\ClassMeasurer.h
.....\ClassNLLCriterion.cpp
.....\ClassNLLCriterion.h
.....\ClassNLLMeasurer.cpp
.....\ClassNLLMeasurer.h
.....\CmdLine.cpp
.....\CmdLine.h
.....\CmdOption.cpp
.....\CmdOption.h
.....\ConnectedMachine.cpp
.....\ConnectedMachine.h
.....\Criterion.cpp
.....\Criterion.h
.....\DataSet.cpp
.....\DataSet.h
.....\DecoderBatchTest.cpp
.....\DecoderBatchTest.h
.....\DecoderSingleTest.cpp
.....\DecoderSingleTest.h
.....\DecodingHMM.cpp
.....\DecodingHMM.h
.....\DecodingHypothesis.cpp
.....\DecodingHypothesis.h
.....\DiagonalGMM.cpp
.....\DiagonalGMM.h
.....\DiskDataSet.cpp
.....\DiskDataSet.h
.....\DiskHTKDataSet.cpp
.....\DiskHTKDataSet.h
.....\DiskMatDataSet.cpp
.....\DiskMatDataSet.h
.....\DiskXFile.cpp
.....\DiskXFile.h
.....\Distribution.cpp
.....\Distribution.h
.....\EditDistance.cpp
.....\EditDistance.h
.....\EditDistanceMeasurer.cpp
.....\EditDistanceMeasurer.h
.....\EMTrainer.cpp

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

发表评论

0 个回复

  • Kinect_DepthCanny
    用kinect获取3D图像,并从3D图像中用OpenCV方法从深度图中获取梯度边缘,从而得到更多信息,做后续处理(Get with kinect 3D images, and get the edge gradient from the depth map from a 3D image using OpenCV method to obtain more information, do follow-up treatment)
    2014-02-21 21:19:53下载
    积分:1
  • snaketest
    snake算法的c源代码,一般snake算法可以用于图像的边缘检测,是一种比较新的方法(snake algorithm c source code, the general snake algorithm can be used to image edge detection, is a relatively new approach)
    2008-06-02 11:34:44下载
    积分:1
  • energypick
    本程序实现功能: 1、微机、IBM工作站segy格式文件的a)变面积、b)波形、c)波形加变面积显示; 2、AGC自动均衡显示; 3、用任意多边形选择剖面数据并提取归一化能量、修改选取数据。 (This program function: 1, microcomputer, IBM workstations segy format file of a) become area, b) waveform, c) waveform and become area shows 2, AGC automatic equilibrium display 3, with arbitrary polygon choose profile and extracted data normalization energy, modify, select data.)
    2011-09-15 15:18:28下载
    积分:1
  • EDLines 快速直线检测算子
    EDLines是一种快速直线检测算子,2012年在ICCV上提出,也是目前处理直线检测最快的算法之一,该算法包含三个步骤:(1)边缘提取:利用Edge Drawing (ED)算法[28,29]从灰度图像中提取边缘片段;(2)线段检测:利用最小二乘法提取直线段;(3)线段确认:遵循Helmholtz定律,从已提取的直线段中摒弃虚假线段。EDLines算法的优越性得益于Edge Drawing (ED)算法能够从灰度图像中准确、快速、稳定地提取出光滑、完整的边缘片段。Edge Drawing (ED)算法包含以下步骤: (1)采用size=5*5,σ=1的高斯核对灰度图像进行平滑滤波,去除噪声; (2)采用一种常用的梯度算子,如Prewitt、Sobel或Scharr等计算平滑后图像中每个像素点的梯度幅度和梯度方向; (3)将梯度图中邻域内幅度最大的像素点标记为锚点,这些锚点成为图像边缘点(edge elements)的概率很大; (4)将相邻的锚点连接成边缘线。从一个锚点起始,ED利用相邻像素的梯度幅度和方向在梯度为最大值的锚点之间游走。 (Edge Drawing (ED) is our recently-proposed, novel, fast edge detection algorithm. What makes ED stand out the existing edge detectors, e.g., Canny, is the following: While the other edge detectors give out a binary edge image as output, where the etected edge pixels are usually independent, discontinuous entities ED produces a set of edge segments, which are clean, contiguous, i.e., connected, chains of edge pixels. Thus, while the output of the other edge detectors requires urther processing to generate potential object boundaries, which may not even be possible or result in inaccuracies ED not only produces perfectly connected object boundaries by default, but it also achieves this in blazing speed compared to other edge detector.)
    2021-03-22 16:29:16下载
    积分:1
  • GA-FCM
    遗传算法与FCM算法相结合实现图像分割,分割精度较好,速度较快(A combination of genetic algorithm and FCM algorithm to achieve image segmentation, segmentation accuracy is better, faster)
    2012-06-05 09:06:01下载
    积分:1
  • TemplateTrans
    数字图像处理中图像的增强方便的源代码,包括图像灰度修正,图像的平滑,中值滤波,图像的锐化,伪彩色和假彩色的增强等(Digital image processing image enhancement convenient source code, including the gray correction, image smoothing, median filtering, image sharpening, pseudo-color and false color enhancement, etc.)
    2013-12-02 10:50:31下载
    积分:1
  • 20061014182431864
    分割视图 希望大家多多批评指正 多多交流(segmentation View I hope Members can interact more criticism correction)
    2006-12-27 00:32:21下载
    积分:1
  • erode
    C语言数学形态学的腐蚀运算,同时适用于二值图像与灰度图像。(C language mathematical morphology erosion operation also apply to binary images and gray-scale image.)
    2009-11-14 14:43:40下载
    积分:1
  • TemplateTran
    用VC编写的一个图像处理的程序:它可以实现图像的增强,包括:图像的平滑、中值滤波、梯度锐化、拉普拉斯锐化和伪彩色编码(VC prepared by an image processing procedures : it can enhance the images, including : image smoothing, Median filtering, sharpening gradient, Laplacian sharpening and pseudo-color coding)
    2007-04-12 10:15:19下载
    积分:1
  • kuaisuzishiyingyuzhifangfa
    一种快速图像阈值分割法,不是otsu或迭代法,Wellner 1993快速自适应的图像二值化方法,有具体使用方法,很详细(A fast image thresholding segmentation method, not otsu or iterative methods, Wellner 1993 fast adaptive image binarization method)
    2016-09-23 16:00:23下载
    积分:1
  • 696518资源总数
  • 105678会员总数
  • 22今日下载