Replace elements in binary matrix

조회 수: 2 (최근 30일)
Abdul Salam
Abdul Salam 2019년 6월 29일
댓글: Abdul Salam 2019년 6월 29일
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일
% B original binary matrix
% B_ new binary matrix
B_ = ~B;

추가 답변 (1개)

Walter Roberson
Walter Roberson 2019년 6월 29일
B_ = imcomplement(B);

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by