Community Profile

photo

Erum


Sardar Bahadur Khan Women's University Quetta

Active since 2014

Professional Interests: Image segmentation

Statistics

  • Thankful Level 1
  • First Answer

View badges

Content Feed

View by

Answered
howcan count just red pixels in matlab image proccessing ?
for red rpcount rpcount=0; for i=1:width for j=1:height if image(i,j,1)==255&image(i,j,2)==0&image(i,j,3)==0 ...

9 years ago | 0

Answered
howcan count just red pixels in matlab image proccessing ?
wpcount: to count white pixels. red is similar wpcount=0; for i=1:width for j=1:height if image(i,j,:)==255 ...

9 years ago | 0

Question


How indImage becomes an array of M*N dimensions in the code indImage=size(M,N) or later in loop?
in the code below, i want to know that how indImage becomes an array of dimensions M*N. Consider M=192 and N=395. size(M,N) at l...

9 years ago | 1 answer | 0

1

answer

Question


What this equation would calculate? H1*H2'+0.000001, where H1 and H2 are arrays or represent histograms. Explain how it will calculate
What this equation would calculate? H1*H2'+0.000001, where H1 and H2 are arrays (or represent histograms). Please Explain how it...

9 years ago | 1 answer | 0

1

answer

Question


What does this code mean set(0,'Units','Pixels');
What does this code mean set(0,'Units','Pixels');

9 years ago | 2 answers | 0

2

answers