필터 지우기
필터 지우기

How to convert pixel color white to black and other color to white

조회 수: 1 (최근 30일)
lina
lina 2012년 12월 16일
dear all,
I need the information how to convert the white pixel to black, and convert the other colors in to white
thanks
  댓글 수: 5
lina
lina 2012년 12월 16일
okay sorry if my question not clear, I want to change: (255,255,255) into black and other colors: (0<=color<255,0<=color<255,0<=color<255) into white thanks
Image Analyst
Image Analyst 2012년 12월 16일
Are you sure you have a true color image and not a gray scale uint8 image?

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

답변 (2개)

Walter Roberson
Walter Roberson 2012년 12월 16일
newImage = ~all(Image == 255,3);

Image Analyst
Image Analyst 2012년 12월 16일
On the wild chance that it's a gray level image...
binaryImage = grayScaleImage < 255;

Community Treasure Hunt

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

Start Hunting!

Translated by