- Practical Convolutional Neural Networks
- Mohit Sewak Md. Rezaul Karim Pradeep Pujari
- 161字
- 2021-06-24 18:58:53
How do computers interpret images?
Essentially, every image can be represented as a matrix of pixel values. In other words, images can be thought of as a function (f) that maps from R2 to R.
f(x, y) gives the intensity value at the position (x, y). In practice, the value of the function ranges only from 0 to 255. Similarly, a color image can be represented as a stack of three functions. We can write this as a vector of:
f( x, y) = [ r(x,y) g(x,y) b(x,y)]
Or we can write this as a mapping:
f: R x R --> R3
So, a color image is also a function, but in this case, a value at each (x,y) position is not a single number. Instead it is a vector that has three different light intensities corresponding to three color channels. The following is the code for seeing the details of an image as input to a computer.
- 數據庫原理及應用教程(第4版)(微課版)
- 數據庫基礎與應用:Access 2010
- 數據之巔:數據的本質與未來
- Mastering Ninject for Dependency Injection
- R數據科學實戰(zhàn):工具詳解與案例分析(鮮讀版)
- Hadoop大數據實戰(zhàn)權威指南(第2版)
- 智能數據時代:企業(yè)大數據戰(zhàn)略與實戰(zhàn)
- 大數據技術入門
- Solaris操作系統(tǒng)原理實驗教程
- Hadoop集群與安全
- MySQL技術內幕:SQL編程
- 數據修復技術與典型實例實戰(zhàn)詳解(第2版)
- 大數據技術原理與應用:概念、存儲、處理、分析與應用
- 云計算寶典:技術與實踐
- Access 2010數據庫程序設計實踐教程