matlab - Image as a signal representation -


i have image a(rgb) , b gray scaled 256*256 size. how 1 represent gray scaled , rgb image signal x axis showing time , y axis amplitude or values? have attached picture of how want represent image signal. now, not know if possible same image. representation can continuous form. not know values represented on y axis, if gray levels difference between plot , histogram (which plot of gray levels vs number of pixels). objective of representation transmit image signal on wireless communication channel using hardware , show effects of channel noise , denoising mechanism @ receiver section.signal

i'm not sure why you'd want plot 2d signal (image) in 1d, can vectorize grayscale image. like...

vectorizedimg = img(:); plot(vectorizedimg); 

then, decide want rgb image, because that's 3-d matrix. e.g. take average, sum it, or whatever. you'll have 1-d plot, display not convey useful information user, :).


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -