AW00136902000 FeaturesBasler dart BCON 10911.10 Defect Pixel CorrectionWhen analyzing your acquired images, some pixels may appear significantly brighter or darker thanthe rest, even when uniform light is used ("outlier pixels"). This problem arises from sensitivitydifferences among the pixels due to production tolerances.The defect pixel correction minimizes the influence of these sensitivity differences. Basler dartcameras can perform two types of pixel corrections: The static pixel correction only corrects pixels that have a significantly lesser intensity valuethan its neighboring pixels (or that are always completely black). The dynamic pixel correction only corrects pixels that have a significantly greater intensityvalue than its neighboring pixels.You can specify which corrections should be performed by setting the DefectPixelCorrectionModeparameter: On (default): Static and dynamic pixel corrections are both enabled. Off: Static and dynamic pixel corrections are both disabled. StaticOnly: Only the static pixel correction is enabled.You can set the DefectPixelCorrectionMode parameter by using the pylon API. The following codesnippet illustrates using the API to set the pixel correction:// Disable pixel correctioncamera.DefectPixelCorrectionMode.SetValue(DefectPixelCorrectionMode_Off);// Enable static and dynamic pixel correctioncamera.DefectPixelCorrectionMode.SetValue(DefectPixelCorrectionMode_On);// Enable static pixel correction onlycamera.DefectPixelCorrectionMode.SetValue(DefectPixelCorrectionMode_StaticOnly);