MATLAB: How to set black (pixel=0 or <20) to NaN in an image image processingnanpixel value Hi there, can anyone tell me how to convert black regions on grayscale image to NaN value? I appreciate any answers. Best Answer Let I be your matrix....read using imreadIf you want to make pixels [0 20] to NaN..do this:I(I>=0 & I<= 20) = NaN Related QuestionDoes a cell vector contains only NaNIgnoring [NaN; NaN]Replace numbers in a matrix that are surrounded in 8-directions by NaNs to NaNsSorting NaNCheck pixel valueHow to binarize an image by keeping the NaNs and using a threshold
Best Answer