Skip to content

Commit

Permalink
fix: SubtractMaskForEach - invalid logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ltdrdata committed Apr 6, 2024
1 parent 8d4e244 commit b63b689
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/impact/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os


version_code = [4, 86, 1]
version_code = [4, 86, 2]
version = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')

dependency_version = 20
Expand Down
2 changes: 1 addition & 1 deletion modules/impact/impact_pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -1627,7 +1627,7 @@ def doit(self, base_segs, mask_segs):
item = SEG(bseg.cropped_image, cropped_mask1, bseg.confidence, bseg.crop_region, bseg.bbox, bseg.label, None)
result.append(item)
else:
result.append(base_segs)
result.append(bseg)

return ((base_segs[0], result),)

Expand Down

0 comments on commit b63b689

Please sign in to comment.