PS I:\18Breakageratecalculation\mask-slic use\maskSLIC-master> & C:/Users/win10/AppData/Local/Programs/Python/Python311/python.exe "i:/18Breakageratecalculation/mask-slic use/maskSLIC-master/test.py" Traceback (most recent call last): File "i:\18Breakageratecalculation\mask-slic use\maskSLIC-master\test.py", line 8, in <module> import maskslic as seg File "i:\18Breakageratecalculation\mask-slic use\maskSLIC-master\maskslic\__init__.py", line 1, in <module> from .slic_superpixels import slic File "i:\18Breakageratecalculation\mask-slic use\maskSLIC-master\maskslic\slic_superpixels.py", line 21, in <module> from maskslic.processing import get_mpd ModuleNotFoundError: No module named 'maskslic.processing'
时间: 2023-08-02 22:07:15 浏览: 199
教会你自己定制 VMware vSphere ESXi 6.7/7.0 所有版本 SLIC2.6
这个错误提示告诉我们在你的代码中有一个名为 `maskslic.processing` 的模块没有被找到,可能是因为你的 Python 环境中没有安装这个模块。你可以尝试通过以下命令来安装需要的模块:
```
pip install maskslic
```
如果你已经安装了这个模块,可以尝试更新模块或检查模块的版本是否与你的代码兼容。
阅读全文