I have a binary image and want to replace all the zeroes with 1s and all the 1s with zeroes. ( so that the binary image is totally opposite to original image). How can i do that?

 채택된 답변

Michal
Michal 2019년 6월 29일
편집: Michal 2019년 6월 29일

0 개 추천

% B original binary matrix
% B_ new binary matrix
B_ = ~B;

추가 답변 (1개)

제품

릴리스

R2018b

태그

질문:

2019년 6월 29일

댓글:

2019년 6월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by