I have an UInt16
array representing an image and width/height for it, and I would like to turn this into an EMGU image in the least painful way possible.
EMGU has an Image
constructor that looks promising, which is described here.
But I can't understand how to format my data, it says that the first dimension is height, but why would I need a whole dimension to describe ONE number? Clearly there is something I don't understand. Something like Image(ushort[], height, width)
makes more sense to me.