大宮盆栽デイズ - Omiya Bonsai Days -

冗談めかす埼玉のファインマン

(!=盆栽)Chrome ショートカットキー


pip install opencv-python
import cv2

def invert_image(image_path):
  """画像の白黒を反転させる関数

  Args:
      image_path (str): 処理したい画像のパス

  Returns:
      numpy.ndarray: 白黒反転後の画像データ
  """

  # 画像を読み込む
  img = cv2.imread(image_path)

  # 白黒反転
  inverted_img = cv2.bitwise_not(img)

  return inverted_img

# 画像パスを指定
 image_path = 'your_image.jpg'  # ここに処理したい画像のパスを指定してください


# 白黒反転を実行
inverted_image = invert_image(image_path)

# 反転後の画像を表示
cv2.imshow('Inverted Image', inverted_image)
cv2.waitKey(0)
cv2.destroyAllWindows()

# 反転後の画像を保存 (任意)
cv2.imwrite('inverted_your_image.jpg', inverted_image)