91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python如何實現多張圖片合成文字的效果

發布時間:2022-06-09 13:43:11 來源:億速云 閱讀:235 作者:iii 欄目:開發技術

本篇內容主要講解“Python如何實現多張圖片合成文字的效果”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python如何實現多張圖片合成文字的效果”吧!

一、圖片批量下載

首先我們需要從百度下載大量王心凌的圖片,但是如果會去百度圖片里一張張右鍵下載,但這樣未免太麻煩了,所以打算直接用python寫一個批量下載圖片的代碼,輸入想要下載圖片的關鍵字,然后輸入想要下載圖片的數量,就可以成功下載圖片了!

代碼主要分成三個部分:

  • 下載圖片

  • 檢測圖片數量

  • 查找相似圖片

1.下載圖片

def dowmloadPicture(html, keyword):
    global num
    # t =0
    pic_url = re.findall('"objURL":"(.*?)",', html, re.S)  # 先利用正則表達式找到圖片url
    print('找到關鍵詞:' + keyword + '的圖片,即將開始下載圖片...')
    for each in pic_url:
        print('正在下載第' + str(num + 1) + '張圖片,圖片地址:' + str(each))
        try:
            if each is not None:
                pic = requests.get(each, timeout=7)
            else:
                continue
        except BaseException:
            print('錯誤,當前圖片無法下載')
            continue
        else:
            string = file + r'\\' + keyword + '_' + str(num) + '.jpg'
            fp = open(string, 'wb')
            fp.write(pic.content)
            fp.close()
            num += 1
        if num >= numPicture:
            return

2.檢測圖片數量

def Find(url, A):
    global List
    print('正在檢測圖片總數,請稍等.....')
    t = 0
    i = 1
    s = 0
    while t < 1000:
        Url = url + str(t)
        try:
            # 這里搞了下
            Result = A.get(Url, timeout=7, allow_redirects=False)
        except BaseException:
            t = t + 60
            continue
        else:
            result = Result.text
            pic_url = re.findall('"objURL":"(.*?)",', result, re.S)  # 先利用正則表達式找到圖片url
            s += len(pic_url)
            if len(pic_url) == 0:
                break
            else:
                List.append(pic_url)
                t = t + 60
    return s

3.查找相似圖片

def dowmloadPicture(html, keyword):
    global num
    # t =0
    pic_url = re.findall('"objURL":"(.*?)",', html, re.S)  # 先利用正則表達式找到圖片url
    print('找到關鍵詞:' + keyword + '的圖片,即將開始下載圖片...')
    for each in pic_url:
        print('正在下載第' + str(num + 1) + '張圖片,圖片地址:' + str(each))
        try:
            if each is not None:
                pic = requests.get(each, timeout=7)
            else:
                continue
        except BaseException:
            print('錯誤,當前圖片無法下載')
            continue
        else:
            string = file + r'\\' + keyword + '_' + str(num) + '.jpg'
            fp = open(string, 'wb')
            fp.write(pic.content)
            fp.close()
            num += 1
        if num >= numPicture:
            return

使用效果:

Python如何實現多張圖片合成文字的效果

Python如何實現多張圖片合成文字的效果

二、圖片馬賽克

當我們下載好了所需要的王心凌的照片,下一步我們需要用這些圖片組成我們需要的文字。

所以首先準備一張要拼成的圖片,比如需要組成的文字,如端午安康,我們可以用 PowerPoint)制作一個喜歡的文字樣式,然后保存成jpg格式。

Python如何實現多張圖片合成文字的效果

1.使用photomosaic庫實現圖片馬賽克

代碼如下所示:

import photomosaic as pm
 
# 加載要拼成的圖片image(jpg 格式,圖片越大,得到的拼圖的每個小圖分辨率越高)
image = pm.imread("1.jpg", as_gray=False)
# 從指定文件夾加載圖片庫(需要比較多的圖片才能獲得較好的效果)
pool = pm.make_pool("wxl/*.jpg")
# 制作 50*50 的拼圖馬賽克
mosaic = pm.basic_mosaic(image, pool, (200, 200))
# 保存拼圖
pm.imsave("mosaic.jpg", mosaic)

不過由于這個庫版本問題,所以需要在庫函數里面做一點點修改才能成才運行。

def crop_to_fit(image, shape):
    """
    Return a copy of image resized and cropped to precisely fill a shape.
    To resize a colored 2D image, pass in a shape with two entries. When
    ``len(shape) < image.ndim``, higher dimensions are ignored.
    Parameters
    ----------
    image : array
    shape : tuple
        e.g., ``(height, width)`` but any length <= ``image.ndim`` is allowed
    Returns
    -------
    cropped_image : array
    """
    # Resize smallest dimension (width or height) to fit.
    d = np.argmin(np.array(image.shape)[:2] / np.array(shape))
    enlarged_shape = (tuple(np.ceil(np.array(image.shape[:len(shape)]) *
                                    shape[d]/image.shape[d])) +
                      image.shape[len(shape):])
    resized = resize(image, enlarged_shape,
                     mode='constant', anti_aliasing=False)
    # Now the image is as large or larger than the shape along all dimensions.
    # Crop any overhang in the other dimension.
    crop_width = []
    for actual, target in zip(resized.shape, shape):
        overflow = actual - target
        # Center the image and crop, biasing left if overflow is odd.
        left_margin = int(np.floor(overflow / 2))
        right_margin = int(np.ceil(overflow / 2))
        crop_width.append((left_margin, right_margin))
    # Do not crop any additional dimensions beyond those given in shape.
    for _ in range(resized.ndim - len(shape)):
        crop_width.append((0, 0))
    cropped = crop(resized, crop_width)
    return cropped

在裁剪圖片的時候輸入需要是int型,所以把left_margin和right_margin強制轉化成int型。

實現效果:

Python如何實現多張圖片合成文字的效果

效果確實一般般,局部放大,可以觀察出,生成圖是由照片拼接而成的,所以整體大圖的清晰度也與小照片的數量有關,也有可能是圖片分辨率大小以及組成圖片尺寸不一的原因,所以又嘗試了另一種方法。

2.計算顏色相似度實現圖片馬賽克

def readSourceImages(sourcepath,blocksize):
    print('開始讀取圖像')
    # 合法圖像列表
    sourceimages = []
    # 平均顏色列表
    avgcolors = []
    for path in tqdm(glob.glob("{}/*.jpg".format(sourcepath))):
        image = cv2.imread(path, cv2.IMREAD_COLOR)
        if image.shape[-1] != 3:
            continue
        image = cv2.resize(image, (blocksize, blocksize))
        avgcolor = np.sum(np.sum(image, axis=0), axis=0) / (blocksize * blocksize)
        sourceimages.append(image)
        avgcolors.append(avgcolor)
    print('結束讀取')
    return sourceimages,np.array(avgcolors)

通過這個方法能夠獲取照片集中的每張照片與組成的大圖之間顏色的相似度,將相似的照片放到對應的位置。

實現效果:

Python如何實現多張圖片合成文字的效果

到此,相信大家對“Python如何實現多張圖片合成文字的效果”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临沂市| 隆德县| 深州市| 尉犁县| 兴文县| 兴业县| 兴安盟| 阜康市| 商都县| 裕民县| 太湖县| 阿鲁科尔沁旗| 拜泉县| 武城县| 禹城市| 尚志市| 华坪县| 秦皇岛市| 昂仁县| 乐昌市| 饶阳县| 英德市| 济源市| 海伦市| 横峰县| 建瓯市| 大新县| 疏附县| 资中县| 东兰县| 昆山市| 宕昌县| 民丰县| 古交市| 商城县| 巨野县| 营口市| 嵩明县| 阳曲县| 如东县| 栾川县|