Feeds
답변 있음
Code for png image using sobel operator
function [c3] = edgy(c) s1 = [-1 0 1;-2 0 2;-1 0 1]; s1 = double(s1); s2 = [1 2 1; 0 0 0;-1 -2 -1]; s2 = double(s2); c ...
Code for png image using sobel operator
function [c3] = edgy(c) s1 = [-1 0 1;-2 0 2;-1 0 1]; s1 = double(s1); s2 = [1 2 1; 0 0 0;-1 -2 -1]; s2 = double(s2); c ...
대략 5년 전 | 2
