boundaries = measure.find_contours(BO_skel, 0.5, 'high', fully_connected='low', positive_orientation='low'), TypeError: find_contours() got multiple values for argument 'fully_connected'
时间: 2023-12-25 18:07:03 浏览: 141
NX二次开发UF-CAMBND-ask-boundaries 函数介绍
这个错误通常是因为您在函数调用中多次指定了同一个参数。在这个例子中,您指定了两次参数 `fully_connected`。
您可以尝试使用以下代码来解决这个问题:
```
boundaries = measure.find_contours(BO_skel, 0.5, mode='high', fully_connected='low', orientation='low')
```
在这个例子中,我将 `positive_orientation` 参数改为 `orientation` 参数,并将其放在了 `mode` 参数之后,这样就不会再次指定 `fully_connected` 参数了。
阅读全文