Octive 科學計算 -- 影像處理

Octave

簡介

程式

語法

基本運算

矩陣

稀疏矩陣

函數

函式庫

字串

輸出入

2D 繪圖

3D 繪圖

物件導向

線性代數

多項式

內插法

最小平方法

微分方程

機率

統計

迴歸分析

時間序列

傅立葉轉換

微積分

時間序列

訊號處理

影像處理

資料庫

神經網路

遺傳算法

機器學習

EM 算法

與 Matlab 的差別

訊息

相關網站

參考文獻

最新修改

簡體版

English

載入儲存影像

> w=imread('d:/ccc/ccc.jpg');
> figure, imshow(w), pixval on
> imfinfo('d:/ccc/ccc.jpg')
ans =
{
  Filename = d:/ccc/ccc.jpg
  FileSize =  3183
  Height =  149
  Width =  132
  BitDepth =  8
  Format = JPEG
  LongFormat = Joint Photographic Experts Group JFIF format
  XResolution =  96
  YResolution =  96
  TotalColors =  6753
  TileName =
  AnimationDelay = 0
  AnimationIterations = 0
  ByteOrder = undefined
  Gamma = 0
  Matte = 0
  ModulusDepth =  8
  Quality =  75
  QuantizeColors =  256
  ResolutionUnits = undefined
  ColorType = truecolor
  View =
  FileModDate =  7-Dec-2010 11:51:14
}

> imwrite(w, 'd:/ccc/ccc_write.png', 'png');

參考文獻

  1. Image Processing Toolbox for Octave — http://www.irit.fr/PERSONNEL/SAMOVA/joly/Teaching/M2IRR/IRR05/index.html
  2. MATLAB and Octave Functions for Computer Vision and Image Processing — http://hi.baidu.com/simonyuee/blog/item/5c479a0e382cf3eb37d12221.html
  3. Octave bindings for OpenCV — http://octave-swig.sourceforge.net/octave-opencv.html
  4. MATLAB and Octave Functions for Computer Vision and Image Processing

Facebook

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