Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i.segment.html: parameter names and links to other modules #4483

Merged
merged 2 commits into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions imagery/i.segment/i.segment.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ <h4>Goodness of Fit</h4>
<h3>Mean shift</h3>
Mean shift image segmentation consists of 2 steps: anisotrophic
filtering and 2. clustering. For anisotrophic filtering new cell values
are calculated from all pixels not farther than <b>hs</b> pixels away
are calculated from all pixels not farther than <b>radius</b> pixels away
from the current pixel and with a spectral difference not larger than
<b>hr</b>. That means that pixels that are too different from the current
pixel are not considered in the calculation of new pixel values.
<b>hs</b> and <b>hr</b> are the spatial and spectral (range) bandwidths
<b>radius</b> and <b>hr</b> are the spatial and spectral (range) bandwidths
for anisotrophic filtering. Cell values are iteratively recalculated
(shifted to the segment's mean) until the maximum number of iterations
is reached or until the largest shift is smaller than <b>threshold</b>.
Expand Down Expand Up @@ -251,8 +251,6 @@ <h3>Functionality</h3>
</ul>
<h3>Use of Segmentation Results</h3>
<ul>
<li>Improve the optional output from this module, or better yet, add a
module for <em>i.segment.metrics</em>.</li>
<li>Providing updates to <em><a href="i.maxlik.html">i.maxlik</a></em>
to ensure the segmentation output can be used as input for the
existing classification functionality.</li>
Expand All @@ -277,6 +275,9 @@ <h2>REFERENCES</h2>
<h2>SEE ALSO</h2>

<em>
<a href="https://grass.osgeo.org/grass8/manuals/addons/i.segment.stats.html">i.segment.stats</a> (addon),
<a href="https://grass.osgeo.org/grass8/manuals/addons/i.segment.uspo.html">i.segment.uspo</a> (addon),
<a href="https://grass.osgeo.org/grass8/manuals/addons/i.segment.hierarchical.html">i.segment.hierarchical</a> (addon)
<a href="g.gui.iclass.html">g.gui.iclass</a>,
<a href="i.group.html">i.group</a>,
<a href="i.maxlik.html">i.maxlik</a>,
Expand Down
Loading