摘要: from queue import PriorityQueue import numpy as np class Pixel(object): """ 像素信息,包含像素的坐标和梯度 """ def __init__(self, gradient, location): self.gradient 阅读全文
posted @ 2022-06-18 11:40 BNTU 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 形态学重建 测地膨胀 def dilate_geo(marker: np.ndarray, ksize: int, mask: np.ndarray) -> np.ndarray: """ 灰度级测地膨胀(膨胀形态学重建):$(f\oplus{B})\wedge{g}$ :param marker: 阅读全文
posted @ 2022-06-18 11:36 BNTU 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 矿物的成因 分类的依据:地质作用的性质和能量来源 \[ 形成矿物的地质作用 \begin{cases} 内生作用 \begin{cases} 岩浆作用\\ 伟晶作用\\ 热液作用\\ 火山作用 \end{cases} \\\\ 外生作用 \begin{cases} 风化作用 \begin{cases 阅读全文
posted @ 2022-06-18 10:39 BNTU 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 矿物加工学的基本概念 地层组成图 矿体是矿床的基本单位,也是矿山开采的对象。 矿物加工(mineral processing)的基本概念 利用矿物的物理化学性质差异,借助各种分离、富集、提纯手段和方法,将矿石中有用矿物和脉石分离,并达到有用矿物相对富集的加工利用方法。 矿物加工的目的 分离、富集与提 阅读全文
posted @ 2022-06-18 10:34 BNTU 阅读(305) 评论(0) 推荐(0) 编辑