Non-uniform illumination and shading artefacts are common image quality issues where brightness varies unevenly across an image, often appearing as vignetting (darker corners), streaks, or gradient shadows. These effects arise from lighting inefficiencies, detection limitations, and/or light path obstructions. They degrade the image quality and confuse intensity-based analysis and image processing.
Prerequisites
Before starting this lesson, you should be familiar with:
Do you notice a pattern of intensity difference from the center to the corner in all images?
How does this affect your intensity measurements?
Open xy_16bit__homogeneous_slide.tif. This image has been recorded with a an homogeneous fluorescent slide on the same setup. Show how the intensity pattern matches the pattern observed when measuring the biological sample. The intensity pattern is a typical pattern observed in widefield system and gaussian illumination.
Discuss the pattern and how it matches what is observed with the biological sample
ImageJ macro
// Close all imagesrun("Close All")// Open the first image open("https://github.com/NEUBIAS/training-resources/raw/master/image_data/shading_tiling/xyc_16bit__hoechst_phalloidin_tile_01.tif")makeLine(50,50,2250,2250);run("Plot Profile");// Open the first image open("https://github.com/NEUBIAS/training-resources/raw/master/image_data/shading_tiling/xyc_16bit__hoechst_phalloidin_tile_02.tif")makeLine(50,50,2250,2250);run("Plot Profile");// Open the slide imageopen("https://github.com/NEUBIAS/training-resources/raw/master/image_data/shading_tiling/xy_16bit__homogeneous_slide.tif")makeLine(50,50,2250,2250);run("Plot Profile");