|
|
List< ROI > | ROIs = new List<ROI>() |
| |
◆ Cell()
| BioLib.Cell.Cell |
( |
ROI | first | ) |
|
319 {
320 ROIs.Add(first);
321 }
◆ FromROIs()
| Cell BioLib.Cell.FromROIs |
( |
ROI | first, |
|
|
ROI[] | rois ) |
323 {
324 if (first == null)
325 throw new ArgumentNullException(nameof(first), "First ROI cannot be null.");
326
327 if (rois == null || rois.Length == 0)
328 throw new ArgumentNullException(nameof(rois), "ROIs array cannot be null or empty.");
329
330
331 var cell =
new Cell(first);
332
333
334 var unusedROIs = new List<ROI>(rois);
335
336 for (int i = 0; i < rois.Length; i++)
337 {
339 if (r.BoundingBox.IntersectsWith(first.GetCenter()))
340 {
341
342 }
343 }
344
345 return cell;
346 }
◆ Depth
311 {
312 get { return ROIs.Count; }
313 }
◆ Volume
| VolumeD BioLib.Cell.Volume |
|
getset |
315 {
316 get; set;
317 }
The documentation for this class was generated from the following file: