background of an image to 0

조회 수: 3 (최근 30일)
AAS
AAS 2019년 5월 22일
댓글: Luis J Gilarranz 2019년 5월 23일
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
AAS
AAS 2019년 5월 22일
There are multiple images- hence I need a way to compare between these images
Luis J Gilarranz
Luis J Gilarranz 2019년 5월 23일
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.

댓글을 달려면 로그인하십시오.

답변 (1개)

Luis J Gilarranz
Luis J Gilarranz 2019년 5월 22일
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;

카테고리

Help CenterFile Exchange에서 Biomedical Imaging에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by