process a large stack of 2-d images
1 次查看(过去 30 天)
显示 更早的评论
how is it possible to use bwconncomp or in general process a stack of 2000 images with the size of 2000x2000, I dont think block processing would work in this case..
0 个评论
回答(1 个)
Matt J
2013-3-9
bwconncomp will accept a 3D stack directly. You can specify 2D connectivity with the conn argument.
7 个评论
Matt J
2013-3-10
编辑:Matt J
2013-3-10
I meant, how sparse is BW as a volume? In other words, what is
density = nnz(BW)/2000^3
I assume you don't have enough memory to hold BW as a volume, but the density is something you could easily calculate by looping over the slices. If BW is not sparse (low density), you might not even have enough memory to hold the result of the connectivity map.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 3-D Volumetric Image Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!