2018-10-16图像编码问题

图像的信息不像我们想的那么简单,看着是一张黑白图,其实里面有各种各样的像素值。看着后缀都是png,其实真正的格式却是jpg。。。

>> info=imfinfo('1.png')

info = 

           Filename: 'E:\pku\images\1.png'
        FileModDate: '07-Oct-2018 16:13:46'
           FileSize: 23300
             Format: 'jpg'
      FormatVersion: ''
              Width: 256
             Height: 256
           BitDepth: 24
          ColorType: 'truecolor'
    FormatSignature: ''
    NumberOfSamples: 3
       CodingMethod: 'Huffman'
      CodingProcess: 'Sequential'
            Comment: {}

记录一下:
现在的edges图有毛病,像素大部分是255,小部分0,与极小部分254
现在是三通道图,转灰度
G=rgb2gray(A)
灰度转二值:

t=graythresh(G)
im2bw(G,t)

看起来没区别,但是压缩起来区别太大了。

你可能感兴趣的:(2018-10-16图像编码问题)