I'm really stumped on this one. I have an image that was [BGR2GRAY]'d earlier in my code, and now I need to add colored circles and such to it. Of course this can't be done in a 1 channel matrix, ans I can't seem to turn the damned thing back into 3.
numpy.dstack() crashes everything
GRAY2BGR does not exist in opencv2
cv.merge(src1, src2, src3, dst) has been turned into cv2.merge(mv) where mv = "a vector of matrices", whatever that means.
Any ideas?
