matlab 26灰度中的三维连通性分析
我们正在研究三维灰度图像。
我们收到了一个处理医学图像的练习,其中用户按下特定位置,我们需要绘制 26 度的邻居,这些邻居的条件是它们接近所选像素颜色的 10%。
我们想知道 matlab 中是否有算法可以帮助解决这个练习。
We are working on a grayscale image in three dimensions.
We received an exercise in processing medical images where the user presses a particular place and we need to paint the 26-degree neighbors who have the condition that they are close to ten percent of the selected pixel's color.
We wanted to know if there is an algorithm in matlab help to solve this exercise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只是迭代包含 26 度邻域的体积并决定是否绘制像素的问题吗?
在 Matlab 中,您应该能够对子体积进行索引,然后直接应用阈值标准。
Is this just a matter of iterating through the volume that encompasses the 26-degree neighborhood and deciding whether or not to paint the pixel?
In Matlab, you should be able to index the sub-volume and then directly apply the thresholding criterion.