Files
Obsidian-Main/10. 日記/2021/07/2021-07-15(週四).md

1.4 KiB
Raw Blame History

時間17:58:12

今日TODO

工作TODO

  • Refactorting RobotRunQA/TestModules/TestAllFormatsVTF.py to apply VideoTestFramework's USB ON/OFF mechanism. (2021/07/14-2021-/07/15)

今日回顧

  • TransmissionTest的說明
    DEFAULT_CONFIGS = {
    "Test Target Configuartion": {
        "FramesTotalProcessedError": 100,        // 允許幾個畫面錯誤
        "BytesTotalProcessedError": 1024102400,  // 允許幾個byte錯誤
        "BitsTotalProcessed": 1000000000000,     // 允許幾個bit錯誤, MIPI 10^12
        "ByteER": 0.0,  // byte error rate %,  error byte / total byte
        "FrameER": 0.0, // frame error rate %, error frames / total frames
        "BitER": 0.0    // bit error rate %,   error bits / total bits
    },
    "TestTime": {
        "Days": 0,
        "Hours": 0,
        "Minutes": 1,
        "Seconds": 0
    },
    "ToolVerification": {
        "AddNoiseIntoDataStream": 0,   // 1: add noise to frame
        "ThreadsForJpgVerify4K": 15,   // thread number
        "ThreadsForJpgVerify1080P": 15
    },
    "TestCfg": {
        "VerificationMode": "CHK", // CHK or BER, CHK: check MJPEG decode
        "bSaveAllGoodFrames": 0    // Save good frame
    },
    "PreviewCfg": {
        "Format": "MJPG",
        "ResolutionX": 3840,
        "ResolutionY": 2160,
        "FrameRate": 30
    },
    "TestData": {
        "TestID": "",
        "TestFolder": ""
    }
    

} ```