Skip to content

Commit

Permalink
Remove IRawBoundingBox.Empty
Browse files Browse the repository at this point in the history
  • Loading branch information
dme-compunet committed Sep 24, 2024
1 parent 853d9b7 commit 63b1602
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions Source/YoloV8/Parsing/IRawBoundingBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

internal interface IRawBoundingBox<TSelf> : IComparable<TSelf>
{
public static abstract TSelf Empty { get; }

public bool IsEmpty => Bounds.IsEmpty;

public YoloName Name { get; }
Expand Down
2 changes: 0 additions & 2 deletions Source/YoloV8/Parsing/RawBoundingBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

internal readonly struct RawBoundingBox : IRawBoundingBox<RawBoundingBox>
{
public static RawBoundingBox Empty { get; } = default;

public required int Index { get; init; }

public required YoloName Name { get; init; }
Expand Down
2 changes: 0 additions & 2 deletions Source/YoloV8/Parsing/RawObbBoundingBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

internal readonly struct RawObbBoundingBox : IRawBoundingBox<RawObbBoundingBox>
{
public static RawObbBoundingBox Empty { get; } = default;

public required int Index { get; init; }

public required YoloName Name { get; init; }
Expand Down

0 comments on commit 63b1602

Please sign in to comment.