Entering edit mode
atbest09
•
0
@atbest09-15478
Last seen 6.2 years ago
Does any one know how to filter objects overlapping with another channel using EBImage? For example, I have red and green channels with the following code. Now how can I get the red cells that overlap with green cells? Thanks.
x <- readImage(system.file('images', 'nuclei.tif', package='EBImage')) x <- thresh(x, w = 15, h = 15, offset = 0.1) red <- x[,,1] green <- x[,,2]