主頁(yè) > 知識(shí)庫(kù) > python實(shí)現(xiàn)求純色彩圖像的邊框

python實(shí)現(xiàn)求純色彩圖像的邊框

熱門(mén)標(biāo)簽:電話(huà)機(jī)器人貸款詐騙 佛山通用400電話(huà)申請(qǐng) 電話(huà)外呼系統(tǒng)招商代理 京華圖書(shū)館地圖標(biāo)注 打印谷歌地圖標(biāo)注 淮安呼叫中心外呼系統(tǒng)如何 蘇州人工外呼系統(tǒng)軟件 廣東旅游地圖標(biāo)注 看懂地圖標(biāo)注方法

本文實(shí)例為大家分享了python實(shí)現(xiàn)求純色彩圖像的邊框,供大家參考,具體內(nèi)容如下

先上效果圖,這里顯示有點(diǎn)色差, 實(shí)際數(shù)值是純色的, 而不是混色的.

放大局部細(xì)節(jié)看是這樣的

原圖是下面這樣的

這個(gè)算法最大的特點(diǎn)是保留原始像素的數(shù)值, 而不是把邊框統(tǒng)一變成白色.
實(shí)現(xiàn)的算法也超級(jí)簡(jiǎn)單. 就是有點(diǎn)慢. 考慮到我這個(gè)應(yīng)用場(chǎng)景對(duì)性能要求不高, 比人快就行. 人工是它的幾百倍. 所以也就無(wú)所謂啦.
測(cè)試結(jié)果一張1080*1920的圖用時(shí)3秒, 如果換成c語(yǔ)言估計(jì)0.5秒左右.

算法原理, 每次4個(gè)田子形像素逐行掃描. 發(fā)現(xiàn)4個(gè)像素不一致的就輸出到結(jié)果圖上. 否則就是輸出0.

代碼如下.

#
# demo.py
# 識(shí)別單張圖片
#
import argparse
import os 
import numpy as np
import time

from modeling.deeplab import *
from dataloaders import custom_transforms as tr
from PIL import Image
from torchvision import transforms
from dataloaders.utils import  *
from torchvision.utils import make_grid, save_image,to_image

import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt

def main():
    im = Image.open("test_border.png")
    npimg = np.array(im) # 這個(gè)圖片是1維的索引圖. 
    # chwimg = npimg.transpose(2,0,1) # HWC 變成 CHW 格式的矩陣
    print(npimg.shape)
    h,w,c = npimg.shape

    src = np.sum(npimg,axis=2) # 這里測(cè)試用, 先把3通道的合成了一個(gè)通道的, 實(shí)際使用的時(shí)候也是1通道的.
    print(src.shape)
    borderimg = np.zeros(src.shape) #默認(rèn)都輸出了0 后面就不用輸出0了.
    # 修補(bǔ)bug, 解決邊框線(xiàn)會(huì)丟失的問(wèn)題.
    borderimg[0,:]=src[0,:]
    borderimg[:,0]=src[:,0]
    borderimg[-1,:]=src[-1,:]
    borderimg[:,-1]=src[:,-1]
   
    t1= time.time()
    for x in range(0,h-1,1): 
        for y in range(0,w-1,1):
            # point = src[x,y]
            # if(point>0):
                # print(point)
            if not (src[x,y] == src[x+1,y] == src[x,y+1] == src[x+1,y+1]): # 發(fā)現(xiàn)4個(gè)像素不一致的就輸出到結(jié)果圖上.
                borderimg[x,y] = src[x,y]
                borderimg[x+1,y] = src[x+1,y]
                borderimg[x,y+1] = src[x,y+1]
                borderimg[x+1,y+1] = src[x+1,y+1]
    t2= time.time()
    print("耗時(shí)",t2-t1)

    plt.figure()
    plt.title('display') 
    plt.imshow(src) 
    plt.show( )

    plt.imshow(borderimg) 
    plt.show( )

    print("start test get image border ...")

if __name__ == "__main__":
    main()
else:
    main()

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • python 圖像增強(qiáng)算法實(shí)現(xiàn)詳解
  • python 基于opencv實(shí)現(xiàn)圖像增強(qiáng)
  • 用Python給圖像算法做個(gè)簡(jiǎn)單應(yīng)用界面
  • python+opencv圖像分割實(shí)現(xiàn)分割不規(guī)則ROI區(qū)域方法匯總
  • python-opencv實(shí)現(xiàn)視頻指定幀數(shù)間隔圖像的保存功能
  • Python深度學(xué)習(xí)之圖像標(biāo)簽標(biāo)注軟件labelme詳解
  • python使用matplotlib顯示圖像失真的解決方案
  • python調(diào)用stitcher類(lèi)自動(dòng)實(shí)現(xiàn)多個(gè)圖像拼接融合功能
  • python數(shù)字圖像處理之估計(jì)噪聲參數(shù)
  • Python深度學(xué)習(xí)之使用Albumentations對(duì)圖像做增強(qiáng)

標(biāo)簽:湖州 駐馬店 畢節(jié) 衡水 江蘇 股票 中山 呼和浩特

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python實(shí)現(xiàn)求純色彩圖像的邊框》,本文關(guān)鍵詞  python,實(shí)現(xiàn),求純,色彩,圖像,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python實(shí)現(xiàn)求純色彩圖像的邊框》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于python實(shí)現(xiàn)求純色彩圖像的邊框的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章