Spaces:
Runtime error
Runtime error
File size: 273 Bytes
51f6859 |
1 2 3 4 5 6 7 |
# Copyright (c) OpenMMLab. All rights reserved.
# A custom value to distinguish instance ID and category ID; need to
# be greater than the number of categories.
# For a pixel in the panoptic result map:
# pan_id = ins_id * INSTANCE_OFFSET + cat_id
INSTANCE_OFFSET = 1000
|