courbe de progression du pixel

2 visualizaciones (últimos 30 días)
Amal Felhi
Amal Felhi el 7 de Abr. de 2021
Comentada: Rik el 10 de Abr. de 2021
Bonjour à tous j'ai en entrée 25 images IRM(dicom).
je metsen un point fixe (x,y) et je garde l'emplacement de ce pixel pour les autres images.
je veux tracer la courbe de progression de ce pixel. comment programmer ça?
Hello everyone, I have 25 MRI images (dicom) as input. I put a fixed point (x, y) and I keep the location of this pixel for the other images. I want to plot the progression curve of this pixel. how to program that?
  20 comentarios
Amal Felhi
Amal Felhi el 9 de Abr. de 2021
my problem the update of the 25 images on the popmenu.
can you send to me the code of the update?
Rik
Rik el 10 de Abr. de 2021
You can either use imshow (use the axes object handle), or you can set the CData property of an image object (which is the output of the imshow function).

Iniciar sesión para comentar.

Respuesta aceptada

Rik
Rik el 7 de Abr. de 2021
%load an example image
S=load('mri');
I=squeeze(S.D);
x=randi(size(I,1));y=randi(size(I,2));
intensity=squeeze(I(x,y,:));
plot(intensity)
  4 comentarios
Amal Felhi
Amal Felhi el 7 de Abr. de 2021
votre code me donne ce resultat:
Rik
Rik el 7 de Abr. de 2021
You should put in your own image and coordinates. It can happen that an x-y-combination is 0 for all z values. This will happen around the edge. Unfortunately, this example image is about half edge, so if you want to use random coordinates, you will get this line about half the time.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos


Versión

R2014b

Community Treasure Hunt

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

Start Hunting!

Translated by