Hello everyone.
I have a grid excel file with 300x300 pixels (cell). Each pixel represents different intensity value range from 0 to 0.1. I would like to threshold this grid so that any pixel value lower than 0.04 will be equal to 0. Does anyone know how to do that.
Thank you.

 채택된 답변

Cris LaPierre
Cris LaPierre 2020년 8월 13일

0 개 추천

I'm assuming you've loaded the file into MATLAB. Use logical indexing to set any value less than 0.04 equal to zero.
Data(Data<0.04)=0;

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기

질문:

2020년 8월 13일

댓글:

2020년 8월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by