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