background of an image to 0

6 visualizaciones (últimos 30 días)
AAS
AAS el 22 de Mayo de 2019
Comentada: Luis J Gilarranz el 23 de Mayo de 2019
I have a 2d image( from microscope of cells) and I am trying to quantify intensity of fluoroscence. However i did not take a background fluoro image and was wondering if there is any way to polyfit the image to bring the offset to 0.
  2 comentarios
AAS
AAS el 22 de Mayo de 2019
There are multiple images- hence I need a way to compare between these images
Luis J Gilarranz
Luis J Gilarranz el 23 de Mayo de 2019
Depending on what the images represent you could normalize them (dividing all the values by the maximum fluorescence value recorded) and then apply the threshold I was mentioning. However, if you have a treatment that affect the maximum fluorescence values then you could not do this and you could not compare across treatments. It would help if you put more information.

Iniciar sesión para comentar.

Respuestas (1)

Luis J Gilarranz
Luis J Gilarranz el 22 de Mayo de 2019
Testing different thresholds to see which one removes the background without removing any cell...
%Identify the pixels abobe the threshold
Mask = Image>Threshold;
%Set the background to zero
NewImage = Image.*Mask;

Categorías

Más información sobre Biomedical Imaging en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by