Skip to content

Commit

Permalink
fix bounds types
Browse files Browse the repository at this point in the history
  • Loading branch information
Czaki committed Sep 3, 2024
1 parent d090b8b commit 3af5133
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/PartSegCore/segmentation/threshold.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,8 +413,8 @@ class MaximumDistanceWatershedParams(BaseModel):
minimum_border_distance: int = Field(
10,
title="Border Radius",
ge=0.0,
le=100.0,
ge=0,
le=100,
description="Minimum distance of local maxima from the border. To avoid artifacts",
)

Expand Down

0 comments on commit 3af5133

Please sign in to comment.