How to put voxel intensity value in the plotting

1 回表示 (過去 30 日間)
Amit Chakraborty
Amit Chakraborty 2022 年 2 月 3 日
回答済み: Chetan 2023 年 11 月 16 日
My question is that here we can see the three different co-ordinates but I want to show the voxel intensity value also with this . Can any one suggest me how to do it ?

回答 (1 件)

Chetan
Chetan 2023 年 11 月 16 日
I understand you're looking to plot 3D data and display voxel intensity in the tooltip.
You can achieve this with MATLAB's `datacursormode` function. Here's a brief example:
% Sample data
x = rand(100,1);
y = rand(100,1);
z = rand(100,1);
v = rand(100,1)*100; % Voxel intensity
% 3D scatter plot
scatter3(x, y, z, 'filled');
% Customize tooltip to include voxel intensity
h = datacursormode;
h.UpdateFcn = @(~,eventObj) {['X: ',num2str(eventObj.Position(1))], ...
['Y: ',num2str(eventObj.Position(2))], ...
['Z: ',num2str(eventObj.Position(3))], ...
['Voxel Intensity: ',num2str(v(eventObj.DataIndex))]};
For further details, refer to the following MathWorks documentation:
Hope it helps !

カテゴリ

Help Center および File ExchangeFeature Detection and Extraction についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by