由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问个算法的问题
相关主题
问个面试题目Java GC question
practical advice on Scala紧急求助
曲线光滑,什么算法最好?请问Linux底下有没有最简易的show 2D x-y curve的工具
[合集] 这个问题怎么做好?(word sqaure)JFreeChart一编译错误 (转载)
请教一个快速图像配准的问题How to intercept a method call (转载)
问两个算法题, 没什么头绪如果一个曲线是另一个的放大,curve fitting算法还能检测出来吗 (转载)
Workflow design请教How to find the best fit dimension of Polynomial interpolation/curve fitting ?
后端为什么不用JavaScala的思路
相关话题的讨论汇总
话题: line话题: curves话题: point话题: horizontal
进入Programming版参与讨论
1 (共1页)
x*********l
发帖数: 594
1
请教大家一个算法的问题。在一个图像里有很多互相不相交的封闭曲线(任意形状),
如何判断任意一个点是在这些封闭曲线内,还是在曲线外?
c*****t
发帖数: 1879
2
easy. There is a scan line method.
Basically, let a horizontal line (or any arbitrary line, but horizontal
is easier computationally) go through the point. Then count the # of
interceptions of the curves on this line. If the point is inside the
curves, then the # of interceptions to the left of the point should be
odd.



【在 x*********l 的大作中提到】
: 请教大家一个算法的问题。在一个图像里有很多互相不相交的封闭曲线(任意形状),
: 如何判断任意一个点是在这些封闭曲线内,还是在曲线外?

g*****g
发帖数: 34805
3
任意画条线,数交点单双。



【在 x*********l 的大作中提到】
: 请教大家一个算法的问题。在一个图像里有很多互相不相交的封闭曲线(任意形状),
: 如何判断任意一个点是在这些封闭曲线内,还是在曲线外?

x*********l
发帖数: 594
4
3x

【在 c*****t 的大作中提到】
: easy. There is a scan line method.
: Basically, let a horizontal line (or any arbitrary line, but horizontal
: is easier computationally) go through the point. Then count the # of
: interceptions of the curves on this line. If the point is inside the
: curves, then the # of interceptions to the left of the point should be
: odd.
:
: ,

l******u
发帖数: 1174
5
Sounds good. The only thing is that one needs to be careful in determining
if the line is intersecting, not just tangent, with the curve.

【在 c*****t 的大作中提到】
: easy. There is a scan line method.
: Basically, let a horizontal line (or any arbitrary line, but horizontal
: is easier computationally) go through the point. Then count the # of
: interceptions of the curves on this line. If the point is inside the
: curves, then the # of interceptions to the left of the point should be
: odd.
:
: ,

1 (共1页)
进入Programming版参与讨论
相关主题
Scala的思路请教一个快速图像配准的问题
页面上有没可能判断访问者用没用代理服务器?问两个算法题, 没什么头绪
Learning Curves (for different programming languages) (转载)Workflow design请教
Go再不靠谱也比scala强后端为什么不用Java
问个面试题目Java GC question
practical advice on Scala紧急求助
曲线光滑,什么算法最好?请问Linux底下有没有最简易的show 2D x-y curve的工具
[合集] 这个问题怎么做好?(word sqaure)JFreeChart一编译错误 (转载)
相关话题的讨论汇总
话题: line话题: curves话题: point话题: horizontal