|
|
List< ROI > | ROIs = new List<ROI>() |
| |
◆ Cell()
| BioLib.Cell.Cell |
( |
ROI | first | ) |
|
331 {
332 ROIs.Add(first);
333 }
◆ FromROIs()
| Cell BioLib.Cell.FromROIs |
( |
ROI | first, |
|
|
ROI[] | rois ) |
335 {
336 if (first == null)
337 throw new ArgumentNullException(nameof(first), "First ROI cannot be null.");
338
339 if (rois == null || rois.Length == 0)
340 throw new ArgumentNullException(nameof(rois), "ROIs array cannot be null or empty.");
341
342
343 var cell =
new Cell(first);
344
345
346 var unusedROIs = new List<ROI>(rois);
347
348 for (int i = 0; i < rois.Length; i++)
349 {
351 if (r.BoundingBox.IntersectsWith(first.GetCenter()))
352 {
353
354 }
355 }
356
357 return cell;
358 }
◆ Depth
323 {
324 get { return ROIs.Count; }
325 }
◆ Volume
| VolumeD BioLib.Cell.Volume |
|
getset |
327 {
328 get; set;
329 }
The documentation for this class was generated from the following file: