# DetectedQuadResultItem Class

The `DetectedQuadResultItem` class stores a captured result whose type is detected quad.

## Definition

*Module:* ddn

```python
class DetectedQuadResultItem(dynamsoft_core.CapturedResultItem)
```

*Inheritance:* [CapturedResultItem](https://www.dynamsoft.com/capture-vision/docs/server/programming/python/api-reference/core/basic-classes/captured-result-item.md) -> DetectedQuadResultItem

## Methods

| Method | Description |
|--------|-------------|
| [`get_location`](#get_location) | Gets the location of current object. |
| [`get_confidence_as_document_boundary`](#get_confidence_as_document_boundary) | Gets the confidence of current object as a document boundary. |
| [`get_cross_verification_status`](#get_cross_verification_status) | Gets the status of current object as a verified document boundary. |

### get_location

Gets the location of current object.

```python
def get_location(self) -> Quadrilateral:
```

**Return Value**

The location of current object.

**See Also**

[Quadrilateral](https://www.dynamsoft.com/capture-vision/docs/server/programming/python/api-reference/core/basic-classes/quadrilateral.md)

### get_confidence_as_document_boundary

Gets the confidence of current object as a document boundary.

```python
def get_confidence_as_document_boundary(self) -> int:
```

**Return Value**

The confidence as document boundary of the detected quad result.

### get_cross_verification_status

Gets the status of current object as a verified document boundary.

```python
def get_cross_verification_status(self) -> EnumCrossVerificationStatus:
```

**Return Value**

The status of current object as a verified document boundary.

**See Also**

[EnumCrossVerificationStatus](https://www.dynamsoft.com/capture-vision/docs/server/programming/python/api-reference/core/enum-cross-verification-status.md)

