srifqi.github.io/experiment/dip_edge_detection.html

72 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Point and Edge Detection - Experiments - srifqi</title>
<meta charset="utf-8">
<meta name="author" content="srifqi">
<meta name="description" content="An example of point and edge detection using filters in digital image processing">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1">
<link rel="stylesheet" href="/main.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Experiments",
"item": "https://srifqi.github.io/experiment/"
}, {
"@type": "ListItem",
"position": 2,
"name": "Point and Edge Detection"
}]
}
</script>
</head>
<body style="border: 0; max-width: 100%;">
<header><h1>Point and Edge Detection Experiment</h1></header>
<main>
<nav>
<ul class="left-menu">
<li><div><a href="/">Home</a></div></li>
<li><div><a href="./">Experiments</a></div><ul>
<li><a href="localoutlierfactor.html">LOF (Statistics)</a></li>
<li><a href="dip_contrast_enhancement.html">Contrast Enhance</a></li>
<li class="active"><a href="dip_edge_detection.html">Edge Detection</a></li>
<li><a href="dip_smoothing.html">Image Smoothing</a></li>
<li><a href="dip_grey_transform.html">Grey Transform</a></li>
<li><a href="genetic_algorithm.html">Genetic Algorithm</a></li>
<li><a href="vibration_test.html">Web Vibration API</a></li>
<li><a href="addition_game.html">Addition Game</a></li>
<li><a href="negative_lens.html">Negative Lens</a></li>
<li><a href="positive_lens.html">Positive Lens</a></li>
<li><a href="waterdrop.html">Waterdrop</a></li>
<li><a href="drive_a_car.html">Drive A Car</a></li>
</ul></li>
<li><div><a href="/minetest.html">Minetest</a></div></li>
<li><div><a href="/library.html">Libraries</a></div></li>
</ul>
</nav>
<section style="max-width: calc(100% - 16px);">
<aside>
<table>
<thead>
<tr><th colspan="2">Point and Edge Detection<br><span class="exp-dip">DIP</span></th></tr>
</thead>
<tbody>
<tr><th>Type</th><td>Course material</td></tr>
<tr><th>Date</th><td><time datetime="2020-11-04">4 November 2020</time></td></tr>
</tbody>
</table>
</aside>
<p>Again, this was created from an assignment. I did it in GNU Octave. But, I want to try doing it in JavaScript.</p>
<p>There are one point detector and three edge detector: Sobel operator, Prewitt operator, and Robert cross.</p>
<p><span class="italic">It seems like Sobel operator is the brightest. This is a reason to use thresholding after edge detection.</span></p>
<p><a href="bare/dip/edge_detection.html" target="_blank">open in new window</a></p>
<iframe style="width: 850px; height: 500px;" src="bare/dip/edge_detection.html" title="The experiment"></iframe>
</section>
</main>
</body>
</html>