bgExtend static method

TransformationData bgExtend({
  1. String? boundingBox,
  2. String? prompt = "",
  3. String? negativePrompt = "",
  4. double? strength = 0.999,
  5. int? guidanceScale = 8,
  6. int? numberOfInferenceSteps = 10,
  7. bool? colorAdjust = false,
  8. int? seed = 123,
})

ImageExtender AI Image Extender

  • boundingBox : Bounding Box (Default: )
  • prompt : Prompt (Default: )
  • negativePrompt : Negative Prompt (Default: )
  • strength : Strength (Default: 0.999)
  • guidanceScale : Guidance Scale (Default: 8)
  • numberOfInferenceSteps : Number of inference steps (Default: 10)
  • colorAdjust : Color Adjust (Default: false)
  • seed : seed (Default: 123) Returns TransformationData.

Implementation

static TransformationData bgExtend(
    {String? boundingBox,
    String? prompt = "",
    String? negativePrompt = "",
    double? strength = 0.999,
    int? guidanceScale = 8,
    int? numberOfInferenceSteps = 10,
    bool? colorAdjust = false,
    int? seed = 123}) {
  return BgExtend().extend(boundingBox, prompt, negativePrompt, strength,
      guidanceScale, numberOfInferenceSteps, colorAdjust, seed);
}