I am doing my PhD in Clinical Neuropsychology; I had someone helping me analyse images (.jpg pictures) in Mathematica, but it turns out this person made some really bad decisions, and well, now I have to do it myself. But, I have no idea.
Basically, what I want is to analyze the JPEG image, get a RGB histogram, and get the values for the mean and standard deviation of this histogram.
Using ImageHistogram [[*image*], Appearance, -> "Separated"] works fine, but I can't figure out the next step, turning the histogram plot into numbers.
How can I do that?
Thank you for helping!




ImageData[]to get the values being binned for the histograms... – J. M.'s missing motivation Oct 12 '12 at 13:27Interleavingoption... – J. M.'s missing motivation Oct 12 '12 at 13:40image = ExampleData[{"TestImage", "Lena"}]; data = ImageData[image]; {Mean[#], StandardDeviation[#]} & /@ Transpose[Flatten[data, 1]]. – b.gates.you.know.what Oct 12 '12 at 13:46