1 / 19

Improvements to the JPEG-LS prediction scheme

Improvements to the JPEG-LS prediction scheme. Authors: S. Bedi, E. A. Edirisinghe, and G. Grecos Source : Image and Vision Computing. Vol. 22, No. 1, 2004, pp. 9-14 Speaker: Chia-Chun Wu ( 吳佳駿 ) Date : 2004/09/15. Outline. JPEG-LS prediction scheme Improvements JPEG-LS

norris
Download Presentation

Improvements to the JPEG-LS prediction scheme

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Improvements to the JPEG-LS prediction scheme Authors:S. Bedi, E. A. Edirisinghe, and G. Grecos Source : Image and Vision Computing. Vol. 22, No. 1, 2004, pp. 9-14 Speaker:Chia-Chun Wu (吳佳駿) Date : 2004/09/15

  2. Outline • JPEG-LS prediction scheme • Improvements JPEG-LS • Our method • Sample images • Experimental results • Comments

  3. JPEG-LS prediction scheme  JPEG-LS predictive template

  4. Improvements JPEG-LS Diagonal edge T1=20, T2=0

  5. Our method

  6. Sample images Airplane Baboon

  7. Sample images Barb Boat

  8. Sample images Girl Gold

  9. Sample images Lena Lenna

  10. Sample images Pepper Sailboat

  11. Experimental results  Predictive mean squared error N = 9

  12. Experimental results Table 1 Lossless compression ratios of all test images (Unit: Bytes)

  13. Experimental results Table 2 Lossless compression ratios of all test images (Unit: Bytes)

  14. Experimental results Table 3 PMSE values of all test images (T1=20, T2=0)

  15. Experimental results Table 4 PMSE values of all test images (T1=20, T2=0)

  16. Comments • 本篇論文的預測方法,獲得的PMSE整較傳統的JPEG-LS好,但是影像整體的壓縮率卻沒有明顯的提升。 • 跟傳統的JPEG-LS及本篇論文的方法比較,目前我們提的預測方法,並沒有提升預測的準確度及影像的壓縮率。

  17. Source Code if (Rc >= MAX(Ra,Rb)) Px = MIN(Ra,Rb); else if (Rc <= MIN(Ra,Rb)) Px = MAX(Ra,Rb); else Px = (Ra + Rb - Rc); Errval = (Ix - Px); PMSE = PMSE+ (Errval*Errval);

  18. Source Code if ( (((Rc -MAX(Ra,Rb)) > Threshold1) || ((MIN(Ra,Rb)-Rc) > Threshold1)) && (ABS(Ra-Rb) <= Threshold2) ) { Px=(Ra + Rb + Rd)/3; } else if (Rc >= MAX(Ra,Rb)) Px = MIN(Ra,Rb); else if (Rc <= MIN(Ra,Rb)) Px = MAX(Ra,Rb); else Px = (Ra + Rb - Rc); Errval = (Ix - Px); PMSE = PMSE+ (Errval*Errval);

  19. Source Code Px = (Ra + Rb + Rc) /3; Errval = (Ix - Px); PMSE = PMSE+ (Errval*Errval);

More Related