Region Growing (2D/3D) in C

版本 2.1.0.0 (8.7 KB) 作者: Adrian Becker
C implementation of a basic region growing algorithm for images and volumes
428.0 次下载
更新时间 2017/12/2

查看许可证

A simple image segmentation method. The segmented region grows from a
seed point by comparing neighbor pixels/voxels.
If a neighbor pixel/voxel is smaller then the specified threshold value it becomes a
part of the region.
The growing algorithm is written in C because the matlab implementations are rather
slow especially for big images or volumes.

引用格式

Adrian Becker (2024). Region Growing (2D/3D) in C (https://www.mathworks.com/matlabcentral/fileexchange/63317-region-growing-2d-3d-in-c), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2015a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 3-D Volumetric Image Processing 的更多信息
致谢

参考作品: Region Growing (2D/3D grayscale)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

@regGrow/

版本 已发布 发行说明
2.1.0.0

Changed the data type of the dimension Vector from int to mwSize to prevent errors on x64 machines

2.0.0.0

Redesigned as a class with an interactive segmentation GUI in case of a 2D input image

1.3.0.0

Added input parameter for maximum euclidean distance to the seed point

1.2.0.0