erasebg static method

TransformationData erasebg({
  1. Industrytype? industryptype = Industrytype.general,
  2. bool? addshadow = false,
  3. bool? refinpe = true,
})

EraseBG Background Removal Module

  • industryptype : Industry Type (Default: general)

  • addshadow : Add Shadow (Default: false)

  • refinpe : Refine (Default: true)

Returns TransformationData.

Implementation

static TransformationData erasebg(
    {Industrytype? industryptype = Industrytype.general,
    bool? addshadow = false,
    bool? refinpe = true}) {
  // Call the generated class method
  return EraseBG().bg(industryptype, addshadow, refinpe);
}