fillnan.m

来自「hopfield neural network for binary image」· M 代码 · 共 48 行

M
48
字号
% FILLNAN  - fills NaN values in an image with closest non Nan value%% NaN values in an image are replaced with the value in the closest pixel% that is not a NaN.%% Usage:  [newim, mask] = fillnan(im);%%   Argument:  im    - Image to be 'filled'%   Returns:   newim - Filled image%              mask  - Binary image indicating regions in the original image%                      which were non NaN%% See Also: REMOVENAN% Copyright (c) 2007 Peter Kovesi% School of Computer Science & Software Engineering% The University of Western Australia% pk at csse uwa edu au% http://www.csse.uwa.edu.au/% % Permission is hereby granted, free of charge, to any person obtaining a copy% of this software and associated documentation files (the "Software"), to deal% in the Software without restriction, subject to the following conditions:% % The above copyright notice and this permission notice shall be included in % all copies or substantial portions of the Software.%% The Software is provided "as is", without warranty of any kind.function [newim, mask] = fillnan(im);        % Generate distance transform from non NaN regions of the image.     % L will contain indices of closest non NaN points in the image    mask = ~isnan(im);       [dist,L] = bwdist(mask);           [r,c] = find(isnan(im));  % Indices of points that are NaN    newim = im;        % Fill NaN locations with value of closest non NaN pixel    for n = 1:length(r)	newim(r(n),c(n)) = im(L(r(n),c(n)));    end        

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?