I use Phyton, include opencv and numpy.
i'm new in this world.
I just wanna write mid point, and on other code wanna re use from this point, but why after i use, it's change value between x and y..
midX = int(np.mean(MatrixX))
midY = int(np.mean(MatrixY))
#minY = np.min(MatrixY)
img[midX,midY] = [0,0,0]
#img[midX,minY] = [0,0,255]
print "here the problem :", midX,midY
and this for more clear problem..
I'm strongly believe midX must be 307 and midY is 229. and i use it in set black color with [0,0,0] but after i set color black, the value x and y is changed("here the problem"), idk if i missing something here,,