extract intensity pixels

2 views (last 30 days)
Tulips
Tulips on 28 May 2012
hi sir, can I know how to make/feed the input of extracted intensity pixels in neural network.as far as I am concerned, the extracted pixels are in row,column.then how to make it as input if I have more 6 patterns. pls explain the techniques.thanks for ur help!
  1 Comment
Tulips
Tulips on 28 May 2012
also how to make it as a feature vector so that I can used it in nn script

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 28 May 2012
extracted_pixels = YourArray( sub2ind( size(YourArray), RowList, ColumnList ) );
  3 Comments
Walter Roberson
Walter Roberson on 28 May 2012
It does not have to be in matrix form, but you did say the pixels were in row, column form which does tend to imply matrix form, as otherwise you would only have one index.
The above code works for multiple indices. Example,
extracted_pixels = YourArray( sub2ind( size(YourArray), [2 7 8], [1 1 4] ) )
would extract (2,1) and (7,1) and (8,4)
Tulips
Tulips on 30 May 2012
sir,I get u have said.However, i m not looking for the extracted pixel.i just want to know how to make the 20x20 pixels as a input of a vector so that this input can be used to be trained in neural network.thanks

Sign in to comment.

More Answers (1)

Mythili Sukumaran
Mythili Sukumaran on 17 Oct 2012
Can anyone help me form a feature vector for every pixel,based on the intensity,color,orientation and scale??
  1 Comment
Image Analyst
Image Analyst on 17 Oct 2012
How does a pixel have an orientation and scale?

Sign in to comment.

Categories

Find more on Recognition, Object Detection, and Semantic Segmentation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!