# Edge

The class `Edge` is a structure composed of two `Corner` points in an image. A `Corner` represents a point at which the image's brightness or color sharply changes. Therefore, an `Edge` is a line segment connecting two such points that have been identified as corners.

## Definition

*Namespace:* Dynamsoft.Core


```csharp
class Edge 
```

## Attributes
  
| Attribute | Type |
|---------- | ---- |
| [`startCorner`](#startcorner) | *Corner* |
| [`endCorner`](#endcorner) | *Corner* |

### startCorner

The start corner point of the edge.

```csharp
Corner startCorner
```

**See Also**

[Corner](https://www.dynamsoft.com/capture-vision/docs/server/programming/dotnet/api-reference/core/basic-classes/corner.md)

### endCorner

The end corner point of the edge.

```csharp
Corner endCorner
```

**See Also**

[Corner](https://www.dynamsoft.com/capture-vision/docs/server/programming/dotnet/api-reference/core/basic-classes/corner.md)
