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?

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 ApplicationIRJET Journal
 
Hybrid Technique for Image Enhancement
Hybrid Technique for Image EnhancementHybrid Technique for Image Enhancement
Hybrid Technique for Image EnhancementIRJET Journal
 
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 ...ijcsit
 
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 Compressionsipij
 
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...IRJET Journal
 
HPC with Clouds and Cloud Technologies
HPC with Clouds and Cloud TechnologiesHPC with Clouds and Cloud Technologies
HPC with Clouds and Cloud TechnologiesInderjeet Singh
 
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...IRJET Journal
 
第12回 配信講義 計算科学技術特論A(2021)
第12回 配信講義 計算科学技術特論A(2021)第12回 配信講義 計算科学技術特論A(2021)
第12回 配信講義 計算科学技術特論A(2021)RCCSRENKEI
 
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 UnitIRJET Journal
 
Paper id 37201520
Paper id 37201520Paper id 37201520
Paper id 37201520IJRAT
 
IRJET- Accuracy Configurable Adder
IRJET- Accuracy Configurable AdderIRJET- Accuracy Configurable Adder
IRJET- Accuracy Configurable AdderIRJET Journal
 
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...IRJET Journal
 
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 SYSTEMSIJNSA Journal
 
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...IRJET Journal
 
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...IRJET 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

A po afrohet momenti i kthesës për Evropën?!
A po afrohet momenti i kthesës për Evropën?!A po afrohet momenti i kthesës për Evropën?!
A po afrohet momenti i kthesës për Evropën?!Veton Rexhepi
 
Аудио уроци за учители
Аудио уроци за учителиАудио уроци за учители
Аудио уроци за учителиRonnie Davidkova
 
Irvin Goldman: Unhappy Employees Cost America Over 500 Billion Each Year
Irvin Goldman: Unhappy Employees Cost America Over 500 Billion Each YearIrvin Goldman: Unhappy Employees Cost America Over 500 Billion Each Year
Irvin Goldman: Unhappy Employees Cost America Over 500 Billion Each YearIrvin Goldman
 
Meditación sobre el mar
Meditación sobre el marMeditación sobre el mar
Meditación sobre el marRamón Rivas
 
Colegio de estudios científicos y tecnológicos del estado
Colegio de estudios científicos y tecnológicos del estadoColegio de estudios científicos y tecnológicos del estado
Colegio de estudios científicos y tecnológicos del estadouser-123
 
Stephan Gross Resume
Stephan Gross ResumeStephan Gross Resume
Stephan Gross ResumeStephan Gross
 
Valor de la Familia
Valor de la FamiliaValor de la Familia
Valor de la FamiliaMele Watts
 

Andere mochten auch (17)

A po afrohet momenti i kthesës për Evropën?!
A po afrohet momenti i kthesës për Evropën?!A po afrohet momenti i kthesës për Evropën?!
A po afrohet momenti i kthesës për Evropën?!
 
20320130406022 2
20320130406022 220320130406022 2
20320130406022 2
 
50120130406039
5012013040603950120130406039
50120130406039
 
50120130405018
5012013040501850120130405018
50120130405018
 
20120130406020
2012013040602020120130406020
20120130406020
 
40120130405006 2
40120130405006 240120130405006 2
40120130405006 2
 
50120130405013
5012013040501350120130405013
50120130405013
 
Аудио уроци за учители
Аудио уроци за учителиАудио уроци за учители
Аудио уроци за учители
 
Irvin Goldman: Unhappy Employees Cost America Over 500 Billion Each Year
Irvin Goldman: Unhappy Employees Cost America Over 500 Billion Each YearIrvin Goldman: Unhappy Employees Cost America Over 500 Billion Each Year
Irvin Goldman: Unhappy Employees Cost America Over 500 Billion Each Year
 
Meditación sobre el mar
Meditación sobre el marMeditación sobre el mar
Meditación sobre el mar
 
NY Laser Outlet
NY Laser OutletNY Laser Outlet
NY Laser Outlet
 
Case Study on BBC Films
Case Study on BBC FilmsCase Study on BBC Films
Case Study on BBC Films
 
Colegio de estudios científicos y tecnológicos del estado
Colegio de estudios científicos y tecnológicos del estadoColegio de estudios científicos y tecnológicos del estado
Colegio de estudios científicos y tecnológicos del estado
 
Stephan Gross Resume
Stephan Gross ResumeStephan Gross Resume
Stephan Gross Resume
 
De luca norberto.ppt
De luca norberto.pptDe luca norberto.ppt
De luca norberto.ppt
 
16 01-26 mae-informe-diario
16 01-26 mae-informe-diario16 01-26 mae-informe-diario
16 01-26 mae-informe-diario
 
Valor de la Familia
Valor de la FamiliaValor de la Familia
Valor de la Familia
 

Ähnlich wie 50120130406040

A041203010014
A041203010014A041203010014
A041203010014IOSR-JEN
 
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 dwtIAEME Publication
 
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...IAEME Publication
 
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...IRJET Journal
 
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 MATRIXijcsit
 
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 TechniqueIRJET Journal
 
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 ...IJECEIAES
 
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 CodeIRJET Journal
 
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 TechniqueIJERA Editor
 
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...IRJET Journal
 
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 Computingijtsrd
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compressionIAEME Publication
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compressionIAEME Publication
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compressionIAEME 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

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.pdfIAEME Publication
 
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-...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 ENTREPRENEURSIAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSIAEME Publication
 
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 APPLICATIONSIAEME Publication
 
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 TRANSACTIONSIAEME Publication
 
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 ARDUINOIAEME Publication
 
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...IAEME Publication
 
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 ECONOMYIAEME Publication
 
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...IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEIAEME 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
 
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...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
 
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 ENVIRONMENTIAEME 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

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 RobisonAnna Loughnan Colquhoun
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
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 WorkerThousandEyes
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
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 2024The Digital Insurer
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 

Kürzlich hochgeladen (20)

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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
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
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
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
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 

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