Sye*_*aan 2 python opencv image-segmentation mean-shift
我尝试寻找均值平移的 OpenCV 方法,但没有任何结果。我正在寻找一种方法来查找图像中的簇,并使用 python OpenCV 将它们替换为它们的平均值。任何线索将不胜感激。
例如:
输入:
输出:
这是sklearn的结果:
请注意,首先对图像进行平滑处理以减少噪声。此外,这并不完全是图像分割论文中的算法,因为图像和内核是扁平化的。
这是代码:
import numpy as np
import cv2 as cv
from sklearn.cluster import MeanShift, estimate_bandwidth
img = cv.imread(your_image)
# filter to reduce noise
img = cv.medianBlur(img, 3)
# flatten the image
flat_image = img.reshape((-1,3))
flat_image = np.float32(flat_image)
# meanshift
bandwidth = estimate_bandwidth(flat_image, quantile=.06, n_samples=3000)
ms = MeanShift(bandwidth, max_iter=800, bin_seeding=True)
ms.fit(flat_image)
labeled=ms.labels_
# get number of segments
segments = np.unique(labeled)
print('Number of segments: ', segments.shape[0])
# get the average color of each segment
total = np.zeros((segments.shape[0], 3), dtype=float)
count = np.zeros(total.shape, dtype=float)
for i, label in enumerate(labeled):
total[label] = total[label] + flat_image[i]
count[label] += 1
avg = total/count
avg = np.uint8(avg)
# cast the labeled image into the corresponding average color
res = avg[labeled]
result = res.reshape((img.shape))
# show the result
cv.imshow('result',result)
cv.waitKey(0)
cv.destroyAllWindows()
Run Code Online (Sandbox Code Playgroud)