MATLAB: How to remove the pole from the NIR image

Image Processing Toolboxinfrarednir

How to remove the pole from the NIR image

Best Answer

Since it's in a known location, simple create a binary image as a template/mask and mask it out
irImage(mask) = 0;
Related Question