# 匯入相關模組和包
import cv2 as cv
import numpy as np
# 建立填充圖案
def fill_binary():
# 初始化引數,設定大小通道數量
image = np.zeros([400, 400, 3], np.uint8)
# 設定顏色
image[100:300, 100:300, :] = 255
# 展示
cv.imshow('artwork master', image)
# 設定填充範圍
mask = np.ones([402, 402, 1], np.uint8)
# 填充區域
mask[101:301, 101:302] = 0
# 原圖,需要填充的區域,畫素值範圍,填充顏色
# floodfill_mask_only不改變影象只填充遮罩層本身,忽略新的顏色值引數
cv.floodfill(image, mask, (200, 200), (100, 2, 255), cv.floodfill_mask_only)
# 展示填充圖
cv.imshow('fill image', image)
# 呼叫填充函式
fill_binary()
# 等待使用者按下任意鍵
cv.waitkey(0)
# 釋放記憶體
opencv基礎入門 ROI與泛洪填充
python opencv影象處理 六 roi與泛洪填充 蛋片雞 影象處理之泛洪填充演算法 flood fill algorithm csdn部落格 roi region of interest 感興趣區域。機器視覺 影象處理中,從被處理的影象以方框 圓 橢圓 不規則多邊形等方式勾勒出需要處理的區域...
OpenCV python ROI與泛洪填充
1,roi 感興趣區 region of interest,roi 是影象的一部分,它通過在影象上選擇或使用諸如設定閾值 thresholding 或者從其他檔案 如向量 轉換獲得等方法生成。機器視覺 影象處理中,感趣區可以是從被處理的影象以方框 圓 橢圓 不規則多邊形等方式勾勒出需要處理的區域,通...
python ROI與泛洪填充
roi roi region of interest 感興趣的區域,通官numpy進行操作,指定區域 import cv2 roi region of interest 感興趣的區域,通官numpy進行操作,指定區域 img1 cv2.imread clock.png 1 roiarea img1 ...