Matlab指向多边形

时间:2015-04-04 17:53:56

标签: javascript c matlab

您在此list上找到了此代码,需要帮助将其转换为Matlab。

int pnpoly(int nvert, float *vertx, float *verty, float testx, float testy)
{
  int i, j, c = 0;
  for (i = 0, j = nvert-1; i < nvert; j = i++) {
    if ( ((verty[i]>testy) != (verty[j]>testy)) &&
     (testx < (vertx[j]-vertx[i]) * (testy-verty[i]) / (verty[j]-verty[i]) + vertx[i]) )
       c = !c;
  }
  return c;
}

nvert :多边形中的顶点数。是否在最后重复第一个顶点。

vertx,verty :包含多边形顶点的x坐标和y坐标的数组。

testx,testy :测试点的X坐标和y坐标。 (这来自另一个Stack Overflow问题:Point in Polygon aka hit test

JavaScript版本:

function insidePoly(poly, pointx, pointy) {
    var i, j;
    var inside = false;
    for (i = 0, j = poly.length - 1; i < poly.length; j = i++) {
        if(((poly[i].y > pointy) != (poly[j].y > pointy)) && (pointx < (poly[j].x-poly[i].x) * (pointy-poly[i].y) / (poly[j].y-poly[i].y) + poly[i].x) ) inside = !inside;
    }
    return inside;
}

这将如何转换为 Matlab

function insidePoly = inpoly(poly, pointx, pointy)
% Code
% return inside

1 个答案:

答案 0 :(得分:2)

Matlab附带了一个内置函数inpolygon,它似乎完全符合您的要求。无需重新实现它。