【发布时间】:2020-02-29 11:48:15
【问题描述】:
使用这个 Imagick cli 命令:
magick model.png -canny 0x0+1%+10% -negate -blur 3x.7 -solarize 50% -level 50%,0 model_canny.png
是否可以获得牙弓中牙齿的位置/大小?它不一定是完美的。即使它在牙弓中检测到几颗牙齿,我也能很好地了解它是如何工作的。到目前为止,我已经尝试使用 connected-components 参数,它给了我数千个结果,这显然是不正确的。这是我到目前为止所做的:
magick model_canny.png -fuzz 5% -define connected-components:verbose=true -connected-components 4 objects.png
也可以去除牙齿内的随机黑线吗?任何帮助将不胜感激..
【问题讨论】:
标签: image image-processing object-detection imagick connected-components