zoukankan      html  css  js  c++  java
  • 3*3卷积核实例

    (转)3x3 convolution kernels with online demo

    3x3 convolution kernels with online demo

    • Which are the most used 3x3 convolution kernels/matrices?
    • Which kernel is used for averaging, applying blur or smooth effect, do sharpening or for the emboss effect?
    • Which kernels can be used to detect edges, calculate the gradient or the smoothed gradient?
    • Can I try somewhere the two dimensional convolution in an interactive application?

    The frequently used 3x3 convolution kernels are listed below with some short description. At the end of this post there is an interactive demo, where you can try and play with different 3x3 kernels. For the mathematical background of the usage of these kernels, please read the previous post on two dimensional convolution.

    Average (blur, smooth) 3x3 convolution kernel

    This kernel is used for noise reduction and blurring the image. Must be normalized, otherwise the result may not fit the (0, 255) range.

    Sharpen 3x3 convolution kernel

    This kernel is used to enhance the small differences and edges in the image.

    Edge detection 3x3 convolution kernels

     

    These kernels are sensitive to the edges. Kernel E is for detecting in both directions, while EH and EV are sensitive for the horizontal and vertical edges respectively.

    Gradient detection 3x3 convolution kernels

    Kernels GH and GV are to calculate the magnitude of the horizontal and the vertical gradient.

    Sobel operator 3x3 convolution kernels

    Sobel operators are similar to the gradient kernels approximating the smoothed gradient of the image in horizontal and vertical directions. It can be seen from the decomposing, that this operator is a combination of a gradient detector and a smoothing kernel.

    Emboss 3x3 convolution kernel

     

    This kernel creates an embossing effect, can be rotated to modify the direction of this operator.

    Demo application

    This program demonstrates using 3x3 convolution kernels on classic image processing source images. Please click on the label to load the application. It shall run in every modern browser, including IE9+.

    Demo APP见原文



    You can use the currently filtered image as source by clicking the Use filtered image button. Some predefined kernels can be chosen, but values are directly selectable too. Setting Filter normalization divides the convolution result by the summary of the elements in the kernel. It is important to mention, that on the result image the absolute output values are shown.

  • 相关阅读:
    mahout协同过滤算法
    如何实现团队的自组织管理
    Trail: JDBC(TM) Database Access(3)
    JavaEE5 Tutorial_JavaBean,JSTL
    JavaEE5 Tutorial_Jsp,EL
    JavaEE5 Tutorial_Servlet
    J2SE7规范_2013.2_类
    J2SE7规范_2013.2_类型_命名
    Trail: JDBC(TM) Database Access(2)
    Trail: JDBC(TM) Database Access(1)
  • 原文地址:https://www.cnblogs.com/lutingting/p/5188552.html
Copyright © 2011-2022 走看看