亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

圖像<b>分割算法</b>

  • C51 V8 專業開發工具

    Keil C51 V8 專業開發工具(PK51)   PK51是為8051系列單片機所設計的開發工具,支持所有8051系列衍生產品,,支持帶擴展存儲器和擴展指令集(例如Dallas390/5240/400,Philips 51MX,Analog Devices MicroConverters)的新設備,以及支持很多公司的一流的設備和IP內核,比如Analog Devices, Atmel, Cypress Semiconductor, Dallas Semiconductor, Goal, Hynix, Infineon, Intel, NXP(founded by Philips), OKI, Silicon Labs,SMSC, STMicroeleectronics,Synopsis, TDK, Temic, Texas Instruments,Winbond等。 通過PK51專業級開發工具,可以輕松地了解8051的On-chip peripherals與及其它關鍵特性。 The PK51專業級開發工具包括… l          μVision Ø         集成開發環境 Ø          調試器 Ø         軟件模擬器   l          Keil 8051擴展編譯工具 Ø         AX51宏匯編程序 Ø         ANSI C編譯工具 Ø         LX51 連接器 Ø         OHX51 Object-HEX 轉換器 l          Keil 8051編譯工具 Ø         A51宏匯編程序 Ø         C51 ANSI C編譯工具 Ø         BL51 代碼庫連接器 Ø         OHX51 Object-HEX 轉換器 Ø         OC51 集合目標轉換器   l          目標調試器 Ø         FlashMON51 目標監控器 Ø         MON51目標監控器 Ø         MON390 (Dallas 390)目標監控器 Ø         MONADI (Analog Devices 812)目標監控器 Ø         ISD51 在系統調試   l          RTX51微實時內核   你應該考慮PK51開發工具包,如果你… l          需要用8051系列單片機來開發 l          需要開發 Dallas 390 或者 Philips 51MX代碼 l          需要用C編寫代碼 l          需要一個軟件模擬器或是沒有硬件仿真器 l          需要在單芯片上基于小實時內核創建復雜的應用

    標簽: C51 V8 開發工具

    上傳時間: 2013-10-30

    上傳用戶:yy_cn

  • 印刷電路板設計原則

    減小電磁干擾的印刷電路板設計原則 內 容 摘要……1 1 背景…1 1.1 射頻源.1 1.2 表面貼裝芯片和通孔元器件.1 1.3 靜態引腳活動引腳和輸入.1 1.4 基本回路……..2 1.4.1 回路和偶極子的對稱性3 1.5 差模和共模…..3 2 電路板布局…4 2.1 電源和地…….4 2.1.1 感抗……4 2.1.2 兩層板和四層板4 2.1.3 單層板和二層板設計中的微處理器地.4 2.1.4 信號返回地……5 2.1.5 模擬數字和高壓…….5 2.1.6 模擬電源引腳和模擬參考電壓.5 2.1.7 四層板中電源平面因該怎么做和不應該怎么做…….5 2.2 兩層板中的電源分配.6 2.2.1 單點和多點分配.6 2.2.2 星型分配6 2.2.3 格柵化地.7 2.2.4 旁路和鐵氧體磁珠……9 2.2.5 使噪聲靠近磁珠……..10 2.3 電路板分區…11 2.4 信號線……...12 2.4.1 容性和感性串擾……...12 2.4.2 天線因素和長度規則...12 2.4.3 串聯終端傳輸線…..13 2.4.4 輸入阻抗匹配...13 2.5 電纜和接插件……...13 2.5.1 差模和共模噪聲……...14 2.5.2 串擾模型……..14 2.5.3 返回線路數目..14 2.5.4 對板外信號I/O的建議14 2.5.5 隔離噪聲和靜電放電ESD .14 2.6 其他布局問題……...14 2.6.1 汽車和用戶應用帶鍵盤和顯示器的前端面板印刷電路板...15 2.6.2 易感性布局…...15 3 屏蔽..16 3.1 工作原理…...16 3.2 屏蔽接地…...16 3.3 電纜和屏蔽旁路………………..16 4 總結…………………………………………17 5 參考文獻………………………17  

    標簽: 印刷電路板 設計原則

    上傳時間: 2013-10-22

    上傳用戶:a6697238

  • 數字運算

    數字運算,判斷一個數是否接近素數 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    標簽: 數字 運算

    上傳時間: 2015-05-21

    上傳用戶:daguda

  • c語言版的多項式曲線擬合。 用最小二乘法進行曲線擬合. 用p-1 次多項式進行擬合

    c語言版的多項式曲線擬合。 用最小二乘法進行曲線擬合. 用p-1 次多項式進行擬合,p<= 10 x,y 的第0個域x[0],y[0],沒有用,有效數據從x[1],y[1] 開始 nNodeNum,有效數據節點的個數。 b,為輸出的多項式系數,b[i] 為b[i-1]次項。b[0],沒有用。 b,有10個元素ok。

    標簽: 多項式 曲線擬合 c語言 最小二乘法

    上傳時間: 2014-01-12

    上傳用戶:變形金剛

  • 細胞檢測

    細胞檢測,通過細胞邊緣跟蹤,迭代閾值分割算法,檢測細胞邊緣,計算細胞大小,對細胞進行判斷

    標簽: 檢測

    上傳時間: 2014-11-26

    上傳用戶:gut1234567

  • 一篇博士論文

    一篇博士論文,《圖像匹配與分割算法研究》,很有價值的一片文章!

    標簽: 論文

    上傳時間: 2015-06-30

    上傳用戶:lindor

  • 一篇介紹虛擬內窺鏡的經典文章

    一篇介紹虛擬內窺鏡的經典文章,其中的重建算法及分割算法都得到廣泛的應用

    標簽: 虛擬 內窺鏡

    上傳時間: 2015-09-19

    上傳用戶:miaochun888

  • 一篇介紹虛擬內窺鏡的經典文章

    一篇介紹虛擬內窺鏡的經典文章,其中的重建算法及分割算法都得到廣泛的應用

    標簽: 虛擬 內窺鏡

    上傳時間: 2013-12-19

    上傳用戶:水中浮云

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    標簽: represented integers group items

    上傳時間: 2016-01-17

    上傳用戶:jeffery

  • 用游標的方法實現對稱差的計算

    用游標的方法實現對稱差的計算,即 (A-B)+(B-A)

    標簽: 對稱 計算

    上傳時間: 2016-05-23

    上傳用戶:遠遠ssad

主站蜘蛛池模板: 扶风县| 垣曲县| 贵港市| 肇东市| 门源| 镇安县| 龙江县| 玛曲县| 行唐县| 海原县| 诸暨市| 泊头市| 霍州市| 湛江市| 延津县| 唐山市| 陇川县| 娄烦县| 甘孜县| 小金县| 葫芦岛市| 井研县| 凌源市| 临城县| 房山区| 肥东县| 高平市| 农安县| 乳山市| 永泰县| 丰县| 洛隆县| 金沙县| 哈巴河县| 伽师县| 新田县| 神木县| 郸城县| 德格县| 出国| 故城县|