I have an image and points that belong this image. I added image with points that belong the image below:
My code's summary is added below:
PPArray : array of TPoint;`
.
.
PPArray := FindCellPolygonPoints(CenterP,BrownMask, 40);
ImageEnVect1.SetObjPolylinePoints(???,PPArray);
How do i use this function or could you help me to create polygon by using these points with another method?
I solved my question by adding to my codehobj:= ImageEnVect1.AddNewObject(iekPOLYLINE, Blob.BoundingBox, clGreen);
part. Thanks for your helps.