Skip to content

Commit

Permalink
feat. adapt to yolo 160
Browse files Browse the repository at this point in the history
  • Loading branch information
Chen-Yulin committed Apr 14, 2024
1 parent f7f7fec commit 6a2de05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Script/Detection/NN/YOLOv8OutputReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public class YOLOv8OutputReader
public static float DiscardThreshold = 0.1f;
protected const int ClassesNum = 80;
const int BoxesPerCell = 525;
const int InputWidth = 240;
const int InputHeight = 240;
const int InputWidth = 160;
const int InputHeight = 160;

public IEnumerable<ResultBox> ReadOutput(Tensor output)
{
Expand Down

0 comments on commit 6a2de05

Please sign in to comment.