3x3 Average filter in matlab

后端 未结 6 2271
情深已故
情深已故 2020-12-11 09:09

I\'ve written code to smooth an image using a 3x3 averaging filter, however the output is strange, it is almost all black. Here\'s my code.

function [filtere         


        
6条回答
  •  攒了一身酷
    2020-12-11 09:45

    Implement neighborhood operation of sum of product operation between an image and a filter of size 3x3, the filter should be averaging filter. Then use the same function/code to compute Laplacian(2nd order derivative, prewitt and sobel operation(first order derivatives). Use a simple 10*10 matrix to perform these operations need matlab code

提交回复
热议问题