I have one image and one co-ordinate (X, Y). How to draw a point with this co-ordinate on the image. I want to use Python OpenCV.
解决方案
I'm learning the Python bindings to OpenCV too. Here's one way:
#!/usr/local/bin/python3
import cv2
import numpy as np
w=40
h=20
# Make empty black image
image=np.zeros((h,w,3),np.uint8)
# Fill left half with yellow
image[:,0:int(w/2)]=(0,255,255)
# Fill right half with blue
image[:,int(w/2):w]=(255,0,0)
# Create a named colour
red = [0,0,255]
# Change one pixel
image[10,5]=red
# Save
cv2.imwrite("result.png",image)
Here's the result - enlarged so you can see it.
Here's the very concise, but less fun, answer:
#!/usr/local/bin/python3
import cv2
import numpy as np
# Make empty black image
image=np.zeros((20,40,3),np.uint8)
# Make one pixel red
image[10,5]=[0,0,255]
# Save
cv2.imwrite("result.png",image)