輪郭検出を行っているのですが,,
files = glob.glob("./sisa - pura/*") for i, f in enumerate(files): img = cv2.imread(f) gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) ret, binary = cv2.threshold(gray, 0, 255, cv2.THRESH_BINARY_INV + cv2.THRESH_OTSU) kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (3, 3 )) binary = cv2.dilate(binary, kernel) contours, hierarchy = cv2.findContours(binary, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) target_contour = max(contours, key=lambda x: cv2.contourArea(x)) def draw_contours(ax, img, target_contour): ax.imshow(img) ax.set_axis_off() target_contour = target_contour.squeeze(axis=1) ax.add_patch(Polygon(target_contour, color="b", fill=None, lw=2)) ax.plot(target_contour[:, 0], target_contour[:, 1], "ro", mew=0, ms=4) fig, ax = plt.subplots(figsize=(8, 8)) draw_contours(ax, img, target_contour) save_path = './rinnkaku/./4/_%d.jpg' %i plt.savefig(save_path) コード
画像によって下のように綺麗に検出できる画像とできないものがあります。
どのようにすれば綺麗に輪郭がとれるかが分からなくて困っております。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。