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 CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by