1
は、私は、新しいイメージを作成し、その上に円を描き、それを表示するために使用するコードです:グレイスケールイメージで描画するときにOpenCVがアンチエイリアスを適用しないのはなぜですか?ここ
import numpy as np
import cv2
# create 50x50 image, filled with white
img = np.ones((50,50))
# draw a circle onto the image
cv2.circle(img, (25,25), 10, 0, 2, lineType=cv2.LINE_AA)
# show the image on the screen
cv2.imshow("i", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
ただし、アンチエイリアスが(私は画像X10をスケールアップ)を適用しているように見えるん:
私は間違って何をしていますか?