加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
segmentation_utils.py 623 Bytes
一键复制 编辑 原始数据 按行查看 历史
LEUNG, Wing Kit 提交于 2023-06-23 11:13 . fix import np
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
import cv2
import os
import numpy as np
class Segmenter():
def __int__(self):
return
def run(self, mask_file=None):
return (cv2.imread(mask_file, -1)>0).astype(np.uint8)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化