亚洲免费在线视频-亚洲啊v-久久免费精品视频-国产精品va-看片地址-成人在线视频网

您的位置:首頁技術文章
文章詳情頁

Python庫skimage繪制二值圖像代碼實例

瀏覽:49日期:2022-07-30 13:50:38

二值圖像的凸殼指的是包圍輸入二值圖像白色區域的最小的凸多邊形的像素集合。

skimage中的函數

from skimage.morphology import convex_hull_imagechull = convex_hull_image(image)

完整代碼:

'''===========Convex Hull===========The convex hull of a binary image is the set of pixels included in thesmallest convex polygon that surround all white pixels in the input.A good overview of the algorithm is given on `Steve Eddin’s blog<http://blogs.mathworks.com/steve/2011/10/04/binary-image-convex-hull-algorithm-notes/>`__.'''import matplotlib.pyplot as pltfrom skimage.morphology import convex_hull_imagefrom skimage import data, img_as_floatfrom skimage.util import invert# The original image is inverted as the object must be white.image = invert(data.horse())chull = convex_hull_image(image)fig, axes = plt.subplots(1, 2, figsize=(8, 4))ax = axes.ravel()ax[0].set_title(’Original picture’)ax[0].imshow(image, cmap=plt.cm.gray)ax[0].set_axis_off()ax[1].set_title(’Transformed picture’)ax[1].imshow(chull, cmap=plt.cm.gray)ax[1].set_axis_off()plt.tight_layout()plt.show()####################################################################### We prepare a second plot to show the difference.#chull_diff = img_as_float(chull.copy())chull_diff[image] = 2fig, ax = plt.subplots()ax.imshow(chull_diff, cmap=plt.cm.gray)ax.set_title(’Difference’)plt.show()

實驗輸出

Python庫skimage繪制二值圖像代碼實例

Python庫skimage繪制二值圖像代碼實例

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 午夜影院免费入口 | 久久精品一级 | 网站免费满18成年在线观看 | 在线观看aaa | 欧美性群另类交 | 91国内视频在线观看 | 国产精品黄色片 | 久久精品免费一区二区三区 | 国产成人亚洲合集青青草原精品 | 日本高清在线不卡 | 久久中精品中文 | 亚洲日本在线观看网址 | 免费视频亚洲 | 欧美日韩亚洲国产 | 国产亚洲精品免费 | 亚洲成人美女 | 欧美性精品hd在线观看 | 亚洲一区二区三区香蕉 | 国产乱子精品免费视观看片 | 国产成人一区在线播放 | 亚洲国产成人精品91久久久 | 国产精品一区亚洲一区天堂 | 久久99精品久久久久久久不卡 | a级精品九九九大片免费看 a级毛片免费观看网站 | 精品久久久久久久高清 | 很黄很色的摸下面的视频 | 国语精品视频在线观看不卡 | 久久久久在线 | 国产欧美日韩综合精品无毒 | 国产三级黄色 | 在线视频久草 | 欧美一区二区高清 | 国内外成人免费在线视频 | 男人天堂免费 | 草草影院在线观看 | 国产美女一区二区 | 一级做a爱片特黄在线观看免费看 | 不卡国产视频 | 亚洲精品人成网线在线 | 13一14周岁毛片免费 | 视频一区色眯眯视频在线 |