ImageMagick 6.8.9-9 Q16 x86_64 2016-11-29
OS: Bash on Ubuntu on Windows (Microsoft's Windows 10's new Linux interface see
http://www.howtogeek.com/265900/everyth ... ash-shell/ )
ok agreed colors is probably better but depth is faster. Once it's working will increase the colors to 256.
milesS@W541:~$ convert rose: -depth 1 -format %c histogram:info:-
1343: ( 0, 0, 0) #000000 black
41: ( 0, 0,255) #0000FF blue
170: ( 0,255, 0) #00FF00 lime
7: ( 0,255,255) #00FFFF cyan
1249: (255, 0, 0) #FF0000 red
20: (255, 0,255) #FF00FF magenta
41: (255,255, 0) #FFFF00 yellow
349: (255,255,255) #FFFFFF white
Yes, including black gives 9.
2D/3D, sorry we are talking across different areas of expertise. It's multidimensional data displayed as a 2D image
Ok that's the easy questions out the way
My images are a series of satellite images every ten minutes. I'm then doing a series of image differences, Image(now) and Image(-1 hour), using your script
viewtopic.php?t=15584#p55272. I want to know what changed and when? If I look in the visible spectrum, for instance, white are clouds, blue/black are thunderstorms. So if I plot different images (10-minute timesteps) as columns and histograms vertically I get the percentage cloud/thunderstorm in an easy to read single image. I want to retain the color in the vertical but percentages must be easily discernable as well. In my example, I would like to see how the clouds change from predominantly white to black and what time duration this occurred and how often this occurred. Looking at the multi-image histogram I may notice peaks of color developing e.g. the changing yellow of my earlier data, this could be indicative of a dust storm. I could then get the column, convert this to an image date and then look at that specific image to determine the magnitude and location of the dust storm.
I'm thinking that I may have to put two vertical bars on the left and right edge showing the color and a grayscale middle section as it is important to observe if the color starts changing e.g. blue to black. If I'm simultaneously changing intensity and color than those subtle differences may get lost.