Anastasios Papadopoulos
Followers: 0 Following: 0
Feeds
已回答
I cannot pass one of the final MATLAB problems on the coursera MATLAB course. What is wrong with my code? Why won't it work for the 'Image Blur' assignment?
function output = blur(img,w) [m,n] = size(img); img_1 = zeros(m + 2*w, n + 2*w); for i=(1+w):(m+w) for j=(1+w):(n+w) ...
I cannot pass one of the final MATLAB problems on the coursera MATLAB course. What is wrong with my code? Why won't it work for the 'Image Blur' assignment?
function output = blur(img,w) [m,n] = size(img); img_1 = zeros(m + 2*w, n + 2*w); for i=(1+w):(m+w) for j=(1+w):(n+w) ...
5 years 前 | 0