0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

画像から枠を取り出す

Posted at

準備

import cv2
import matplotlib.pyplot as plt

処理

# 画像を読み込む
img = cv2.imread("〜〜〜.png")
# 画像をグレースケール化
img_gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
# 画像を表示
plt.imshow(img_gray)
plt.gray()

OpenCVでの表のセルの認識方法

edge抽出の数字、minサイズの切り捨てのところをいじれば、使えるようになった。

画像処理入門講座 : OpenCVとPythonで始める画像処理

輪郭を抽出
image, contours, hierarchy = cv2.findContours(img_gray,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
# img2に描画
img2 = cv2.drawContours(img_gray, contours, -1, (0,255,0), 3)
# img2を表示、保存
plt.imshow(img2)
cv2.imwrite('img2.png', img2)
plt.gray()

contoursが輪郭、hierachyが輪郭の階層情報

cv2.findContours、cv2.drawContoursについての解説↓
輪郭: 初めの一歩

Python でグレースケール(grayscale)化

【Python入門】小数点の操作を切り上げからroundまで完全理解!

[Python] リストの最大値、最小値とそのインデックスを取得する(max, min, index)

Python, OpenCVで画像を縦・横に連結 (hconcat, vconcat, np.tile)

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?