Random Walker算法如何将灰度图像变成3D?

问题描述 投票:0回答:1
  • 我在scikit-image库中阅读了随机沃克算法的源代码,并在其中写着:

参数----------数据:array_like要分阶段分割的图像。灰度级data可以是2或三维

我的问题是:3D灰度图像是什么意思?Algorithm link

python-3.x image-processing scikit-image random-walk
1个回答
0
投票

2D图像是由(x,y)索引的图像。 3D图像是由(x,y,z)索引的图像。

© www.soinside.com 2019 - 2024. All rights reserved.