Code Monkey home page Code Monkey logo

edge_detection's Introduction

Edge Detection

Author: Jun Zhuang

0. About The Project

In this project, I implement edge detection algorithms from scratch using c++.

1. Methods

Basically, I use Sobel operators to make convolutional operations with input images to compute the partial derivatives along x and y directions. After that, I compute the gradient image and then detect the edges at the peaks of gradient values. The total process follows this site (without pre-smoothing).

Here I implement two versions. For the canny edge detector, I convert the gradient image to the binary image and then perform Non-Maximum Suppression. For the simple version, I only consider horizontal and vertical directions. Note that these are basic re-implementation as I don't put much time into tuning the scale number for avoiding the overflow problem.

2. Run the scripts

I use GNU Compiler Collection (GCC) to run the scripts on MacOS.

gcc script_name.cpp -o script_name
./script_name

Before running, the user needs to set up the WIDTH and HEIGHT of the image, the size of the filter, the threshold, and the name of the input image inside the script (Cannot pass the arguments at this version).

3. Results

Original images are displayed as follows. Here we use the raw file as input and output. The image needs to be converted to jpg format for human vision.
unesco750.jpg building.jpg

The result is presented as follows: canny

simple

Acknowledgments

Thanks professor Zheng for his patient instruction.

edge_detection's People

Contributors

junzhuang-code avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.