本文介绍了图像骨架中的连接点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
图像骨架中的连接点是什么意思?我正在使用opencv和c ++开发代码源来检测图像中的主要局部连接点。非常感谢advace。
What is the meaning of a junction point in image skeleton ? I am using opencv and c++ to develop a code source to detect the main local junction point in the image .Many thanks in advace .
推荐答案
连接点通常是两条线的交点。看到此图片:
A junction point is usually the intersection of two lines. See this image:
骷髅指(通常)到图像的骨架化。本文很有用:
Skeleton refers (usually) to the skeletonization of an image. this article is useful:
。
所以我认为他们要求你做的是,让图像找到它的骨架然后弄清楚哪个像素包含骨架线的交集。
So I think what they are asking you do is, to take the image find its skeleton then figure out which pixel contain the intersection of the lines of the skeleton.
这篇关于图像骨架中的连接点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!