?? fillnan.m
字號:
% 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -