i am doing a project on DNA microarray image processing....

I have to perform gridding step. For that, i have to crop the input microarray image, convert 2 gray scale & then perform row & column average calculation & then display that as a signal. I am done with cropping & conversion to gray scale. I am stuck with row & column average calculation of sub-microarray image separately. Next i have 2 do autocorrelation & top hat filtering on the averaged signal. Can anyone plz tel me how to find average of rows & columns & plot it? It'l b of gr8 help....

回答(1 个)

plot(mean(I, 1)) % rows
plot(mean(I, 2)) % columns

2 个评论

thank u for ur immediate reply...i'l try with this command..
i tried with plot command..no output is getting displayed...

请先登录,再进行评论。

提问:

2013-1-16

Community Treasure Hunt

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

Start Hunting!

Translated by