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.
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
Post a Comment