필터 지우기
필터 지우기

how to increase a pixel value

조회 수: 1 (최근 30일)
Vishnu M S
Vishnu M S 2013년 1월 18일
I have an M X N image named H. How can I increase the value of a particular pixel? Please help

채택된 답변

Algorithms Analyst
Algorithms Analyst 2013년 1월 18일
you need to find the location of that pixel and then need some operations. like
[Rows Cols NumberofColorChannels]=size(H) for i=1:Rows for j=1:Cols
%Now find the location e.g you want to change the vale at 3 row and 3col initially its 2 then u can
if i==3 && j==3 do it further
  댓글 수: 2
Vishnu M S
Vishnu M S 2013년 1월 18일
How can I increase the pixel value at a particular location?(say, I need to find the pixel at 5th row and 7th column and I need to increase that pixel value.)
Walter Roberson
Walter Roberson 2013년 1월 18일
H(5,7) = H(5,7) + 1; %for example

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by