How to exclude NaN values from evaluation on raster data

조회 수: 3 (최근 30일)
Karolina
Karolina 2015년 8월 5일
편집: Karolina 2015년 8월 7일
I have a raster which have NaN values. I would like to evaluate graythresh for my data, but the NaN values are taken into account and as a results I have 0 (zero). Is there a way to exclude NaN values from evaluation or remove them from data?

채택된 답변

Sean de Wolski
Sean de Wolski 2015년 8월 5일
x_no_nans = x(~isnan(x))
  댓글 수: 4
Sean de Wolski
Sean de Wolski 2015년 8월 6일
What is EM, the effectiveness metric output? Otsu is not great for all images, it's really only for when there is an object in the foreground.
Karolina
Karolina 2015년 8월 7일
편집: Karolina 2015년 8월 7일
I have two datasets where the threshold is zero. EM is for these data: 0.9862, and 0.5902

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by