Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Image segmentation
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Isolated Point Detection == The detection of isolated points in an image is a fundamental part of image segmentation. This process primarily depends on the second derivative, indicating the use of the Laplacian operator. The Laplacian of a function <math>f(x, y)</math> is given by: :<math> \nabla^2 f(x,y) = \frac{{\partial^2 f}}{{\partial x^2}} + \frac{{\partial^2 f}}{{\partial y^2}} </math> The Laplacian operator is employed such that the partial derivatives are derived from a specific equation. The second partial derivative of <math>f(x, y)</math> with respect to <math>x</math> and <math>y</math> are given by: :<math> \frac{{\partial^2 f(x,y)}}{{\partial x^2}} = f(x+1,y) + f(x-1,y) - 2f(x,y) </math> :<math> \frac{{\partial^2 f(x,y)}}{{\partial y^2}} = f(x,y+1) + f(x,y-1) - 2f(x,y) </math> These partial derivatives are then used to compute the Laplacian as: :<math> \nabla^2 f(x,y) = f(x+1,y) + f(x-1,y) + f(x,y+1) + f(x,y-1) - 4f(x,y) </math> This mathematical expression can be implemented by convolving with an appropriate mask. If we extend this equation to three dimensions (x,y,z), the intensity at each pixel location around a central pixel at (x, y, z) is replaced by their corresponding values. This equation becomes particularly useful when we assume that all pixels have unit spacing along each axis. A sphere mask has been developed for use with three-dimensional datasets. The sphere mask is designed to use only integer arithmetic during calculations, thereby eliminating the need for floating-point hardware or software. When applying these concepts to actual images represented as arrays of numbers, we need to consider what happens when we reach an edge or border region. The function <math>g(x, y)</math> is defined as: :<math> g(x, y) = \begin{cases} 1 & \text{if } |R(x, y)| \geq T \\ 0 & \text{otherwise} \end{cases} </math> This above equation is used to determine whether a point in the image is an isolated point based on the response magnitude <math>|R(x, y)|</math> and a threshold value <math>T</math>. If the response magnitude is greater than or equal to the threshold, the function returns 1, indicating the presence of an isolated point; otherwise, it returns 0. This helps in the effective detection and segmentation of isolated points in the image.<ref>Digital Image Processing (2007, Pearson) by Rafael C. Gonzalez, Richard E. Woods</ref>
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)