我有一张图片和属于这张图片的点。我添加了包含属于下图的点的图像:
我的代码摘要如下:
PPArray : array of TPoint;`
.
.
PPArray := FindCellPolygonPoints(CenterP,BrownMask, 40);
ImageEnVect1.SetObjPolylinePoints(???,PPArray);
我如何使用此功能或者您可以通过其他方法使用这些点来帮助我创建多边形吗?
答案 0 :(得分:0)
我通过添加到代码hobj:= ImageEnVect1.AddNewObject(iekPOLYLINE, Blob.BoundingBox, clGreen);
部分解决了我的问题。谢谢你的帮助。