cv2.threshold を使ってみる
Python
Published: 2019-09-29

やったこと

OpenCV の cv2.threshold を使ってみます。

確認環境

Google Colaboratory で試しました。

import cv2
print(cv2.__version__)
3.4.3

調査

import matplotlib.pyplot as plt
import cv2

fig = plt.figure(figsize=(10, 5))

img_bgr = cv2.imread('hoge.jpg')
img_rgb = cv2.cvtColor(img_bgr, cv2.COLOR_BGR2RGB)

fig.add_subplot(1, 3, 1)
ret_val, result_img = cv2.threshold(img_rgb, 95, 128, cv2.THRESH_TOZERO)
plt.imshow(result_img)

fig.add_subplot(1, 3, 2)
ret_val, result_img = cv2.threshold(img_rgb, 100, 255, cv2.THRESH_BINARY)
plt.imshow(result_img)

fig.add_subplot(1, 3, 3)
plt.imshow(img_rgb)

plt.show()

参考