在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

如何用python對生成的map圖進行上色呢?

sanyue7758 ? 來源:Tom聊芯片智造 ? 2023-09-26 09:32 ? 次閱讀

前幾期,有朋友讓我用python將cp的測試數據轉化為map

但是,他又想把特定的測量數據轉化為map圖后,進行上色,即不同的測試數據能夠呈現不同的顏色,以便于直觀的觀察其趨勢。

數據樣式:

bc7a372c-5bba-11ee-939d-92fbcf53809c.png

左邊列是序號,中間列是XY,X-0016Y0079表示的是(X,Y)坐標為(16,79),最右行是測試數據。序號最大值為13278,即這個wafer有13278粒完成測試,得到了cp的測試數據。

我的思路:

1,將現有數據按照坐標,轉化為map圖,并將測試數值一一對應填入map圖中。

2,有時測試標準是不一樣的,所以可以手動設置標準值,這個在運行程序時能夠彈出對話框,讓使用者能夠隨意更改標準。低于標準值的測量值單元格呈現淺紅色到紅色的漸變,高于標準值的測量值呈現淺綠到紫色的漸變。

做出的效果:

1,雙擊“map上色.exe”運行程序

2,選擇要上色的測試數據文件

bc7f807e-5bba-11ee-939d-92fbcf53809c.png

3,手動設置標準值

bc98c9da-5bba-11ee-939d-92fbcf53809c.png

4,設置文件名

bca11874-5bba-11ee-939d-92fbcf53809c.png

5,在原文件地址下輸出包含map圖的文件

bcb65284-5bba-11ee-939d-92fbcf53809c.png

6,打開文件

bcbc40ea-5bba-11ee-939d-92fbcf53809c.png

這樣就很直觀地看出測量值的分布圖來了。

原代碼如下,歡迎參考:

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from openpyxl import Workbook
from openpyxl.utils.dataframe import dataframe_to_rows
from openpyxl.styles import PatternFill
from tkinter.simpledialog import askfloat
from tkinter import Tk
from tkinter import filedialog
import colorsys
from tkinter.simpledialog import askstring
def get_threshold(threshold_type):
    print(f"Getting threshold for {threshold_type}...")
    root = Tk()
    root.withdraw()

    if threshold_type == "IL":
        threshold = askfloat(f"Input {threshold_type} Threshold", f"Enter the {threshold_type} threshold:")
        return threshold
    elif threshold_type == "FC":
        threshold_range_str = askstring(f"Input {threshold_type} Threshold Range",
                                        f"Enter the {threshold_type} threshold range (e.g., 'min,max'):")
        print(f"User input for FC threshold: {threshold_range_str}")
        try:
            min_threshold, max_threshold = map(float, threshold_range_str.split(','))
            return min_threshold, max_threshold
        except ValueError:
            print("Invalid input. Please enter two numbers separated by a comma.")
            return None
    root.destroy()
def color_map(value, threshold, data_min, data_max):
    # 正常化值到 [threshold, data_max] 區間,從極淡綠(144,238,144)到紫(128,0,128)
    if threshold <= value <= data_max:
        normed_value = (value - threshold) / (data_max - threshold)
        r = int(144 * (1 - normed_value) + 128 * normed_value)
        g = int(238 * (1 - normed_value) + 0 * normed_value)
        b = int(144 * (1 - normed_value) + 128 * normed_value)

    # 正常化值到 [data_min, threshold] 區間,從紅(255,0,0)到黃(255,255,0)
    elif -10 <= value < threshold:
        normed_value = (value + 10) / (threshold + 10)  # 正則化到 [0, 1] 區間
        r = int(222 + (241 - 222) * normed_value)  # 從 222 漸變到 241
        g = int(28 + (147 - 28) * normed_value)  # 從 28 漸變到 147
        b = int(49 + (156 - 49) * normed_value)  # 從 49 漸變到 156

    elif data_min <= value < -10:
        r, g, b = 139, 0, 0

    else:
        r, g, b = 255, 255, 255  # 默認為白色

    hex_color = 'FF' + '{:02X}{:02X}{:02X}'.format(r, g, b)
    return hex_color


def fc_color_map(value, min_threshold, max_threshold, data_min, data_max):
    if min_threshold <= value <= max_threshold:
       
        normed_value = (value - min_threshold) / (max_threshold - min_threshold)

        hue = normed_value * 360

        r, g, b = colorsys.hsv_to_rgb(hue / 360.0, 1, 1)  # Here saturation and value are both set to 1
        r, g, b = int(r * 255), int(g * 255), int(b * 255)

        hex_color = 'FF' + '{:02X}{:02X}{:02X}'.format(r, g, b)

    # For values outside the specified range
    elif value > max_threshold or value < min_threshold:
        r, g, b = 139, 0, 0
        hex_color = 'FF' + '{:02X}{:02X}{:02X}'.format(r, g, b)
    else:
        r, g, b = 255, 255, 255  # default to white
        hex_color = 'FF' + '{:02X}{:02X}{:02X}'.format(r, g, b)
    return hex_color
def save_to_excel(df, threshold, output_path, color_function):
    wb = Workbook()
    ws = wb.active

    data_min = df.min().min()  # 獲取整個 dataframe 中的最小值
    data_max = df.max().max()  # 獲取整個 dataframe 中的最大值

    for i in range(df.shape[0]):
        for j in range(df.shape[1]):
            value = df.iloc[i, j]
            if not pd.isna(value):
                cell = ws.cell(row=i + 2, column=j + 2)
                cell.value = value
                # 選擇正確的顏色映射函數和參數
                if color_function == color_map:
                    fill_color = color_function(value, threshold, data_min, data_max)
                elif color_function == fc_color_map:
                    min_threshold, max_threshold = threshold  # 從元組中解包
                    fill_color = color_function(value, min_threshold, max_threshold, data_min, data_max)

                cell.fill = PatternFill(start_color=fill_color,
                                        end_color=fill_color,
                                        fill_type="solid")
    wb.save(output_path)

def rgb_to_hex(rgb):
    return '{:02X}{:02X}{:02X}'.format(rgb[0], rgb[1], rgb[2])


def main():
    print("Starting main function...")
    input_file = filedialog.askopenfilename(title="Select the CSV file")
    print(f"Selected file: {input_file}")
    if "il" in input_file.lower():
        threshold_type = "IL"
        color_function = color_map
        threshold = get_threshold(threshold_type)
    else:
        threshold_type = "FC"
        color_function = fc_color_map
        threshold = get_threshold(threshold_type)
????if threshold is None:
        print("Invalid threshold. Exiting program.")
        return

    output_file = filedialog.asksaveasfilename(title="Save the visualization as", defaultextension=".xlsx",
                                               filetypes=[("Excel files", "*.xlsx")])
    print(f"Output file: {output_file}")

    df = pd.read_csv(input_file)
    save_to_excel(df, threshold, output_file, color_function)

if __name__ == "__main__":

main()






審核編輯:劉清

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • python
    +關注

    關注

    56

    文章

    4801

    瀏覽量

    84867

原文標題:用python對生成的map圖上色

文章出處:【微信號:處芯積律,微信公眾號:處芯積律】歡迎添加關注!文章轉載請注明出處。

收藏 人收藏

    評論

    相關推薦

    何用強度生成這樣的云圖!

    何用強度生成這樣的云圖!
    發表于 07-27 13:29

    請教各位大神如何用matlab畫電機map???

    請教各位大神如何用matlab畫電機map???小弟感激不盡。。。。。
    發表于 04-11 15:50

    python調用labview生成的dll

    何用python調用labview生成的dll
    發表于 02-03 15:59

    何用Proteus ISIS軟件進行原理設計及仿真

    Proteus ISIS軟件具有哪些功能?如何用Proteus ISIS軟件進行原理設計及仿真?有哪些流程?
    發表于 11-10 06:34

    如何讓Keil生成map文件

    一、要讓Keil生成map文件,要設置:再重新編譯,沒有錯誤后,就會生成map文件了。二、map文件中相關概念:段(section) :描述
    發表于 11-23 06:54

    何用樹莓派和Python去實現nRF24L01模塊功能

    何用樹莓派和Python去實現nRF24L01模塊功能?其相關代碼該如何去實現
    發表于 12-16 07:47

    請問arm必須要對生成的匯編指令進行優化嗎

    請問在用arm neon指令優化程序時,在一個for循環下,分別用int32x2_t和int32x4_t類型的指令,后者的速度并沒有按照理論上的速度更快,反而比前者慢是怎么回事?必須要對生成的匯編指令進行優化嗎?謝謝指教。
    發表于 09-01 15:47

    請問arm必須要對生成的匯編指令進行優化嗎

    請問在用ARM neon指令優化程序時,在一個for循環下,分別用int32x2_t和int32x4_t類型的指令,后者的速度并沒有按照理論上的速度更快,反而比前者慢是怎么回事?必須要對生成的匯編指令進行優化嗎?
    發表于 10-18 11:23

    最好的輔助數據,MAP對調速電機有什么作用?

    電機中的MAP是電機測試時生成的一種數據曲線圖,主要是反映在不同轉速、扭矩下的電機效率分布情況,通俗而言就是效率分布,類似于我們地理課上常見的等高線圖。 在說調速電機之前,我們先了
    發表于 11-04 19:02 ?2634次閱讀
    最好的輔助數據,<b class='flag-5'>MAP</b><b class='flag-5'>圖</b>對調速電機有什么作用?

    詳解如何用AD生成Gerber文件

    詳解如何用AD生成Gerber文件
    發表于 11-23 11:07 ?0次下載

    STM32的hex文件和map文件如何生成

    的對話框中選擇“Output”選項卡,然后勾選“Create HEX file”3、 生成map文件:選擇“Listing”選項卡,勾選“Linker Listing: .\Listings\xxxxxxx.map”,并全選其下
    發表于 12-27 18:36 ?5次下載
    STM32的hex文件和<b class='flag-5'>map</b>文件如何<b class='flag-5'>生成</b>

    python生成器是什么

    python生成器 1. 什么是生成器? 生成器(英文名 Generator ),是一個可以像迭代器那樣使用for循環來獲取元素的函數。 生成
    的頭像 發表于 02-24 15:53 ?3684次閱讀

    Python怎么批量生成PDF文檔

    這種模板套用的場景下,使用Python進行自動化就尤為方便,用最短的時間辦最高效的事。 今天就給大家講講如何用Python自動套用模板批量生成
    的頭像 發表于 02-28 10:11 ?1166次閱讀
    <b class='flag-5'>Python</b>怎么批量<b class='flag-5'>生成</b>PDF文檔

    何用Python自動套用模板批量生成PDF文檔

    今天就給大家講講如何用Python自動套用模板批量生成的PDF文檔。 1.準備 開始之前,你要確保Python和pip已經成功安裝在電腦上噢,如果沒有,請訪問這篇文章: 超詳細
    的頭像 發表于 10-17 10:54 ?1019次閱讀
    如<b class='flag-5'>何用</b><b class='flag-5'>Python</b>自動套用模板批量<b class='flag-5'>生成</b>PDF文檔

    何用Python自動套用模板批量生成PDF文檔

    辦最高效的事。 今天就給大家講講如何用Python自動套用模板批量生成下方這樣的PDF文檔。 1.準備 開始之前,你要確保Python和pip已經成功安裝在電腦上噢,如果沒有,請訪問這
    的頭像 發表于 10-31 10:56 ?1634次閱讀
    如<b class='flag-5'>何用</b><b class='flag-5'>Python</b>自動套用模板批量<b class='flag-5'>生成</b>PDF文檔
    主站蜘蛛池模板: 搡女人视频免费| 免费日韩一级片| 久久免| 成人免费视频一区| 欧美在线小视频| 婷婷色在线播放| 天天夜夜爽| 国产精品电影一区| 女人扒开腿让男人桶到爽| 视频色版| 亚洲乱亚洲乱妇41p国产成人| 202z欧美成人| www.好吊色| 狠狠轮| 免费观看一级特黄欧美大片| 在线天堂在线| 大乳妇女bd视频在线观看| 91色蝌蚪| 在线日本人观看成本人视频| 亚洲激情综合| 亚洲天天做夜夜做天天欢人人| 天堂网www中文在线| 夜夜夜夜曰天天天天拍国产| 国产成人一区二区三中文| 激情有码| 久久这里精品青草免费| 欧美三级影院| 欧美18videosex性欧美69| 黄色三级视频网站| 亚洲午夜视频在线| 国产理论在线| 成人夜色香网站在线观看| 国产精品成人观看视频国产奇米 | 日韩va亚洲va欧美va浪潮| 日本不卡一区视频| 欧美a∨| 美女三级黄| 国产人人澡| 国产在线欧美精品卡通动漫| 国产三级观看久久| 色网站综合|