- 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.
- 筆記本電腦使用、維護與故障排除實戰
- Instant uTorrent
- Effective STL中文版:50條有效使用STL的經驗(雙色)
- BeagleBone By Example
- Mastering Manga Studio 5
- Learning Stencyl 3.x Game Development Beginner's Guide
- 計算機維修與維護技術速成
- VCD、DVD原理與維修
- 計算機組裝與維護(第3版)
- 單片機原理及應用:基于C51+Proteus仿真
- Mastering Machine Learning on AWS
- 嵌入式系統原理及應用:基于ARM Cortex-M4體系結構
- 微控制器的應用
- 微服務架構實戰:基于Spring Boot、Spring Cloud、Docker
- Unreal Engine 4 AI Programming Essentials