You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
1.2 KiB

# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import numpy as np
import cv2
def prepro_mask(mask: np.ndarray):
mask_shape = mask.shape
if len(mask_shape) != 2:
mask = mask[..., 0]
mask = mask.astype("uint8")
mask = cv2.medianBlur(mask, 5)
class_num = len(np.unique(mask))
if class_num != 2:
_, mask = cv2.threshold(mask, 0, 255, cv2.THRESH_BINARY |
cv2.THRESH_OTSU)
mask = np.clip(mask, 0, 1).astype("uint8") # 0-255 / 0-1 -> 0-1
return mask
def calc_distance(p1: np.ndarray, p2: np.ndarray) -> float:
return float(np.sqrt(np.sum(np.power((p1[0] - p2[0]), 2))))