Definition at line 50 of file QuPath.cs.
◆ FromROI()
Definition at line 61 of file QuPath.cs.
62 {
63 GeoJsonPoint g = new GeoJsonPoint();
64 PointD p = b.ToImageSpace(roi.PointsD[0]);
65 g.coordinates = new double[2] { p.X, p.Y };
66 g.type = "Point";
67 g.plane = new GeoJsonPlane();
68 g.plane.z = roi.coord.Z;
69 g.plane.c = roi.coord.C;
70 g.plane.t = roi.coord.T;
71 return g;
72 }
◆ coordinates
| double [] BioLib.QuPath.GeoJsonPoint.coordinates |
|
getset |
◆ plane
◆ type
| string BioLib.QuPath.GeoJsonPoint.type |
|
getset |
The documentation for this class was generated from the following file: