Read your input images before combining them. That is proper IM 6 syntax.
OK, so you have 3 separate grayscale images. Have you tried
Code: Select all
convert -quiet 4.tif 3.tif 2.tif -set colorspace sRGB -combine -depth 16 result.tif
However, using identify -verbose 4.tif, I see that your input data is 16/8-bits. That means that you extracted the data as 8-bits, but are storing it as 16 bits. So there are really only 8bits worth of grayscale information, which should be scaled to span the 16-bit range. So the software that you used to extract the channels and store in tif format converted the data to 8bits.
So there is really no point in saving as 16 bits. You might as well just use
Code: Select all
convert -quiet 4.tif 3.tif 2.tif -set colorspace sRGB -combine -depth 8 result.tif
This works for me, but your 4,3,2 channels are practically identical and so the result looks grayscale.