hby

@hby

Joined on Dec 21, 2020

  • Resource:openhome.cc package/import JetBrains 概念 (Concept) Java has a mechanism that cleans memory automatically. Java follows the "write once, run anywhere" (or WORA) principle. The same program can be run on multiple platforms without any changes. compile java program: javac執行javac xxx.java後, 會將xxx.java編譯成xxx.class,其中.class檔是可以運行在JVM的bytecode格式 execute java program:java xxx
     Like  Bookmark
  • @hby 以下圖文內容參考至清大吳永俊教授影片,建議可以看影片搭配筆記使用。 僅 用 以 學 習 非 營 利 用 途。 相關技術重點節錄 Ep3: Tech Node vs. Lg Ep4:Thermal Process Ep8:Iron Implantation Ep9:Etching Process Ep10:CVD/PVD
     Like 13 Bookmark
  • an adaptive thresholding way for binarization in image processing. By going through all possible threshold values (from 0 to 255), it can find the optimal threshold value of input image. [see more] Preliminaries Given an image, threshold $t$ separates all the pixels $P_i$ into $C_1$ and $C_2$, where $C_1 = {P_i \mid P_i \gt t }$ and $C_2 = {P_i \mid P_i \leq t }$ $W_1$ and $W_2$ are the probabilities of the two classes separated by $t$, where $W_1+W_2=1$ $V_T$ : total variance $V_b$ : between-class variance $V_w$ : within-class variance $V_T = V_b + V_w$
     Like  Bookmark
  • Ref: Method Ref: Inheritance Ref: Class還沒看 名詞定義: object(物件), class(類別) Data tpye 用type可以看型態 (e.g, type(0c10) = int) int: 預設10進位
     Like  Bookmark