extract intensity pixels

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

Tulips
Tulips 2012년 5월 28일
also how to make it as a feature vector so that I can used it in nn script

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

 채택된 답변

Walter Roberson
Walter Roberson 2012년 5월 28일

0 개 추천

extracted_pixels = YourArray( sub2ind( size(YourArray), RowList, ColumnList ) );

댓글 수: 3

Tulips
Tulips 2012년 5월 28일
YourArray must be in matrix form?how to make it for mare than one extracted pixels.thanks in advance
Walter Roberson
Walter Roberson 2012년 5월 28일
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 2012년 5월 30일
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

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

추가 답변 (1개)

Mythili Sukumaran
Mythili Sukumaran 2012년 10월 17일

0 개 추천

Can anyone help me form a feature vector for every pixel,based on the intensity,color,orientation and scale??

댓글 수: 1

Image Analyst
Image Analyst 2012년 10월 17일
How does a pixel have an orientation and scale?

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

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by