影像處理 -- 使用 R 軟體

統計軟體 R

簡介

安裝

操作方式

變數與運算

有序數列

向量

矩陣

多維陣列

複數

因子

串列

資料框

時間數列

流程控制

輸出入

呼叫

函數

2D 繪圖

3D 繪圖

互動介面

套件列表

其他語言呼叫

R 的應用

集合

邏輯推論

模糊邏輯

機率邏輯

檢定

搜尋

優化算法

線性代數

決策樹

人工智慧

分群分類

SVM 向量機

神經網路

遺傳演算法

資料採礦

訊號處理

影像處理

語音處理

自然語言

機器學習

機器人

生物統計

數位訊號處理

方程式求解

數值分析

微積分

微分方程

線性規劃

圖形理論

統計推論

字串處理

正規表示式

視窗程式

網頁程式

文件格式

貝氏網路

訊息

機率統計書

相關網站

參考文獻

最新修改

簡體版

English

> install.packages("biOps")
--- Please select a CRAN mirror for use in this session ---
試開URL 'http://cran.csie.ntu.edu.tw/bin/windows/contrib/2.13/biOps_0.2.1.1.zip'
Content type 'application/zip' length 1931179 bytes (1.8 Mb)
開啟了 URL
downloaded 1.8 Mb

package 'biOps' successfully unpacked and MD5 sums checked

The downloaded packages are in
        C:\Users\ccc\AppData\Local\Temp\Rtmpx8QAc7\downloaded_packages
> library(biOps)
Warning message:
package 'biOps' was built under R version 2.13.2 
> img.origin <- readJpeg("d:\ccc\r\ex_pic.jpg")
錯誤: '\c' is an unrecognized escape in character string starting "d:\c"
> img.origin <- readJpeg("d:/ccc/r/ex_pic.jpg")
> img.edge <- imgCanny(img.origin, sigma=0.7)
> plot(img.edge)

參考文獻

  1. http://www.inside-r.org/
  2. Introduction to EBImage,an image processing and analysis toolkit for R, Gregoire Pau, Oleg Sklyar, Wolfgang Huber, ku.ca.ibe|uapg#ku.ca.ibe|uapg, September 25, 2013
  3. Package biOps — http://cran.r-project.org/web/packages/biOps/index.html
  4. R 學習筆記/資訊工程‎/影像處理 — https://sites.google.com/site/rprojectnotes/computer_science/image_processing
  5. CRAN Task View: Medical Image Analysis

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License