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

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

遠(yuǎn)(yuǎn)程監(jiān)(jiān)護(hù)(hù)系統(tǒng)(tǒng)

  • OTSU Gray-level image segmentation using Otsu s method. Iseg = OTSU(I,n) computes a segmented i

    OTSU Gray-level image segmentation using Otsu s method. Iseg = OTSU(I,n) computes a segmented image (Iseg) containing n classes by means of Otsu s n-thresholding method (Otsu N, A Threshold Selection Method from Gray-Level Histograms, IEEE Trans. Syst. Man Cybern. 9:62-66 1979). Thresholds are computed to maximize a separability criterion of the resultant classes in gray levels. OTSU(I) is equivalent to OTSU(I,2). By default, n=2 and the corresponding Iseg is therefore a binary image. The pixel values for Iseg are [0 1] if n=2, [0 0.5 1] if n=3, [0 0.333 0.666 1] if n=4, ... [Iseg,sep] = OTSU(I,n) returns the value (sep) of the separability criterion within the range [0 1]. Zero is obtained only with images having less than n gray level, whereas one (optimal value) is obtained only with n-valued images.

    標(biāo)簽: OTSU segmentation Gray-level segmented

    上傳時(shí)間: 2017-04-24

    上傳用戶:yuzsu

  • int show_char(int n, const char *name, chtype code) { const int height = 16 int row = 4 + (

    int show_char(int n, const char *name, chtype code) { const int height = 16 int row = 4 + (n height) int col = (n / height) * COLS / 2 mvprintw(row, col, " *s : ", COLS/4, name) addch(code) return n + 1 }

    標(biāo)簽: int const show_char chtype

    上傳時(shí)間: 2017-06-12

    上傳用戶:3到15

  • 跨數(shù)據(jù)庫(kù)平臺(tái): n 支持 oracle 的OCI n 支持DB2的CLI, n 支持ODBC(通過(guò)ODBC,可支持SQL SERVE

    跨數(shù)據(jù)庫(kù)平臺(tái): n 支持 oracle 的OCI n 支持DB2的CLI, n 支持ODBC(通過(guò)ODBC,可支持SQL SERVER,MySQL等) Ø 跨OS平臺(tái): n 標(biāo)準(zhǔn)C++語(yǔ)言,支持 unix/linux/windows Ø 使用簡(jiǎn)單: n 只有一個(gè)頭文件 n 接口簡(jiǎn)潔.otl_stream, otl_connect, otl_exception等就可以完成大部分工作 n 相對(duì) ProC等嵌入式開(kāi)發(fā),代碼能相應(yīng)減少 Ø 性能: n 直接訪問(wèn)數(shù)據(jù)庫(kù)API接口,具有API接口的高效率,可靠性 Ø 穩(wěn)定性: n 開(kāi)源代碼,唯一的代碼文件otlv4.h,可以了解所有基于數(shù)據(jù)庫(kù)API的實(shí)現(xiàn)細(xì)節(jié) n 從1996年開(kāi)始,到今已10余年. Ø 可讀性及可維護(hù)性: n 標(biāo)準(zhǔn)C++代碼,不需要任何預(yù)處理 n 使用流的形式,輸入輸出異常簡(jiǎn)潔 n 減少大量代碼, n 代碼結(jié)構(gòu)更加簡(jiǎn)潔 參考資料: http://otl.sourceforge.net/

    標(biāo)簽: ODBC oracle SERVE OCI

    上傳時(shí)間: 2017-06-14

    上傳用戶:cainaifa

  • 給定N個(gè)整數(shù)

    給定N個(gè)整數(shù),找出它們中的最大值。在輸入時(shí)可以連續(xù)輸幾組數(shù),每組數(shù)中,第一行包括一個(gè)整數(shù)N(1〈=N〈=10000),第二行包括N個(gè)整數(shù),每個(gè)的絕對(duì)值小于10^9,當(dāng)一組數(shù)中,第一行為0時(shí)就退出程序。在輸出時(shí),每組數(shù)就有一行中顯示它的最大值

    標(biāo)簽: 整數(shù)

    上傳時(shí)間: 2013-12-02

    上傳用戶:410805624

  • 【問(wèn)題描述】 在一個(gè)N*N的點(diǎn)陣中

    【問(wèn)題描述】 在一個(gè)N*N的點(diǎn)陣中,如N=4,你現(xiàn)在站在(1,1),出口在(4,4)。你可以通過(guò)上、下、左、右四種移動(dòng)方法,在迷宮內(nèi)行走,但是同一個(gè)位置不可以訪問(wèn)兩次,亦不可以越界。表格最上面的一行加黑數(shù)字A[1..4]分別表示迷宮第I列中需要訪問(wèn)并僅可以訪問(wèn)的格子數(shù)。右邊一行加下劃線數(shù)字B[1..4]則表示迷宮第I行需要訪問(wèn)并僅可以訪問(wèn)的格子數(shù)。如圖中帶括號(hào)紅色數(shù)字就是一條符合條件的路線。 給定N,A[1..N] B[1..N]。輸出一條符合條件的路線,若無(wú)解,輸出NO ANSWER。(使用U,D,L,R分別表示上、下、左、右。) 2 2 1 2 (4,4) 1 (2,3) (3,3) (4,3) 3 (1,2) (2,2) 2 (1,1) 1 【輸入格式】 第一行是數(shù)m (n < 6 )。第二行有n個(gè)數(shù),表示a[1]..a[n]。第三行有n個(gè)數(shù),表示b[1]..b[n]。 【輸出格式】 僅有一行。若有解則輸出一條可行路線,否則輸出“NO ANSWER”。

    標(biāo)簽: 點(diǎn)陣

    上傳時(shí)間: 2014-06-21

    上傳用戶:llandlu

  • learningMatlab PhÇ n 1 c¬ së Mat lab Ch­ ¬ ng 1:

    learningMatlab PhÇ n 1 c¬ së Mat lab Ch­ ¬ ng 1: Cµ i ® Æ t matlab 1.1.Cµ i ® Æ t ch­ ¬ ng tr×nh: Qui tr×nh cµ i ® Æ t Matlab còng t­ ¬ ng tù nh­ viÖ c cµ i ® Æ t c¸ c ch­ ¬ ng tr×nh phÇ n mÒ m kh¸ c, chØ cÇ n theo c¸ c h­ íng dÉ n vµ bæ xung thª m c¸ c th« ng sè cho phï hî p. 1.1.1 Khë i ® éng windows. 1.1.2 Do ch­ ¬ ng tr×nh ® ­ î c cÊ u h×nh theo Autorun nª n khi g¾ n dÜ a CD vµ o æ ® Ü a th× ch­ ¬ ng tr×nh tù ho¹ t ® éng, cö a sæ

    標(biāo)簽: learningMatlab 172 199 173

    上傳時(shí)間: 2013-12-20

    上傳用戶:lanwei

  • metricmatlab ch­ ¬ ng 4 Ma trË n - c¸ c phÐ p to¸ n vÒ ma trË n

    metricmatlab ch­ ¬ ng 4 Ma trË n - c¸ c phÐ p to¸ n vÒ ma trË n. 4.1 Kh¸ i niÖ m: - Trong MATLAB d÷ liÖ u ® Ó ® ­ a vµ o xö lý d­ íi d¹ ng ma trË n. - Ma trË n A cã n hµ ng, m cét ® ­ î c gä i lµ ma trË n cì n  m. §­ î c ký hiÖ u An  m - PhÇ n tö aij cñ a ma trË n An  m lµ phÇ n tö n» m ë hµ ng thø i, cét j . - Ma trË n ® ¬ n ( sè ® ¬ n lÎ ) lµ ma trË n 1 hµ ng 1 cét. - Ma trË n hµ ng ( 1  m ) sè liÖ u ® ­ î c bè trÝ trª n mét hµ ng. a11 a12 a13 ... a1m - Ma trË n cét ( n  1) sè liÖ u ® ­ î c bè trÝ trª n 1 cét.

    標(biāo)簽: metricmatlab 203 184 tr

    上傳時(shí)間: 2017-07-29

    上傳用戶:來(lái)茴

  • 歐拉定理   對(duì)于互質(zhì)的整數(shù)a和n

    歐拉定理   對(duì)于互質(zhì)的整數(shù)a和n,有aφ(n) ≡ 1 mod n

    標(biāo)簽: 定理 整數(shù)

    上傳時(shí)間: 2014-01-02

    上傳用戶:330402686

  • 利用棧的基本操作實(shí)現(xiàn)將任意一個(gè)十進(jìn)制整數(shù)N轉(zhuǎn)化為R進(jìn)制整數(shù)。

    #include <stdlib.h> #include<stdio.h> #include <malloc.h> #define stack_init_size 100 #define stackincrement 10 typedef struct sqstack { int *base; int *top; int stacksize; } sqstack; int StackInit(sqstack *s) { s->base=(int *)malloc(stack_init_size *sizeof(int)); if(!s->base) return 0; s->top=s->base; s->stacksize=stack_init_size; return 1; } int Push(sqstack *s,int e) { if(s->top-s->base>=s->stacksize) { s->base=(int *)realloc(s->base,(s->stacksize+stackincrement)*sizeof(int)); if(!s->base) return 0; s->top=s->base+s->stacksize; s->stacksize+=stackincrement; } *(s->top++)=e; return e; } int Pop(sqstack *s,int e) { if(s->top==s->base) return 0; e=*--s->top; return e; } int stackempty(sqstack *s) { if(s->top==s->base) { return 1; } else { return 0; } } int conversion(sqstack *s) { int n,e=0,flag=0; printf("輸入要轉(zhuǎn)化的十進(jìn)制數(shù):\n"); scanf("%d",&n); printf("要轉(zhuǎn)化為多少進(jìn)制:\n"); scanf("%d",&flag); printf("將十進(jìn)制數(shù)%d 轉(zhuǎn)化為%d 進(jìn)制是:\n",n,flag); while(n) { Push(s,n%flag); n=n/flag; } while(!stackempty(s)) { e=Pop(s,e); switch(e) { case 10: printf("A"); break; case 11: printf("B"); break; case 12: printf("C"); break; case 13: printf("D"); break; case 14: printf("E"); break; case 15: printf("F"); break; default: printf("%d",e); } } printf("\n"); return 0; } int main() { sqstack s; StackInit(&s); conversion(&s); return 0;                        }

    標(biāo)簽: 整數(shù) 基本操作 十進(jìn)制 轉(zhuǎn)化 進(jìn)制

    上傳時(shí)間: 2016-12-08

    上傳用戶:愛(ài)你198

  • 基于N溝道MOS管H橋驅(qū)動(dòng)電路設(shè)計(jì)與制作

    本文結(jié)合飛思卡爾智能車(chē)比賽,基于N溝道MOS管設(shè)計(jì)H橋電機(jī)驅(qū)動(dòng)電路,給出一種利用PWM脈寬調(diào)制的方式對(duì)直流電機(jī)進(jìn)行速度調(diào)控。給出用于驅(qū)動(dòng)MOS管的電壓泵設(shè)計(jì)電路以及PCB板制作需要注意的相關(guān)問(wèn)題。

    標(biāo)簽: mos管 驅(qū)動(dòng)電路

    上傳時(shí)間: 2022-05-03

    上傳用戶:bluedrops

主站蜘蛛池模板: 武功县| 富平县| 长治县| 黔江区| 鹤山市| 孟村| 昌都县| 江阴市| 东至县| 内江市| 黑水县| 龙游县| 会泽县| 丘北县| 黄冈市| 河北省| 沾化县| 佛冈县| 科技| 即墨市| 荔波县| 濉溪县| 九江市| 古蔺县| 车致| 康定县| 怀宁县| 福泉市| 秭归县| 朝阳区| 南汇区| 三台县| 三门峡市| 静乐县| 平泉县| 永吉县| 长沙市| 信丰县| 民县| 光山县| 岳阳县|