background of an image to 0

6 vues (au cours des 30 derniers jours)
AAS
AAS le 22 Mai 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 commentaires
AAS
AAS le 22 Mai 2019
There are multiple images- hence I need a way to compare between these images
Luis J Gilarranz
Luis J Gilarranz le 23 Mai 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.

Connectez-vous pour commenter.

Réponses (1)

Luis J Gilarranz
Luis J Gilarranz le 22 Mai 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;

Catégories

En savoir plus sur Biomedical Imaging dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by