|
|
List< ROI > | ROIs = new List<ROI>() |
| |
◆ Cell()
| BioLib.Cell.Cell |
( |
ROI | first | ) |
|
342 {
343 ROIs.Add(first);
344 }
◆ FromROIs()
| Cell BioLib.Cell.FromROIs |
( |
ROI | first, |
|
|
ROI[] | rois ) |
346 {
347 if (first == null)
348 throw new ArgumentNullException(nameof(first), "First ROI cannot be null.");
349
350 if (rois == null || rois.Length == 0)
351 throw new ArgumentNullException(nameof(rois), "ROIs array cannot be null or empty.");
352
353
354 var cell =
new Cell(first);
355
356
357 var unusedROIs = new List<ROI>(rois);
358
359 for (int i = 0; i < rois.Length; i++)
360 {
362 if (r.BoundingBox.IntersectsWith(first.GetCenter()))
363 {
364
365 }
366 }
367
368 return cell;
369 }
◆ Depth
334 {
335 get { return ROIs.Count; }
336 }
◆ Volume
| VolumeD BioLib.Cell.Volume |
|
getset |
338 {
339 get; set;
340 }
The documentation for this class was generated from the following file: