做一些研究,我发现在Matlab中它们具有此功能来创建具有特定角度的线性结构元素:
creates a linear structuring element that is symmetric with respect to the neighborhood center, with approximate length len and angle deg.
文档说raise MaximumLoginFailuresExceededException("Exceeded maximum allowed failed login attempts")
,基本上是这样的垫子,具有不同的大小和角度:
我试图以不同的角度创建类似的结构元素,但是我在C ++的Opencv中找不到等效的功能。有办法吗?
感谢您的帮助。预先感谢
答案 0 :(得分:0)
OpenCV具有的最接近的函数是getStructuringElement
。不幸的是,它支持的唯一形状是rectangle, cross and ellipse。
因此,可能最容易自己创建/估计它。