[Learning OpenCV] Image Sobel, Laplacian, canny edge detection

Source: Internet
Author: User

Http://www.cnblogs.com/tiandsp/archive/2013/04/20/3032860.html


Three kinds of common edge detection operators.

#include "cv.h"
#include "highgui.h"

using namespace CV;

int main (int argc, char* argv[])
{
        Mat src = imread ("misaka.jpg");
        Mat DST;
    
        Input image
        //output image
        //input Image Color channel number
        //x direction order number
        //y Direction order
        Sobel (Src,dst,src.depth (), n);
        Imwrite ("Sobel.jpg", DST);

        Input image
        //output image
        //input Image Color channel number
        Laplacian (src,dst,src.depth ());
        Imwrite ("Laplacian.jpg", DST);

        Input image
        //output image
        //color turn grayscale
        cvtcolor (src,src,cv_bgr2gray);  Canny processing only grayscale image

        //input image//
        output image
        //Low threshold
        //High threshold value, OPENCV recommended is low threshold value of 3 times times
        //Internal Sobel filter size
        Canny (src , dst,50,150,3);    
        Imwrite ("Canny.jpg", DST);

        Imshow ("DST", DST);
        Waitkey ();

        return 0;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.