Scatter plot for two 3D images

1 回表示 (過去 30 日間)
Joaquim
Joaquim 2014 年 8 月 1 日
コメント済み: Image Analyst 2014 年 8 月 4 日
How can i do a scatter plot applied to two 3D images? I mean, I want to compare the values of 2 3D-images putting them on a scatter plot? Anyone could help me?
  3 件のコメント
Ashish Gudla
Ashish Gudla 2014 年 8 月 4 日
If by putting on scatter plot and compare you mean you want to plot both onto a single figure you can use "hold on" between your scatter3 calls which would plot the points onto the same axes.
Example:
>> scatter3(x1,y1,z1);
>> hold on
>> scatter3(x2,y2,z2);
Image Analyst
Image Analyst 2014 年 8 月 4 日
You would not plot every voxel value with a scatter plot. So...
What do the three dimensions represent? RGB values? Distances along the x,y,z directions? Something else??? How many data points are to be plotted?

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by