summaryrefslogtreecommitdiff
path: root/www/connected-components.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/connected-components.html')
-rw-r--r--www/connected-components.html52
1 files changed, 26 insertions, 26 deletions
diff --git a/www/connected-components.html b/www/connected-components.html
index 839314c8c..768875535 100644
--- a/www/connected-components.html
+++ b/www/connected-components.html
@@ -5,34 +5,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
+ <meta charset="utf-8" >
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" >
<title>Connected Components Labeling @ ImageMagick</title>
- <meta name="application-name" content="ImageMagick" />
- <meta name="description" content="ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-2000, GIF, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves." />
- <meta name="application-url" content="https://www.imagemagick.org" />
- <meta name="generator" content="PHP" />
- <meta name="keywords" content="connected, components, labeling, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert" />
- <meta name="rating" content="GENERAL" />
- <meta name="robots" content="INDEX, FOLLOW" />
- <meta name="generator" content="ImageMagick Studio LLC" />
- <meta name="author" content="ImageMagick Studio LLC" />
- <meta name="revisit-after" content="2 DAYS" />
- <meta name="resource-type" content="document" />
- <meta name="copyright" content="Copyright (c) 1999-2017 ImageMagick Studio LLC" />
- <meta name="distribution" content="Global" />
- <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" />
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
- <link href="../www/connected-components.html" rel="canonical" />
- <link href="../images/wand.png" rel="icon" />
- <link href="../images/wand.ico" rel="shortcut icon" />
- <link href="assets/magick.css" rel="stylesheet" />
+ <meta name="application-name" content="ImageMagick">
+ <meta name="description" content="ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-2000, GIF, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.">
+ <meta name="application-url" content="https://www.imagemagick.org">
+ <meta name="generator" content="PHP">
+ <meta name="keywords" content="connected, components, labeling, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert">
+ <meta name="rating" content="GENERAL">
+ <meta name="robots" content="INDEX, FOLLOW">
+ <meta name="generator" content="ImageMagick Studio LLC">
+ <meta name="author" content="ImageMagick Studio LLC">
+ <meta name="revisit-after" content="2 DAYS">
+ <meta name="resource-type" content="document">
+ <meta name="copyright" content="Copyright (c) 1999-2017 ImageMagick Studio LLC">
+ <meta name="distribution" content="Global">
+ <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1">
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4">
+ <link href="../www/connected-components.html" rel="canonical">
+ <link href="../images/wand.png" rel="icon">
+ <link href="../images/wand.ico" rel="shortcut icon">
+ <link href="assets/magick.css" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
- <a class="navbar-brand" href="../index.html">ImageMagick</a>
+ <a class="navbar-brand" href="connected-components.html#">ImageMagick</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
@@ -78,7 +78,7 @@
</script>
</div>
</header>
- <main role="main" class="container">
+ <main role="main" class="container">
<div class="magick-template">
<div class="magick-header">
<p class="lead magick-description">Connected-component labeling (alternatively connected-component analysis, blob extraction, region labeling, blob discovery, or region extraction) uniquely labels connected components in an image. The labeling process scans the image, pixel-by-pixel from top-left to bottom-right, in order to identify connected pixel regions, i.e. regions of adjacent pixels which share the same set of intensity values. For example, let's find the objects in this image:</p>
@@ -101,7 +101,7 @@
4: 21x23+0+45 8.8,55.9 409 srgb(255,255,255)
1: 4x10+252+0 253.9,4.1 31 srgb(255,255,255)
</code></pre>
-<p>Use <code>-connected-components 8</code> to visit 8 neighbors rather than 4. By default, neighbor colors must be exact to be part of a unique object. Use the <a href="../www/command-line-options.html#fuzz">-fuzz</a> option to include pixels as part of an object that are <var>close</var> in color.</p>
+<p>Use <code>-connected-components 8</code> to visit 8 neighbors rather than 4. By default, neighbor colors must be exact to be part of a unique object. Use the <a href="command-line-options.html#fuzz">-fuzz</a> option to include pixels as part of an object that are <var>close</var> in color.</p>
<p>You might want to eliminate small objects by merging them with their larger neighbors. If so, use this command:</p>
<pre class="highlight"><code>magick objects.gif -define connected-components:area-threshold=410 -connected-components 4 \
-auto-level objects.jpg</code></pre>
@@ -140,4 +140,4 @@
<script>window.jQuery || document.write('<script src="assets/jquery.min.js"><\/script>')</script>
</body>
</html>
-<!-- Magick Cache 9th December 2017 14:51 --> \ No newline at end of file
+<!-- Magick Cache 9th December 2017 17:40 --> \ No newline at end of file