Welcome![Sign In][Sign Up]
Location:
Search - region growing color

Search list

[Special Effectssegmentation

Description: 介绍了视觉颜色空间及其在交互式图像分割中的作用, 实验分析了它的奇异性, 在此基础上, 考虑像素的 空间和色彩分布, 提出了基于区域生长法的多颜色空间、 多度量准则的聚类算法和零碎区域的合并算法, 颜色空间选取HSL 和RGB 两种, 相似性度量包括了种子点、 扩张点和生长区域三个方面, 并用于敦煌壁画图像的分割.-Introduce the visual color space and its application in interactive image segmentation of the role, experimental analysis of its singularity, on this basis, taking into pixel space and color distribution, based on region growing multi-color space, multi-metric criteria clustering algorithm and fragmented region merging algorithm, select the HSL color space and RGB are two similarity measure, including the seed point, the expansion point and the three aspects of regional growth, and for image segmentation in Dunhuang murals.
Platform: | Size: 348160 | Author: singro jiang | Hits:

[Special Effects111Regionbetter

Description: 经典区域生长源码(区域增长),比起灰度阈值法有不可比拟的优势,一旦尝试,欲罢不能啊,只是,在实时性应用方面还有待改进,m代码编写易懂,易用,易改写成其他语言,如果改写成c,应该速度有所提高.请尽情享用-Classical region growing source (regional growth), compared to gray-scale threshold method has unparalleled advantages, once the attempt to stop ah, but, in real-time applications have yet to be improved, m coding easy to understand, easy to use, easy to rewritten into other languages, if rewritten into c, the speed should be improved. please enjoy
Platform: | Size: 1024 | Author: zz | Hits:

[Special Effectssegmentation

Description: 基于边缘检测和区域生长的自然彩色图像分割源码-Based on edge detection and region growing source of natural color image segmentation
Platform: | Size: 262144 | Author: 小馨 | Hits:

[Otherpepp

Description: This code contains region growing segmentation algorithm to obtain the similar edges in color images
Platform: | Size: 66560 | Author: Rekha.N | Hits:

[Special Effectsmain

Description: 基于分水岭自动选取种子的区域生长来进行彩色图像分割-Automatically selected based on the watershed to the seed region growing for color image segmentation
Platform: | Size: 5120 | Author: Image | Hits:

[Special Effectszhongzi

Description: 采用种子区域生长(seeded region growing)算法对灰度图像和彩色图像进行分割-The seed region growing (seeded region growing) algorithm for gray image and color image segmentation
Platform: | Size: 600064 | Author: jiang | Hits:

[Special Effectsquyushengzhang1

Description: 区域生长(region growing)是指将成组的像素或区域发展成更大区域的过程。从种子点的集合开始,从这些点的区域增长是通过将与每个种子点有相似属性像强度、灰度级、纹理颜色等的相邻像素合并到此区域。它是一个迭代的过程,这里每个种子像素点都迭代生长,直到处理过每个像素,因此形成了不同的区域,这些区域它们的边界通过闭合的多边形定义。-Region growing (region growing) is the pixel will become the group into a larger regional or regional development process. Collection of seed points from the beginning, from the point of the region is growing with each seed point by similar properties such as strength, gray scale, color and texture of adjacent pixels merge into this area. It is an iterative process, where each iteration of the seed pixel are growing, until processed for each pixel, thus creating a different area, the boundaries of these regions are defined by closed polygons.
Platform: | Size: 14336 | Author: 庞涛 | Hits:

[Special Effects123

Description: 基于边缘检测和区域生长的彩色图像分割,设计论文+VC代码-Based on edge detection and region growing for color image segmentation Design thesis+ VC code
Platform: | Size: 226304 | Author: 林静 | Hits:

[Special Effects[segmentasi-citra-berwarna-dengan-algoritma-jseg]

Description: In this work, a new approach to fully automatic color image segmentation, called JSEG, is presented. First, colors in the image are quantized to several representing classes that can be used to differentiate regions in the image. Then, image pixel colors are replaced by their corresponding color class labels, thus forming a class-map of the image. A criterion for “good” segmentation using this class-map is proposed. Applying the criterion to local windows in the class-map results in the “J-image”, in which high and low values correspond to possible region boundaries and region centers, respectively. A region growing method is then used to segment the image based on the multi-scale J-images. Experiments show that JSEG provides good segmentation results on a variety of images.
Platform: | Size: 4101120 | Author: artjuna | Hits:

[Special Effectscolor-image-region-growing

Description: 彩色图像分割处理,采用区域生长方法进行,八邻域生长方式-color image region growing
Platform: | Size: 17408 | Author: wulong | Hits:

[matlabAutomatic-seeded-region-growing-for-color-image-s

Description: matlab image processing Automatic Image Segmentation by Integrating Color-Edge Extraction and Seeded Region Growing
Platform: | Size: 1032192 | Author: abd | Hits:

[matlabAutomatic-Image-Segmentation-by-Integrating-Color

Description: Automatic Image Segmentation by Integrating Color-Edge Extraction and Seeded Region Growing
Platform: | Size: 370688 | Author: abd | Hits:

[matlabAutomatic-Region-DEtection-and-Conversion

Description: Automatic Image Segmentation by Integrating Color-Edge Extraction and Seeded Region Growing
Platform: | Size: 15498240 | Author: abd | Hits:

[Dialog_WindowConnectCopLabel

Description: 做一个简单的MFC界面,通过导入图片,实现区域生长算法,同时通过色彩标记区域。-Do a simple MFC interface, by importing images, region growing algorithm, at the same time through the color-coded regions.
Platform: | Size: 146432 | Author: long | Hits:

[Special EffectsImage-segmentation-code

Description: Cutpicture(form)做的是直方图统计: 第一步:读入图片,并将彩色图片用公式转化为灰度图像。 第二步:用区域生长法将图片分块并对每一块做直方图统计,用广度优先搜索完成,子程序是int flood_fill()。返回值是区域内的点的数量。判断是否属于同一块区域的条件是前面搜索得到的灰度平均值是否大于给定阈值(即threshold,由用户输入决定)。 第三步:任意两块区域对区域直方图的每个色阶比例的差的绝对值求和,若和小于阈值(即threshold2,由用户输入决定)则合并两块区域.区域绝对值求和的子程序为void statistics(),用于合并块的子程序为void combine(int obj1,int obj2)。 第四步:将占总面积1/10以上的块号输出,由用户决定要选哪一块做为最后需要的图片,并输出合并的块的数量。最后输出图像。-Cutpicture (form) do the histogram statistics: The first step: read into the picture, and the color image into gray image using the formula. The second step: the picture into blocks and each block of the histogram statistics with region growing method, using breadth-first search is complete, a subroutine is int flood_fill (). The return value is the number of points. Determine whether the same area condition is gray front search the average is greater than a given threshold (i.e. threshold, input is decided by the user). Step third: each color proportion of arbitrary two pieces of area of the histogram of the absolute value of the difference between the sum, if less than the threshold (i.e. threshold2, input is decided by the user) is the merger of the two block area. Regional absolute value summation subroutine for void Statistics (), is used to merge the block subroutine for the void combine (int obj1, int obj2). The fourth step: the total output block number more than 1/10, the
Platform: | Size: 3072 | Author: 吴魏 | Hits:

[Special Effectscolor-image-region-growing

Description: 用4领域和8领域跟踪算法解决一个边界跟踪问题,很详细,欢迎下载-With four fields and eight field boundary tracking algorithm to solve a tracking problem in great detail, welcome to download
Platform: | Size: 18432 | Author: 赵赵 | Hits:

[Special Effectscolor-segment_edge-detection

Description: Matlab 语言编写的用于彩色分割,边缘检测,基于区域生长的图像分割-Matlab color segmentation,edge detection,region growing image segmentation.
Platform: | Size: 3072 | Author: sally | Hits:

[Special Effectsregiongrowth52230

Description: 一个种子为生长点的彩色图像区域生长程序。交互式Matlab实现-A seed for the growing point of color image region growing process. Each type of Matlab
Platform: | Size: 1024 | Author: 小花 | Hits:

[Graph Recognizequyushengzhang

Description: 一种新的基于区域生长的彩色图像分割算法研究-A new segmentation algorithm for color images based on region growing
Platform: | Size: 580608 | Author: 彭璐 | Hits:

[3D GraphicColor-based-region-

Description: 这是点云库中的,基于色彩的区域增长算法的程序。-clour-based region growing point cloud
Platform: | Size: 1024 | Author: 吴晓庆 | Hits:
« 12 »

CodeBus www.codebus.net