GooglePrivacyDlpV2ImageContainmentType
import type { GooglePrivacyDlpV2ImageContainmentType } from "https://googleapis.deno.dev/v1/dlp:v2.ts";Specifies the relationship between bounding boxes for image findings.
interface GooglePrivacyDlpV2ImageContainmentType {
encloses?: GooglePrivacyDlpV2Encloses;
fullyInside?: GooglePrivacyDlpV2FullyInside;
overlaps?: GooglePrivacyDlpV2Overlap;
}§Properties
§
encloses?: GooglePrivacyDlpV2Encloses
[src]The context finding's bounding box must fully contain the target finding's bounding box.
§
fullyInside?: GooglePrivacyDlpV2FullyInside
[src]The context finding's bounding box must be fully inside the target finding's bounding box.
§
overlaps?: GooglePrivacyDlpV2Overlap
[src]The context finding's bounding box and the target finding's bounding box must have a non-zero intersection.