Grooper Help - Version 25.0
25.0.0017 2,127
  • Overview
  • Help Status

Dropout Method

Grooper Object Grooper.IP

Serves as an abstract base for defining settings and logic for dropping content out of an image using a mask in Grooper.

Remarks

The Dropout Method class provides the foundation for implementing mask-based dropout operations in Grooper image processing workflows. Dropout methods are used to remove or suppress specific content from an image by applying a mask, which defines the regions to be dropped out. This is commonly used for tasks such as removing form lines, backgrounds, or other unwanted features prior to further processing or data extraction.

Dropout Methods are highly configurable and can be extended to support a variety of dropout strategies. The core logic includes support for mask dilation and erosion, allowing you to fine-tune how aggressively the mask affects the image content. Derived classes implement the specific logic for applying the mask to the image.

Configuration and Usage

  • Assign a Dropout Method to an image processing step or workflow where content needs to be selectively removed.
  • Configure the 'Mask Dilation Factor' property to control the extent of mask expansion or contraction.
  • Extend this class to implement custom dropout logic for specialized scenarios.

Best Practices

  • Adjust the mask dilation factor to achieve the desired balance between removing unwanted content and preserving important features.
  • Test dropout settings on representative images to ensure optimal results.
  • Document the intent and configuration of each dropout method for maintainability and collaboration.

Properties

NameTypeDescription

Derived Types

There are 2 implementations of Dropout Method.

Fill Fills masked regions of an image with a solid color.
Inpaint Digitally restores masked regions of an image by filling in missing or damaged areas.

Used By

Notification