SlideShare ist ein Scribd-Unternehmen logo
1 von 11
Downloaden Sie, um offline zu lesen
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING &
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

TECHNOLOGY (IJCET)

ISSN 0976 – 6367(Print)
ISSN 0976 – 6375(Online)
Volume 4, Issue 6, November - December (2013), pp. 367-377
© IAEME: www.iaeme.com/ijcet.asp
Journal Impact Factor (2013): 6.1302 (Calculated by GISI)
www.jifactor.com

IJCET
©IAEME

A LOW COMPLEX ADPCM IMAGE COMPRESSION TECHNIQUE WITH
HIGHER COMPRESSION RATIO
Ashok Kumar1,

Rajiv Kumaran2,

Sandip Paul, Sanjeev Mehta

Scientist/Engineer, Space Applications Centre, Indian Space Research Organization Ahmedabad,
India- 380015

ABSTRACT
Future high resolution instruments planned by ISRO for space remote sensing will have
higher data rates as a result of planned improvements in resolution and dynamic range. Limited
transmission capability mandates higher compression ratio for such missions. Differential Pulse
Code Modulation (DPCM) is prediction based image compression technique (10:7) successfully used
in Resourcesat-2 mission. An effort has been made to develop low complex image compression
techniques with higher compression ratio while maintaining similar/better radiometric performance.
Adaptive DPCM (ADPCM) is another prediction based image compression technique, which has
been used by other space agencies with proprietary algorithms. Custom ADPCM techniques with
multiple quantizers are developed with compression ratio of 10:6 and 10:5. Developed low complex
ADPCM techniques are unique w.r.t. predictor selection. Developed techniques are evaluated for
both low and high contrast images.
KEYWORDS: DPCM, RMSE, Dynamic Range, Compression.
1.

INTRODUCTION

In remote sensing payloads, parameters like spatial resolution, radiometric resolution,
spectral bands and swath determine the data volume to be down linked. Present and future remote
sensing payloads demand improvements of these parameters. Satellite power and transmission
bandwidth limit real time data-rate transmission. Data compression is usually employed to meet
transmission capacity. Various onboard data compression techniques have been used in space
missions [1].
Data compression can be lossless or lossy. Lossy methods provide higher compression but
have some implications on scientific information (performance in terms of RMSE). Trade-off studies
among satellite resources, application and available technology decide the compression ratio.
367
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

Differential Pulse Code Modulation (DPCM) is one of the prediction based data compression
techniques. It was first used in SPOT-1 (CNES-1986) mission with 1.33:1 compression ratio [2]. In
Resourcesat-2 (ISRO-2011) LISS-4 payload, DPCM was used to provide higher radiometric
resolution (10 bit) data w.r.t. Resourcesat-1 after compressing it to existing 7-bit data interface [3, 4].
Figure 1 shows one of the onboard images. The imageries received clearly demonstrate a better
overall image quality compared to Resourcesat-1 (7-bit digitization) [3, 4, 5].

Fig. 1. Resourcesat-2 LISS-4 image

Future remote sensing missions will have wider swath and multiple cameras onboard, which
will lead to higher data rate. Limited transmission capability calls for development of image
compression techniques with higher compression ratios. Hence, efforts are made to analyze and
develop a compression technique with higher compression ratio like 10:6 and 10:5 while ensuring
similar/better dynamic range and radiometric performance.
Adaptive DPCM (ADPCM) provides better radiometric performance than DPCM [1]. With
proprietary algorithm, its variants have been implemented in LANDSAT, IKONOS, Worldview and
Quickbird missions with compression ratio as high as 2.5 and 4 [1]. To meet required compression
ratios, custom ADPCM techniques with adaptive quantization are explored and developed. Quantizer
of proposed technique meets required dynamic range.
This paper provides details of existing DPCM technique, newly developed ADPCM
techniques and simulation results. ADPCM techniques are developed with pixel group size of 3X3.
Their performance is compared with existing DPCM technique.
Quantization error refers to error due to quantizer (i.e. LUT) mapping and not because of
Analog to Digital Converter (ADC).

368
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

2.

EXISTING DPCM TECHNIQUE

Block diagram of existing DPCM encoder/decoder is shown in Figure-2. DPCM is
implemented in a group of pixels. In a single group, at least one pixel is transmitted in its original
form (lossless) [3]. For remaining pixels, residue with predictor is quantized and transmitted.

Fig. 2. DPCM block diagram
Algorithm of existing DPCM technique is shown in Table-1. DPCM technique is applied
separately on odd and even ports to eliminate effect of port level gain/offset variation. A group of 4
adjacent pixels e.g. P1, P3, P5 & P7 for odd port is processed at a time. Hence, real time data
compression is carried out on ADC output data directly with no external memory. For P1, P5 & P7
pixels, the 6-bit difference value (residue) will be transmitted. This difference value will occupy >6
bits, hence a piecewise linear quantization table (LUT: Look up Table) is prepared to retain the
information at low differences (vegetation) at the expense of some loss at higher differences (cloud
& snow) as shown in Figure-3 [5].
Table 1: Algorithm of Existing DPCM Technique

369
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

Fig. 3. Existing DPCM’s Quantizers (LUT) Details
Input Difference Value (IDV) i.e. the DPCM residue P1-P3 or similar is quantized through
LUT and 6-bit (including one sign bit) Encoded LUT value (ELV) is generated. One of the pixels is
sent without processing. Hence 25% data will be recovered losslessly. Decoded LUT values (DLV)
are available on ground while decoding.
Existing DPCM technique is developed with quantizer dynamic range of 270 IDV only [5],
which was derived based on analysis of various payload images. But, IDV up to 600 count is
possible due to higher system MTF performance, which indicates that ringing artifacts are expected
at high contrast locations [5]. Dynamic range of existing LUT can be increased through bigger step
sizes, but this will degrade radiometric performance. Another issue with existing DPCM technique is
error propagation i.e. error in recovery of P5 pixel affects P7 pixel’s recovery.
The issue of dynamic range coverage and radiometric performance can be resolved by multiple
quantizers. Quantizers will be applied selectively as per input contrast per group. Quantizer with
small step size will be applied at low contrast location; this will ensure better radiometric
performance considering higher probability of such instances (60-90%). Quantizer with bigger step
size will be applied at high contrast location. This will cover input dynamic range and reduce ringing
artifacts. Requirement of multiple quantizers leads to Adaptive DPCM (ADPCM) technique, which
is discussed in next section.
3.

DEVELOPMENT OF ADPCM TECHNIQUES

ADPCM can be adaptive in terms of predictor or quantizer or both [6]. Block diagram of
proposed ADPCM encoder/decoder with adaptive quantization is shown in figure-4. ADPCM is
implemented in a group of pixels. In a single group, at least one pixel is transmitted in original form
(lossless) [3, 5]. For remaining pixels, residue with predictor is quantized and transmitted.

370
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

Fig. 4. ADPCM block diagram
Group size selection is one of the major design considerations. Smaller group size causes
lesser prediction error and poorer compression ratio. However, bigger group size causes more
prediction error and better compression ratio. Existing DPCM technique uses pixel group size of 4.
To achieve higher compression ratio, group size needs to be increased. Existing DPCM technique
utilizes only across track data because of non-availability of external memory. With uses of along
track data also, group size can be increased with similar prediction error. ADPCM techniques are
studied and developed with pixel group size 3X3. Details are given next.
3.1 Development of ADPCM (10:6) technique
ADPCM technique requires compression of 9-pixel 90-bit data to 54-bit. One reference pixel
will occupy full 10-bits. Mapped eight IDV values occupy 48-bits (6-bit quantizer, which includes
one sign bit). This produces 58 output bits. Hence, to achieve higher compression ratio, number of
quantization levels in LUT are reduced to 16 from earlier 32. Eight quantizers are used to cover IDV
dynamic range. This requires transmission of 3 LUT-sel bits. So out of 54 bits, 53 bits (10 + 5X8 +
3) have been utilized. Algorithm of proposed ADPCM technique for odd pixel group is shown in
Table-2.
Table 2: Algorithm of Proposed ADPCM (10:6)

371
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976
ernational
0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

For low contrast group, lossless LUT (LUT-DR-15) is applied. This means IDV values are
(LUT
transmitted losslessly. For high contrast group, lossy LUTs are applied. Higher dynamic range of
LUT produces more quantization error. LUT is kept same for one group which consists of 8 IDVs.
For LUT selection, RMSE error per group with each LUT is computed. LUT with minimum RMSE
with
is selected for final implementation.

Fig. 5. Proposed ADPCM (10:6) Quantizer Details
One of the main advantages of this technique is zero error propagation, as predictor is same
for all encoded pixels [5]. Quantizers dynamic range is 908 IDVs compared to requirement of 600
IDVs. The only issue is higher hardware complexity.
Prediction can be further improved if reference pixels of nearest groups are averaged first to
estimate the predictor. This averaging reduces the ADPCM residue at high contrast locations. Lesser
residue leads to lesser quantization error. However, this generates different predictors for each of 8
different
processed pixels. This technique can be termed as ADPCM-RA (Reference Averaging). Details are
ADPCM RA
shown in Figure-6. It should be noted that still there is no error propagation in recovery, as same
6.
predictor is available at ground during decompression.
uring

Fig. 6. Algorithm of proposed ADPCM-RA (10:6)
ADPCM
3.2 Development of ADPCM (10:5) technique
This technique is similar to ADPCM-RA (10:6) except quantizers. Here, quantization levels
ADPCM RA
are reduced to 8 only. Details of algorithm are shown in Figure-7. Quantizer details are shown in
Figur 7.
Figure-8.
372
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

Fig. 7. Algorithm of proposed ADPCM-RA (10:5)

Fig. 8. Proposed ADPCM-RA (10:5) Quantizer Details
However, it should be noted that dynamic range coverage of lossless LUT is 7 IDV only and
maximum dynamic range is 423. Hence, some radiometric degradation is expected compared to
ADPCM (10:6).
4.

RMSE SIMULATION RESULTS

Four different image-sets covering various contrast ranges are used for simulation purpose.
These are shown in figure-9. Table-3 shows image parameters. Image1 & 2 can be treated as low
contrast images. Image-4 is of very high contrast image.

RMSE =

1
m.n

m −1 n −1

∑∑ [I

REF

(i, j ) − I re cov ered (i, j )] 2

(1)

i =0 j =0

ïŁź1023
ïŁč
Entropy ( bits / pixel ) = log 2 ïŁŻ
i. p ( i ) ïŁș ,
ïŁŻ
ïŁș
ïŁ° i =0
ïŁ»

∑

th

p ( i ) = probabilit y of i count

373

(2)
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

Line Complexity =

m n −1
1
∑ ∑ I REF (i, j + 1) − I re cov ered (i, j )
m (n − 1) i=0 j =0

(3)

Line complexity is computed from across track odd pixel data.

Fig. 9. Image-sets used for simulation
Table 3: Simulation Image-sets parameters

Summary of simulation results with these images are shown in Figure-10. ADPCM (10:6)
provide much better performance than existing DPCM (10:7) technique. ADPCM-RA provides
further improvement. For low contrast images, ADPCM-RA (10:5) provides similar performance to
374
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

existing DPCM (10:7) technique. Insufficient dynamic range coverage affects ADPCM-RA (10:5)
performance for high contrast images. Figure-11 shows Peak error comparison.

Fig. 10. RMSE Performance Comparison

Fig. 11. Peak Error Comparison
These results are verified with the recovered pixel statistics from ADPCM techniques. This is
shown in Figure-12 & 13. For image-set1 & 2, >74% and >40% pixels are processed with lossless
LUT in ADPCM (10:6) and ADPCM-RA (10:5) respectively.
375
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

Fig. 12. Recovered data Statistics with ADPCM (10:6)

Fig. 13. Recovered data Statistics with ADPCM-RA (10:5)

5.

CONCLUSION

The proposed ADPCM techniques provide higher compression ratio and considerable
improvement in radiometric performance at low as well as high contrast image-sets compared to
existing DPCM technique. Newly developed ADPCM (10:6) techniques provide RMSE of 7 counts
compared to 41 counts for very high contrast image. It also provides RMSE of 0.20 counts compared
to 0.48 counts with low contrast images. Proposed ADPCM (10:5) technique provides also provide
significant improvement in radiometric performance. Proposed technique provides up to 40% higher
compression ratio. Both techniques are a low complex solution and can be implemented in FPGA.
6.

ACKNOWLEDGMENT

We gratefully acknowledge the constant encouragement and guidance received from Shri
Arup Roy Chowdhury – GD-SEG, Shri R M Parmar-DD-SRA, Shri DRM Samudraiah- Prof. Satish
Dhawan Scientist, Shri Saji A Kuriakose–DD-SEDA and Shri A. S. Kiran Kumar-Director SAC. We
are thankful to our colleagues of Payload Checkout Electronics Group for providing the images.
376
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME

7.

REFERENCES

[1]

Guoxia Yu, Tanya Vladimirova: ‘Image Compression systems on board satellites’, Acta
Astronautica, vol 64, pp 988-1005, 2009.
[2] Carole thiebaut, “CNES Studies for On-Board compression of High Resolution Satellite
Images”.
[3] Deviprasad: “Indian Remote Sensing Satellites- Resourcesat2 Mission Status’, India Civil
Commercial Imagery Evaluation Workshop, March 17, 2010.
[4] “Resourcesat-2 data user handbook” Dec 2011, National Remote Sensing Centre- ISRO
[5] Ashok Kumar, Rajiv Kumaran: ‘Improvement in DPCM image Compression Technique’,
itSIP-2013, 18-19 Oct-2013, Mumbai-India, pp 280-284.
[6] Majid Rabbani: ‘Digital Image Compression Techniques’, Eastman Kodak Company,
Volume TT 7, Spie Optical Engineering Press, 1995.
[7] Rafel C Gonzalez, “Digital Image Processing using MATLAB”.
[8] Karimella Vikram, Dr. Niraj Upadhayaya, Dr.A.Goverdhan and T.Madhavi Kumari, “Image
Compression using Sand Algorithm”, International Journal of Computer Engineering &
Technology (IJCET), Volume 3, Issue 3, 2012, pp. 121 - 128, ISSN Print: 0976 – 6367,
ISSN Online: 0976 – 6375.
[9] S.Anandanarayanan and Dr.S.K.Srivatsa, “A High Performance Novel Image Compression
Technique using Huffman Coding with Edge Dection”, International Journal of Computer
Engineering & Technology (IJCET), Volume 4, Issue 2, 2013, pp. 17 - 22, ISSN Print:
0976 – 6367, ISSN Online: 0976 – 6375.
[10] Hitashi and Sugandha Sharma, “Fractal Image Compression Scheme using Biogeography
Based Optimization on Color Images”, International Journal of Computer Engineering &
Technology (IJCET), Volume 3, Issue 2, 2012, pp. 35 - 46, ISSN Print: 0976 – 6367,
ISSN Online: 0976 – 6375.

377

Weitere Àhnliche Inhalte

Was ist angesagt?

HPC with Clouds and Cloud Technologies
HPC with Clouds and Cloud TechnologiesHPC with Clouds and Cloud Technologies
HPC with Clouds and Cloud Technologies
Inderjeet Singh
 
Paper id 37201520
Paper id 37201520Paper id 37201520
Paper id 37201520
IJRAT
 
COLOR IMAGE ENCRYPTION BASED ON MULTIPLE CHAOTIC SYSTEMS
COLOR IMAGE ENCRYPTION BASED ON MULTIPLE CHAOTIC SYSTEMSCOLOR IMAGE ENCRYPTION BASED ON MULTIPLE CHAOTIC SYSTEMS
COLOR IMAGE ENCRYPTION BASED ON MULTIPLE CHAOTIC SYSTEMS
IJNSA Journal
 
Design and implementation a prototype system for fusion image by using SWT-PC...
Design and implementation a prototype system for fusion image by using SWT-PC...Design and implementation a prototype system for fusion image by using SWT-PC...
Design and implementation a prototype system for fusion image by using SWT-PC...
IJECEIAES
 

Was ist angesagt? (17)

IRJET - Wavelet based Image Fusion using FPGA for Biomedical Application
 IRJET - Wavelet based Image Fusion using FPGA for Biomedical Application IRJET - Wavelet based Image Fusion using FPGA for Biomedical Application
IRJET - Wavelet based Image Fusion using FPGA for Biomedical Application
 
Hybrid Technique for Image Enhancement
Hybrid Technique for Image EnhancementHybrid Technique for Image Enhancement
Hybrid Technique for Image Enhancement
 
Estimation of Optimized Energy and Latency Constraint for Task Allocation in ...
Estimation of Optimized Energy and Latency Constraint for Task Allocation in ...Estimation of Optimized Energy and Latency Constraint for Task Allocation in ...
Estimation of Optimized Energy and Latency Constraint for Task Allocation in ...
 
High Speed and Area Efficient 2D DWT Processor Based Image Compression
High Speed and Area Efficient 2D DWT Processor Based Image CompressionHigh Speed and Area Efficient 2D DWT Processor Based Image Compression
High Speed and Area Efficient 2D DWT Processor Based Image Compression
 
IRJET- Implementation of Reversible Radix-2 FFT VLSI Architecture using P...
IRJET-  	  Implementation of Reversible Radix-2 FFT VLSI Architecture using P...IRJET-  	  Implementation of Reversible Radix-2 FFT VLSI Architecture using P...
IRJET- Implementation of Reversible Radix-2 FFT VLSI Architecture using P...
 
HPC with Clouds and Cloud Technologies
HPC with Clouds and Cloud TechnologiesHPC with Clouds and Cloud Technologies
HPC with Clouds and Cloud Technologies
 
IRJET- Color Image Compression using Canonic Signed Digit and Block based...
IRJET-  	  Color Image Compression using Canonic Signed Digit and Block based...IRJET-  	  Color Image Compression using Canonic Signed Digit and Block based...
IRJET- Color Image Compression using Canonic Signed Digit and Block based...
 
珏12曞 é…äżĄèŹ›çŸ© èšˆçź—ç§‘ć­ŠæŠ€èĄ“ç‰č論A2021
珏12曞 é…äżĄèŹ›çŸ© èšˆçź—ç§‘ć­ŠæŠ€èĄ“ç‰č論A2021ïŒ‰çŹŹ12曞 é…äżĄèŹ›çŸ© èšˆçź—ç§‘ć­ŠæŠ€èĄ“ç‰č論A2021
珏12曞 é…äżĄèŹ›çŸ© èšˆçź—ç§‘ć­ŠæŠ€èĄ“ç‰č論A2021
 
IRJET - A Speculative Approximate Adder for Error Recovery Unit
IRJET - A Speculative Approximate Adder for Error Recovery UnitIRJET - A Speculative Approximate Adder for Error Recovery Unit
IRJET - A Speculative Approximate Adder for Error Recovery Unit
 
Paper id 37201520
Paper id 37201520Paper id 37201520
Paper id 37201520
 
IRJET- Accuracy Configurable Adder
IRJET- Accuracy Configurable AdderIRJET- Accuracy Configurable Adder
IRJET- Accuracy Configurable Adder
 
Performance Analysis of Iterative Closest Point (ICP) Algorithm using Modifie...
Performance Analysis of Iterative Closest Point (ICP) Algorithm using Modifie...Performance Analysis of Iterative Closest Point (ICP) Algorithm using Modifie...
Performance Analysis of Iterative Closest Point (ICP) Algorithm using Modifie...
 
COLOR IMAGE ENCRYPTION BASED ON MULTIPLE CHAOTIC SYSTEMS
COLOR IMAGE ENCRYPTION BASED ON MULTIPLE CHAOTIC SYSTEMSCOLOR IMAGE ENCRYPTION BASED ON MULTIPLE CHAOTIC SYSTEMS
COLOR IMAGE ENCRYPTION BASED ON MULTIPLE CHAOTIC SYSTEMS
 
IRJET- VLSI Architecture for Reversible Radix-2 FFT Algorithm using Programma...
IRJET- VLSI Architecture for Reversible Radix-2 FFT Algorithm using Programma...IRJET- VLSI Architecture for Reversible Radix-2 FFT Algorithm using Programma...
IRJET- VLSI Architecture for Reversible Radix-2 FFT Algorithm using Programma...
 
GAMesh
GAMeshGAMesh
GAMesh
 
IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...
IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...
IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...
 
Design and implementation a prototype system for fusion image by using SWT-PC...
Design and implementation a prototype system for fusion image by using SWT-PC...Design and implementation a prototype system for fusion image by using SWT-PC...
Design and implementation a prototype system for fusion image by using SWT-PC...
 

Andere mochten auch

Presentaci ofinal basic
Presentaci ofinal basicPresentaci ofinal basic
Presentaci ofinal basic
Ivan Alonso
 
OMNITI_surge2014_website
OMNITI_surge2014_websiteOMNITI_surge2014_website
OMNITI_surge2014_website
Kelly Anne Johnson
 
Nilai uas tik kls xi smt genap 2015
Nilai uas tik kls xi smt genap 2015Nilai uas tik kls xi smt genap 2015
Nilai uas tik kls xi smt genap 2015
samrin khan
 
Centenaire
CentenaireCentenaire
Centenaire
LECREURER
 
M soldadura puntosextracto
M soldadura puntosextractoM soldadura puntosextracto
M soldadura puntosextracto
CaĂ­n Castillo
 
Communiqué fdc 59 62 80 (3)
Communiqué fdc 59 62 80 (3)Communiqué fdc 59 62 80 (3)
Communiqué fdc 59 62 80 (3)
nicolasgueroult
 
Guia metodologia primaria
Guia metodologia primariaGuia metodologia primaria
Guia metodologia primaria
javiuclm4
 
Trainings.2015.prev employ.Elias
Trainings.2015.prev employ.EliasTrainings.2015.prev employ.Elias
Trainings.2015.prev employ.Elias
Elias1 Zaira
 
Test slide
Test slideTest slide
Test slide
embenedict
 
Virus y antivirus diapo
Virus y antivirus diapoVirus y antivirus diapo
Virus y antivirus diapo
lorainemora
 

Andere mochten auch (20)

20320130406022 2
20320130406022 220320130406022 2
20320130406022 2
 
30120130406022
3012013040602230120130406022
30120130406022
 
Sme indonesia bisa
Sme indonesia bisaSme indonesia bisa
Sme indonesia bisa
 
Bai tap kinh te vi mo co loi giai
Bai tap kinh te vi mo co loi giaiBai tap kinh te vi mo co loi giai
Bai tap kinh te vi mo co loi giai
 
La revista
La revista La revista
La revista
 
Presentaci ofinal basic
Presentaci ofinal basicPresentaci ofinal basic
Presentaci ofinal basic
 
OMNITI_surge2014_website
OMNITI_surge2014_websiteOMNITI_surge2014_website
OMNITI_surge2014_website
 
A cabaza
A cabazaA cabaza
A cabaza
 
Ecuaciones diferenciales parciales
Ecuaciones diferenciales parcialesEcuaciones diferenciales parciales
Ecuaciones diferenciales parciales
 
Nilai uas tik kls xi smt genap 2015
Nilai uas tik kls xi smt genap 2015Nilai uas tik kls xi smt genap 2015
Nilai uas tik kls xi smt genap 2015
 
Centenaire
CentenaireCentenaire
Centenaire
 
M soldadura puntosextracto
M soldadura puntosextractoM soldadura puntosextracto
M soldadura puntosextracto
 
Communiqué fdc 59 62 80 (3)
Communiqué fdc 59 62 80 (3)Communiqué fdc 59 62 80 (3)
Communiqué fdc 59 62 80 (3)
 
Guia metodologia primaria
Guia metodologia primariaGuia metodologia primaria
Guia metodologia primaria
 
Trainings.2015.prev employ.Elias
Trainings.2015.prev employ.EliasTrainings.2015.prev employ.Elias
Trainings.2015.prev employ.Elias
 
01. pequeña y mediana empresa los retos son de gestión, no de técnica
01. pequeña y mediana empresa los retos son de gestión, no de técnica01. pequeña y mediana empresa los retos son de gestión, no de técnica
01. pequeña y mediana empresa los retos son de gestión, no de técnica
 
Resolucion cĂ mara absa causa nÂș 17310 ccalp
Resolucion cĂ mara absa causa nÂș 17310 ccalpResolucion cĂ mara absa causa nÂș 17310 ccalp
Resolucion cĂ mara absa causa nÂș 17310 ccalp
 
Managing contracts
Managing contractsManaging contracts
Managing contracts
 
Test slide
Test slideTest slide
Test slide
 
Virus y antivirus diapo
Virus y antivirus diapoVirus y antivirus diapo
Virus y antivirus diapo
 

Ähnlich wie 50120130406040

A Novel Image Compression Approach Inexact Computing
A Novel Image Compression Approach Inexact ComputingA Novel Image Compression Approach Inexact Computing
A Novel Image Compression Approach Inexact Computing
ijtsrd
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compression
IAEME Publication
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compression
IAEME Publication
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compression
IAEME Publication
 

Ähnlich wie 50120130406040 (20)

50120140501016
5012014050101650120140501016
50120140501016
 
A041203010014
A041203010014A041203010014
A041203010014
 
50120140506013 2
50120140506013 250120140506013 2
50120140506013 2
 
An approach for color image compression of bmp and tiff images using dct and dwt
An approach for color image compression of bmp and tiff images using dct and dwtAn approach for color image compression of bmp and tiff images using dct and dwt
An approach for color image compression of bmp and tiff images using dct and dwt
 
AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...
AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...
AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...
 
Adaptive Neuro-Fuzzy Inference System (ANFIS) for segmentation of image ROI a...
Adaptive Neuro-Fuzzy Inference System (ANFIS) for segmentation of image ROI a...Adaptive Neuro-Fuzzy Inference System (ANFIS) for segmentation of image ROI a...
Adaptive Neuro-Fuzzy Inference System (ANFIS) for segmentation of image ROI a...
 
Squashed JPEG Image Compression via Sparse Matrix
Squashed JPEG Image Compression via Sparse MatrixSquashed JPEG Image Compression via Sparse Matrix
Squashed JPEG Image Compression via Sparse Matrix
 
SQUASHED JPEG IMAGE COMPRESSION VIA SPARSE MATRIX
SQUASHED JPEG IMAGE COMPRESSION VIA SPARSE MATRIXSQUASHED JPEG IMAGE COMPRESSION VIA SPARSE MATRIX
SQUASHED JPEG IMAGE COMPRESSION VIA SPARSE MATRIX
 
Squashed JPEG Image Compression via Sparse Matrix
Squashed JPEG Image Compression via Sparse MatrixSquashed JPEG Image Compression via Sparse Matrix
Squashed JPEG Image Compression via Sparse Matrix
 
Lossless Data Compression Using Rice Algorithm Based On Curve Fitting Technique
Lossless Data Compression Using Rice Algorithm Based On Curve Fitting TechniqueLossless Data Compression Using Rice Algorithm Based On Curve Fitting Technique
Lossless Data Compression Using Rice Algorithm Based On Curve Fitting Technique
 
A new method for self-organized dynamic delay loop associated pipeline with ...
A new method for self-organized dynamic delay loop associated  pipeline with ...A new method for self-organized dynamic delay loop associated  pipeline with ...
A new method for self-organized dynamic delay loop associated pipeline with ...
 
50120130406023
5012013040602350120130406023
50120130406023
 
IRJET- Performance Analysis of IP Over Optical CDMA System based on RD Code
IRJET- Performance Analysis of IP Over Optical CDMA System based on RD CodeIRJET- Performance Analysis of IP Over Optical CDMA System based on RD Code
IRJET- Performance Analysis of IP Over Optical CDMA System based on RD Code
 
Fuzzy Type Image Fusion Using SPIHT Image Compression Technique
Fuzzy Type Image Fusion Using SPIHT Image Compression TechniqueFuzzy Type Image Fusion Using SPIHT Image Compression Technique
Fuzzy Type Image Fusion Using SPIHT Image Compression Technique
 
IRJET-Simulation of Channel-Estimation for Digital Communication System based...
IRJET-Simulation of Channel-Estimation for Digital Communication System based...IRJET-Simulation of Channel-Estimation for Digital Communication System based...
IRJET-Simulation of Channel-Estimation for Digital Communication System based...
 
A Novel Image Compression Approach Inexact Computing
A Novel Image Compression Approach Inexact ComputingA Novel Image Compression Approach Inexact Computing
A Novel Image Compression Approach Inexact Computing
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compression
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compression
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compression
 
Ec36783787
Ec36783787Ec36783787
Ec36783787
 

Mehr von IAEME Publication

A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
IAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
IAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
IAEME Publication
 

Mehr von IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

KĂŒrzlich hochgeladen

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

KĂŒrzlich hochgeladen (20)

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Navi Mumbai Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls đŸ„° 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 

50120130406040

  • 1. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME TECHNOLOGY (IJCET) ISSN 0976 – 6367(Print) ISSN 0976 – 6375(Online) Volume 4, Issue 6, November - December (2013), pp. 367-377 © IAEME: www.iaeme.com/ijcet.asp Journal Impact Factor (2013): 6.1302 (Calculated by GISI) www.jifactor.com IJCET ©IAEME A LOW COMPLEX ADPCM IMAGE COMPRESSION TECHNIQUE WITH HIGHER COMPRESSION RATIO Ashok Kumar1, Rajiv Kumaran2, Sandip Paul, Sanjeev Mehta Scientist/Engineer, Space Applications Centre, Indian Space Research Organization Ahmedabad, India- 380015 ABSTRACT Future high resolution instruments planned by ISRO for space remote sensing will have higher data rates as a result of planned improvements in resolution and dynamic range. Limited transmission capability mandates higher compression ratio for such missions. Differential Pulse Code Modulation (DPCM) is prediction based image compression technique (10:7) successfully used in Resourcesat-2 mission. An effort has been made to develop low complex image compression techniques with higher compression ratio while maintaining similar/better radiometric performance. Adaptive DPCM (ADPCM) is another prediction based image compression technique, which has been used by other space agencies with proprietary algorithms. Custom ADPCM techniques with multiple quantizers are developed with compression ratio of 10:6 and 10:5. Developed low complex ADPCM techniques are unique w.r.t. predictor selection. Developed techniques are evaluated for both low and high contrast images. KEYWORDS: DPCM, RMSE, Dynamic Range, Compression. 1. INTRODUCTION In remote sensing payloads, parameters like spatial resolution, radiometric resolution, spectral bands and swath determine the data volume to be down linked. Present and future remote sensing payloads demand improvements of these parameters. Satellite power and transmission bandwidth limit real time data-rate transmission. Data compression is usually employed to meet transmission capacity. Various onboard data compression techniques have been used in space missions [1]. Data compression can be lossless or lossy. Lossy methods provide higher compression but have some implications on scientific information (performance in terms of RMSE). Trade-off studies among satellite resources, application and available technology decide the compression ratio. 367
  • 2. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME Differential Pulse Code Modulation (DPCM) is one of the prediction based data compression techniques. It was first used in SPOT-1 (CNES-1986) mission with 1.33:1 compression ratio [2]. In Resourcesat-2 (ISRO-2011) LISS-4 payload, DPCM was used to provide higher radiometric resolution (10 bit) data w.r.t. Resourcesat-1 after compressing it to existing 7-bit data interface [3, 4]. Figure 1 shows one of the onboard images. The imageries received clearly demonstrate a better overall image quality compared to Resourcesat-1 (7-bit digitization) [3, 4, 5]. Fig. 1. Resourcesat-2 LISS-4 image Future remote sensing missions will have wider swath and multiple cameras onboard, which will lead to higher data rate. Limited transmission capability calls for development of image compression techniques with higher compression ratios. Hence, efforts are made to analyze and develop a compression technique with higher compression ratio like 10:6 and 10:5 while ensuring similar/better dynamic range and radiometric performance. Adaptive DPCM (ADPCM) provides better radiometric performance than DPCM [1]. With proprietary algorithm, its variants have been implemented in LANDSAT, IKONOS, Worldview and Quickbird missions with compression ratio as high as 2.5 and 4 [1]. To meet required compression ratios, custom ADPCM techniques with adaptive quantization are explored and developed. Quantizer of proposed technique meets required dynamic range. This paper provides details of existing DPCM technique, newly developed ADPCM techniques and simulation results. ADPCM techniques are developed with pixel group size of 3X3. Their performance is compared with existing DPCM technique. Quantization error refers to error due to quantizer (i.e. LUT) mapping and not because of Analog to Digital Converter (ADC). 368
  • 3. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME 2. EXISTING DPCM TECHNIQUE Block diagram of existing DPCM encoder/decoder is shown in Figure-2. DPCM is implemented in a group of pixels. In a single group, at least one pixel is transmitted in its original form (lossless) [3]. For remaining pixels, residue with predictor is quantized and transmitted. Fig. 2. DPCM block diagram Algorithm of existing DPCM technique is shown in Table-1. DPCM technique is applied separately on odd and even ports to eliminate effect of port level gain/offset variation. A group of 4 adjacent pixels e.g. P1, P3, P5 & P7 for odd port is processed at a time. Hence, real time data compression is carried out on ADC output data directly with no external memory. For P1, P5 & P7 pixels, the 6-bit difference value (residue) will be transmitted. This difference value will occupy >6 bits, hence a piecewise linear quantization table (LUT: Look up Table) is prepared to retain the information at low differences (vegetation) at the expense of some loss at higher differences (cloud & snow) as shown in Figure-3 [5]. Table 1: Algorithm of Existing DPCM Technique 369
  • 4. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME Fig. 3. Existing DPCM’s Quantizers (LUT) Details Input Difference Value (IDV) i.e. the DPCM residue P1-P3 or similar is quantized through LUT and 6-bit (including one sign bit) Encoded LUT value (ELV) is generated. One of the pixels is sent without processing. Hence 25% data will be recovered losslessly. Decoded LUT values (DLV) are available on ground while decoding. Existing DPCM technique is developed with quantizer dynamic range of 270 IDV only [5], which was derived based on analysis of various payload images. But, IDV up to 600 count is possible due to higher system MTF performance, which indicates that ringing artifacts are expected at high contrast locations [5]. Dynamic range of existing LUT can be increased through bigger step sizes, but this will degrade radiometric performance. Another issue with existing DPCM technique is error propagation i.e. error in recovery of P5 pixel affects P7 pixel’s recovery. The issue of dynamic range coverage and radiometric performance can be resolved by multiple quantizers. Quantizers will be applied selectively as per input contrast per group. Quantizer with small step size will be applied at low contrast location; this will ensure better radiometric performance considering higher probability of such instances (60-90%). Quantizer with bigger step size will be applied at high contrast location. This will cover input dynamic range and reduce ringing artifacts. Requirement of multiple quantizers leads to Adaptive DPCM (ADPCM) technique, which is discussed in next section. 3. DEVELOPMENT OF ADPCM TECHNIQUES ADPCM can be adaptive in terms of predictor or quantizer or both [6]. Block diagram of proposed ADPCM encoder/decoder with adaptive quantization is shown in figure-4. ADPCM is implemented in a group of pixels. In a single group, at least one pixel is transmitted in original form (lossless) [3, 5]. For remaining pixels, residue with predictor is quantized and transmitted. 370
  • 5. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME Fig. 4. ADPCM block diagram Group size selection is one of the major design considerations. Smaller group size causes lesser prediction error and poorer compression ratio. However, bigger group size causes more prediction error and better compression ratio. Existing DPCM technique uses pixel group size of 4. To achieve higher compression ratio, group size needs to be increased. Existing DPCM technique utilizes only across track data because of non-availability of external memory. With uses of along track data also, group size can be increased with similar prediction error. ADPCM techniques are studied and developed with pixel group size 3X3. Details are given next. 3.1 Development of ADPCM (10:6) technique ADPCM technique requires compression of 9-pixel 90-bit data to 54-bit. One reference pixel will occupy full 10-bits. Mapped eight IDV values occupy 48-bits (6-bit quantizer, which includes one sign bit). This produces 58 output bits. Hence, to achieve higher compression ratio, number of quantization levels in LUT are reduced to 16 from earlier 32. Eight quantizers are used to cover IDV dynamic range. This requires transmission of 3 LUT-sel bits. So out of 54 bits, 53 bits (10 + 5X8 + 3) have been utilized. Algorithm of proposed ADPCM technique for odd pixel group is shown in Table-2. Table 2: Algorithm of Proposed ADPCM (10:6) 371
  • 6. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 ernational 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME For low contrast group, lossless LUT (LUT-DR-15) is applied. This means IDV values are (LUT transmitted losslessly. For high contrast group, lossy LUTs are applied. Higher dynamic range of LUT produces more quantization error. LUT is kept same for one group which consists of 8 IDVs. For LUT selection, RMSE error per group with each LUT is computed. LUT with minimum RMSE with is selected for final implementation. Fig. 5. Proposed ADPCM (10:6) Quantizer Details One of the main advantages of this technique is zero error propagation, as predictor is same for all encoded pixels [5]. Quantizers dynamic range is 908 IDVs compared to requirement of 600 IDVs. The only issue is higher hardware complexity. Prediction can be further improved if reference pixels of nearest groups are averaged first to estimate the predictor. This averaging reduces the ADPCM residue at high contrast locations. Lesser residue leads to lesser quantization error. However, this generates different predictors for each of 8 different processed pixels. This technique can be termed as ADPCM-RA (Reference Averaging). Details are ADPCM RA shown in Figure-6. It should be noted that still there is no error propagation in recovery, as same 6. predictor is available at ground during decompression. uring Fig. 6. Algorithm of proposed ADPCM-RA (10:6) ADPCM 3.2 Development of ADPCM (10:5) technique This technique is similar to ADPCM-RA (10:6) except quantizers. Here, quantization levels ADPCM RA are reduced to 8 only. Details of algorithm are shown in Figure-7. Quantizer details are shown in Figur 7. Figure-8. 372
  • 7. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME Fig. 7. Algorithm of proposed ADPCM-RA (10:5) Fig. 8. Proposed ADPCM-RA (10:5) Quantizer Details However, it should be noted that dynamic range coverage of lossless LUT is 7 IDV only and maximum dynamic range is 423. Hence, some radiometric degradation is expected compared to ADPCM (10:6). 4. RMSE SIMULATION RESULTS Four different image-sets covering various contrast ranges are used for simulation purpose. These are shown in figure-9. Table-3 shows image parameters. Image1 & 2 can be treated as low contrast images. Image-4 is of very high contrast image. RMSE = 1 m.n m −1 n −1 ∑∑ [I REF (i, j ) − I re cov ered (i, j )] 2 (1) i =0 j =0 ïŁź1023 ïŁč Entropy ( bits / pixel ) = log 2 ïŁŻ i. p ( i ) ïŁș , ïŁŻ ïŁș ïŁ° i =0 ïŁ» ∑ th p ( i ) = probabilit y of i count 373 (2)
  • 8. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME Line Complexity = m n −1 1 ∑ ∑ I REF (i, j + 1) − I re cov ered (i, j ) m (n − 1) i=0 j =0 (3) Line complexity is computed from across track odd pixel data. Fig. 9. Image-sets used for simulation Table 3: Simulation Image-sets parameters Summary of simulation results with these images are shown in Figure-10. ADPCM (10:6) provide much better performance than existing DPCM (10:7) technique. ADPCM-RA provides further improvement. For low contrast images, ADPCM-RA (10:5) provides similar performance to 374
  • 9. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME existing DPCM (10:7) technique. Insufficient dynamic range coverage affects ADPCM-RA (10:5) performance for high contrast images. Figure-11 shows Peak error comparison. Fig. 10. RMSE Performance Comparison Fig. 11. Peak Error Comparison These results are verified with the recovered pixel statistics from ADPCM techniques. This is shown in Figure-12 & 13. For image-set1 & 2, >74% and >40% pixels are processed with lossless LUT in ADPCM (10:6) and ADPCM-RA (10:5) respectively. 375
  • 10. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME Fig. 12. Recovered data Statistics with ADPCM (10:6) Fig. 13. Recovered data Statistics with ADPCM-RA (10:5) 5. CONCLUSION The proposed ADPCM techniques provide higher compression ratio and considerable improvement in radiometric performance at low as well as high contrast image-sets compared to existing DPCM technique. Newly developed ADPCM (10:6) techniques provide RMSE of 7 counts compared to 41 counts for very high contrast image. It also provides RMSE of 0.20 counts compared to 0.48 counts with low contrast images. Proposed ADPCM (10:5) technique provides also provide significant improvement in radiometric performance. Proposed technique provides up to 40% higher compression ratio. Both techniques are a low complex solution and can be implemented in FPGA. 6. ACKNOWLEDGMENT We gratefully acknowledge the constant encouragement and guidance received from Shri Arup Roy Chowdhury – GD-SEG, Shri R M Parmar-DD-SRA, Shri DRM Samudraiah- Prof. Satish Dhawan Scientist, Shri Saji A Kuriakose–DD-SEDA and Shri A. S. Kiran Kumar-Director SAC. We are thankful to our colleagues of Payload Checkout Electronics Group for providing the images. 376
  • 11. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 4, Issue 6, November - December (2013), © IAEME 7. REFERENCES [1] Guoxia Yu, Tanya Vladimirova: ‘Image Compression systems on board satellites’, Acta Astronautica, vol 64, pp 988-1005, 2009. [2] Carole thiebaut, “CNES Studies for On-Board compression of High Resolution Satellite Images”. [3] Deviprasad: “Indian Remote Sensing Satellites- Resourcesat2 Mission Status’, India Civil Commercial Imagery Evaluation Workshop, March 17, 2010. [4] “Resourcesat-2 data user handbook” Dec 2011, National Remote Sensing Centre- ISRO [5] Ashok Kumar, Rajiv Kumaran: ‘Improvement in DPCM image Compression Technique’, itSIP-2013, 18-19 Oct-2013, Mumbai-India, pp 280-284. [6] Majid Rabbani: ‘Digital Image Compression Techniques’, Eastman Kodak Company, Volume TT 7, Spie Optical Engineering Press, 1995. [7] Rafel C Gonzalez, “Digital Image Processing using MATLAB”. [8] Karimella Vikram, Dr. Niraj Upadhayaya, Dr.A.Goverdhan and T.Madhavi Kumari, “Image Compression using Sand Algorithm”, International Journal of Computer Engineering & Technology (IJCET), Volume 3, Issue 3, 2012, pp. 121 - 128, ISSN Print: 0976 – 6367, ISSN Online: 0976 – 6375. [9] S.Anandanarayanan and Dr.S.K.Srivatsa, “A High Performance Novel Image Compression Technique using Huffman Coding with Edge Dection”, International Journal of Computer Engineering & Technology (IJCET), Volume 4, Issue 2, 2013, pp. 17 - 22, ISSN Print: 0976 – 6367, ISSN Online: 0976 – 6375. [10] Hitashi and Sugandha Sharma, “Fractal Image Compression Scheme using Biogeography Based Optimization on Color Images”, International Journal of Computer Engineering & Technology (IJCET), Volume 3, Issue 2, 2012, pp. 35 - 46, ISSN Print: 0976 – 6367, ISSN Online: 0976 – 6375. 377