- Visual Media Processing Using Matlab Beginner's Guide
- George Siogkas
- 218字
- 2021-08-06 16:37:58
Enlarging and shrinking a region of interest
A very common technique for refining a region of interest derived using thresholding is either enlarging or shrinking it to fit our target size. This can be accomplished by the morphological operations called dilation and erosion, respectively. These operations can be implemented in MATLAB using their respective functions, intuitively named imdilate
and imerode
.
Explaining and analyzing the mathematical properties of dilation and erosion lie beyond the scope of this book. We will instead explain their significance using practical examples that demonstrate their importance for image processing. The basic idea that you have to understand before we start, is that the two operations can be used for enlarging or shrinking an ROI (denoted by the instances of 1 in the image) using a structuring element. Structuring elements can be small binary images generated by the user either arbitrarily (placing the instances of 1 and 0 in a small image), or by using the strel
function. The choice of a structuring element should be made following two simple rules:
- The larger the structuring element, the larger the enlarging/shrinking factor
- Using a structuring element more similar to the shape of the ROI will typically give you a better result
Let's dive right in, to understand the physical meaning of all these concepts in practice.
- 用“芯”探核:龍芯派開發實戰
- Windows phone 7.5 application development with F#
- 新型電腦主板關鍵電路維修圖冊
- 龍芯應用開發標準教程
- Effective STL中文版:50條有效使用STL的經驗(雙色)
- Linux運維之道(第2版)
- The Applied AI and Natural Language Processing Workshop
- Learning Game Physics with Bullet Physics and OpenGL
- 電腦軟硬件維修從入門到精通
- 分布式系統與一致性
- Visual Media Processing Using Matlab Beginner's Guide
- 基于Apache Kylin構建大數據分析平臺
- Intel Edison智能硬件開發指南:基于Yocto Project
- BeagleBone Robotic Projects
- Blender Game Engine:Beginner's Guide