SDP Memo 048: Two Dimensional Sparse Fourier Transform Algorithms

Size: px
Start display at page:

Download "SDP Memo 048: Two Dimensional Sparse Fourier Transform Algorithms"

Transcription

1 SDP Memo 048: Two Dimensional Sparse Fourier Transform Algorithms Document Number SDP Memo 048 Document Type MEMO Revision Author Haihang You, Sheng Shi, Runkai Yang Release Date Document Classification Status Draft Lead Author Designation Affiliation Haihang You Professor Institute of Computing Technology, Chinese Academy of Sciences Signature & Date:

2 SDP Memo Disclaimer The SDP memos are designed to allow the quick recording of investigations and research done by members of the SDP. They are also designed to raise questions about parts of the SDP design or SDP process. The contents of a memo may be the opinion of the author, not the whole of the SDP. Table of Contents 1 Introduction 3 2 Two Dimensional Sparse Fast Fourier Transform 3 3 Adaptive Tuning Sparse Fast Fourier Transform 5 4 Conclusion 9 References 9 Page 2 of 10

3 1 Introduction Advances on communication and transmission techniques over Internet have been witnessed under the background of the big data. The amount of signals increases dramatically, and the corresponding high efficiency signal processing techniques are demanded urgently. The discrete Fourier transform (DFT) is one of the most fundamental and important numerical algorithms which plays central roles in signal processing, communications, and audio/image/video compression. The Fast Fourier Transform (FFT) greatly simplifies the complexity of DFT, and shows importance in a broad range of applications. It is well known that most signals are sparsity in frequency domain, and this sparsity property has been widely used in various applications including compressed sensing and radio astronomy. Therefore, for sparse signals, the W(n) lower bound for the complexity of DFT is no longer valid. It is necessary to study the new strategy of the Fourier transform based on signal sparsity. In 2012, Hassanieh et al proposed one-dimensional Sparse Fast Fourier Transform (SFFT) [1][2] which is faster than traditional DFT. However, the two dimensional spare Fourier transform cannot simply implement by utilizing two separate one-dimensional Sparse Fourier transform. Since two-dimensional transform for image signals are more widely used in practival applications, in [3], we proposed a method for two-dimensional Sparse Fast Fourier transform. However, the SFFT implementation has the drawback that it only works reliably for very specific input parameters, especially signal sparsity k. This drawback hinders the extensive applications of SFFT. Therefore, in this paper, we propose a new Adaptive Tuning Sparse Fast Fourier Transform (ATSFFT) [4] to improve the accuracy and robustness of SFFT. By adaptive tuning technology, ATSFFT can probe the sparsity k automatically and achieve the Fourier transform of signals. Experimental results show that ATSFFT not only can control the error better than existing SFFT, but also performs faster than SFFT. 2 Two Dimensional Sparse Fast Fourier Transform Several conventions and notations are used in this paper. A space-domain image is represented as a 2D matrix x 2 C N N, the Fourier spectrum of the image is represented as ˆx. We assume that N is a power of 2, the notation [N] is defined as the set {0,1,...,N 1}, and [N] [N]=[N] 2 denotes the N N grid {(i, j) : i 2 [N], j 2 [N]}. The image support is denoted by supp(x) [N] [N]. All matrix indices are calculated modulo the matrix size, A set of matrix elements can be written as a matrix subscripted with a set of indices, for example x I,J = {x i, j i 2 I, j 2 J}. In addition, we assume that B is a power of 2, and N can be divisible by B. We define w = e 2pi/N to be a primitive N-th root of unity. In the following sections, we will use the following definition of the 2D-DFT without the constant scaling factor: ˆx i, j = Â u2[n] Â v2[n] x u,v w iu+ jv, (i, j) 2 W N W N = {(i, j) 0 apple i apple N 1,0 apple j apple N 1} (1) This makes some proofs easier, but is not relevant in practical implementations. We briefly describe the structure of SFFT. The presentation of all details is beyond the scope of this paper and can be referred to [3] for more information. A simplified flow chart of SFFT is shown in Fig. 1 which originally appeared in[3]. The hash function is the core of SFFT. Hash function includes random spectrum permutation, filtering and subsampling in frequency domain. Page 3 of 10

4 Location Seeking Image and sparsity k Hash Function (Permute, Filter, Subsampling+FFT ) Cutoff (keep dk coordinates of maximum magnitude) Reverse Hash Function L iteration Location Seeking Image and sparsity k Hash Function (Permute, Filter, Subsampling+FFT ) Cutoff (keep dk coordinates of maximum magnitude) Reverse Hash Function coordinates Only keep coordinates occurred in at least half of the location loops coordinates Coefficient Estimation Image and sparsity k Hash Function (Permute, Filter, Subsampling+FFT ) Estimate Coefficient coordinates Coefficient Estimation Image and sparsity k L iteration For each coordinate output the median of coefficients Hash Function (Permute, Filter, Subsampling+FFT ) Estimate Coefficient Figure 1: A simplified flow diagram of SFFT SFFT does not have access to the input image s Fourier spectrum, as that would involve performing DFT. The permutation allows to permute the image s Fourier spectrum by modifying the space domain signal x. This can be done by spectrum factor P s1,s 2,t 1,t 2 where s 1,s 2 are the random step sizes and t 1,t 2 are the offsets. (P s1,s 2,t 1,t 2 x) i, j = x s1 i+t 1,s 2 j+t 2 (2) In order to achieve a sub-linear computational complexity, SFFT uses the Guassian flat window function to extract a part of the input image for computations. According to the convolution theorem, filtering process can expand the area of non-zero coefficients, in preparation for the subsequent sub-sampling and reverse steps, and further increase the probability of detecting non-zero coefficients. SFFT effectively reduces dimension by subsampling input space-domain image and summing up the result. As the signal is sparse in frequency domain, dimension reduction can reduce the complexity of searching position and amplitude of non-zero elements. The basic idea behind hash function is to hash the N N coefficients of the input image into a small number of B B bins. B is determined by k, which is set to p Nk. From these bins, SFFT only keeps coordinates of top dk points with largest magnitudes. The actual locations of the Fourier coefficients are then approximated. h s1,s 2 (i, j)=round(s 1 s 2 ij B2 ),i 2 [N], j 2 [N] (3) N2 Page 4 of 10

5 10 Run Time Vs Matrix Size (Sparsity = 50) 10 Run Time Vs Matrix Size (Sparsity = 100) SFFT FFTW SFFT FFTW 1 1 Run Time (sec) 0.1 Run Time (sec) Matrix Size Matrix Size Figure 2: The process of permutation, filtering and subsampling on image (k = 2) As shown in Fig. 1, the SFFT consists of multiple executions of two kinds of operations: location seeking and coefficient estimation. Location seeking is to generate a list of candidate coordinates which have high probability of being indices of the k nonzero coefficients in frequency domain. While coefficient estimation is used to precisely determine the frequency coefficients. We compare 2D-SFFT with 2D-FFT in FFTW algorithms library[5]. Experiment 1: The sparsity parameter k is fixed to constant (k = 50,100), and the runtime of the compared algorithms for 6 different length of image matrix from 2 8 to 2 13 are shown in Fig. 2. As expected, Fig. 2 shows that the runtimes of 2D-SFFT and 2D-FFTW are approximately linear in the log scale. However, the slope of the line for 2D-SFFT is less than the slop for 2D-FFT, 2D-SFFT has the faster runtime than 2D-FFTW for a large range of image size. 3 Adaptive Tuning Sparse Fast Fourier Transform The drawback of SFFT implementation is that it works reliably with prior knowledge of signal sparsity k. This drawback hinders the wide range of applications of SFFT. Although it is well known to all that most signals are sparse, it is almost impossible to foreknow the sparsity k of the signals in advance. The hash function hashes the N N coefficients of the input image into a small number of B B bins. An example of a image in frequency domain (k = 2) is shown in Fig.3(1). We find that after the hash function, the number of maximum points is the same with the number of original image non-zero coefficients in frequency domain as shown in Fig.3(2). Therefore, by finding the local maximum points, we can avoid prior knowledge sparsity k. ATSFFT initially sets a small value to B 0 and k 0. After hashing, we can get k 1 by finding and counting the number of local maximum values in B B matrix. Then, B 1 can be updated by analyzing the relationship between k 0 and k 1. For the convenience of description, the change ratio factor r of k is defined as follows, r i = 1 k i k i 1. (4) The iterative process is shown as follows Page 5 of 10

6 (a) Original image ( ,k = 2) (b) The image after hash function in frequency domain Figure 3: The relationship of the number of local maximum points and sparisty k 8 < B i+1 = : e 1 B i, 0appler i < d 1 B i, d 1 appler i < d 2 (5) (1 + e 2 )B i, d 2 appler i where 0 < d 1 < d 2 < 1 and 0 < e 1 < e 2 < 1. When k i approaches k i 1 within a very small range of d 1, we consider B i adapts to the full scatter point set where nonzero elements can adequately distributed, so B i+1 need to be decreased to find the better size B. When k i approaches k i 1 within a appropriate range between d 1 and d 2, we consider B i adapts to the appropriate scatter point set. If we further reduce the size of B, it will lead to large area overlap. Therefore, B i+1 is kept the same with B i. When k i fluctuates within a large range of k i 1, we consider B i is too small to lead large area overlap, so we need to continue to increase B. The visualized representation is shown in Fig. 3. Since B is a power of 2, and N can be divisible by B. A simplified flow diagram of ATSFFT is shown in Fig. 5. Compared with SFFT, ATSFFT does not need sparsity k in advance. By running multiple adaptive tuning iterations, it is able to identify candidate coordinates with a high probability of being one of the k nonzero coordinates. Given the set of coordinates I, ATSFFT can use coefficient estimation to precisely determine the frequency coefficients, which basically remove the phase change due to the permutation and the effect of the filtering. ATSFFT is compared with two representative algorithms, SFFT and FFT in FFTW algorithms library[5]. The size of image matrix N is fixed to constant (N = 2 10,2 11,2 12 ) and the runtime of the three algorithms with the sparsity k (k = 50,100,200,500,1000) is shown in Table 1. Observing the Table 1, we can get two conclusions: (i) ATSFFT is not only faster than FFTW, but also faster than SFFT which uses the fixed B; (ii) ATSFFT can control the error better than SFFT. That is, the error of ATSFFT is lower than SFFT at the same number of cycles. More intuitively, the runtime comparison on different sparsity degrees (N = 2 1 1,2 1 2) is shown in Fig. 6. We can see that when the image size is fixed, as the increase of sparsity k, the ATSFFT is faster than SFFT, while the runtime of FFTW is essentially constant, which depends on image size not sparsity k. The runtime comparison on different sparsity degrees (N = 2 1 0) is shown in Fig. 7. We can get the same conclusion that ATSFFT is faster than SFFT. In addition, SFFT is faster than Page 6 of 10

7 Figure 4: The relationship between B and r FFTW when sparsity k < 200, while 2D-SFFT presents disadvantage when sparsity k > 200. This is because the increase of sparsity k will leads to large area overlap. SFFT must increase the number of iterations to achieve the error standard, which will greatly increase running time. Therefore, SFFT performs better than FFTW when image has sufficient sparsity. By comparing ATSFFT against SFFT, the applicable range of ATSFFT is much wider than SFFT. Table 1: The runtime and error of SFFT, ASFFT and FFTW N = 1024 time(s) MSE k FFTW SFFT ATSFFT FFTW SFFT ATSFFT E E E E E E E E E E E E E E E-03 N = 2048 time(s) MSE E E E E E E E E E E E E E E E-06 N = 4096 time(s) MSE E E E E E E E E E E E E E E E-06 Page 7 of 10

8 Figure 5: A simplified flow diagram of ASFFT Figure 6: The runtime comparison on different sparsity degrees (k = 2048, 4096) Page 8 of 10

9 Figure 7: The runtime comparison of different sparsity degrees (k = 1024) 4 Conclusion FFT is an important image processing tool. Consider most images posses sparsity in frequency domain, we propose a novel 2D-SFFT which take advantage of the sparsity characteristics of images based on existing research. Experiment results show that 2D-SFFT presents a big advantage than traditional 2D-FFT. The reference implementation of the SFFT algorithm exists and has been proven to be faster than modern FFT library in cases of sufficient sparsity. However, the drawback of SFFT implementation is that it works reliably with foreknown signal sparsity k. It hinders the wide range of applications of SFFT. We present Adaptive Tuning Sparse Fast Fourier Transform ASFFT. In the case of unknown sparsity k in advance, ASFFT can identify the sparsity by adaptive dynamic iterative tuning and then complete the Fourier transform of signal. Experimental results show that ATSFFT not only can control the error better than SFFT, but also performs faster than SFFT. SFFT has a broad range of applications such as Spectrum Sensing, Magnetic Resonance Imaging (MRI), Light Field Photography, and Radio Astronomy. Especially, The Square Kilometer Array (SKA) is a radio telescope in development in Australia and South Africa. It spreads over an area of one square kilometer providing the highest resolution images ever captured in astronomy. Using existing SFFT[1] algorithms for processing images of the sky 100 faster than FFT. As this paper is exploratory, There are many algorithm application questions that future work should be considered. References [1] Haitham Hassanieh, Piotr Indyk, Dina Katabi and Eric Price, Simple and practical algorithm for sparse Fourier transform, Proceedings of the Twenty-Third Annual ACM-SIAM Symposium on Discrete Algorithms, 2012, Japan, pp [2] Haitham Hassanieh, Piotr Indyk, Dina Katabi and Eric Price, Nearly optimal sparse fourier transform, Proceedings of the 44th Symposium on Theory of Computing Conference, 2012, New York, pp [3] S. Shi, R. Yang and H. You, A new two-dimensional Fourier transform algorithm based on image sparsity, 2017 IEEE International Conference on Acoustics, Speech and Signal Process- Page 9 of 10

10 ing (ICASSP), New Orleans, LA, 2017, pp doi: /ICASSP [4] S. Shi, R. Yang, X. Zh, H. You and D. F, An Adaptive Tuning Sparse Fourier Transform, 2017 Pacific-Rim Conference on Multimedia (PCM), Harbin, China, 2017, pp [5] M. Frigo and S. G. Johnson, FFTW: an adaptive software architecture for the FFT, Acoustics, Speech and Signal Processing, Proceedings of the 1998 IEEE International Conference on, Seattle, WA, 1998, pp Page 10 of 10

Simple and Practical Algorithm for the Sparse Fourier Transform

Simple and Practical Algorithm for the Sparse Fourier Transform Simple and Practical Algorithm for the Sparse Fourier Transform Haitham Hassanieh Piotr Indyk Dina Katabi Eric Price MIT 2012-01-19 Hassanieh, Indyk, Katabi, and Price (MIT) Simple and Practical Algorithm

More information

Parallel FFT Program Optimizations on Heterogeneous Computers

Parallel FFT Program Optimizations on Heterogeneous Computers Parallel FFT Program Optimizations on Heterogeneous Computers Shuo Chen, Xiaoming Li Department of Electrical and Computer Engineering University of Delaware, Newark, DE 19716 Outline Part I: A Hybrid

More information

High performance Sparse Fast Fourier Transform

High performance Sparse Fast Fourier Transform Research Collection Master Thesis High performance Sparse Fast Fourier Transform Author(s): Schumacher, Jörn Publication Date: 2013 Permanent Link: https://doi.org/10.3929/ethz-a-009779087 Rights / License:

More information

SFFT Documentation. Release 0.1. Jörn Schumacher

SFFT Documentation. Release 0.1. Jörn Schumacher SFFT Documentation Release 0.1 Jörn Schumacher June 11, 2013 CONTENTS 1 Introduction 3 1.1 When Should I use the SFFT library?.................................. 3 1.2 Target Platform..............................................

More information

High-Throughput Implementation of a Million-Point Sparse Fourier Transform

High-Throughput Implementation of a Million-Point Sparse Fourier Transform High-Throughput Implementation of a Million-Point Sparse Fourier Transform Abhinav Agarwal, Haitham Hassanieh, Omid Abari, Ezz Hamed, Dina Katabi & Arvind Computer Science & Artificial Intelligence Laboratory,

More information

Repeating Segment Detection in Songs using Audio Fingerprint Matching

Repeating Segment Detection in Songs using Audio Fingerprint Matching Repeating Segment Detection in Songs using Audio Fingerprint Matching Regunathan Radhakrishnan and Wenyu Jiang Dolby Laboratories Inc, San Francisco, USA E-mail: regu.r@dolby.com Institute for Infocomm

More information

CHAPTER 6 A SECURE FAST 2D-DISCRETE FRACTIONAL FOURIER TRANSFORM BASED MEDICAL IMAGE COMPRESSION USING SPIHT ALGORITHM WITH HUFFMAN ENCODER

CHAPTER 6 A SECURE FAST 2D-DISCRETE FRACTIONAL FOURIER TRANSFORM BASED MEDICAL IMAGE COMPRESSION USING SPIHT ALGORITHM WITH HUFFMAN ENCODER 115 CHAPTER 6 A SECURE FAST 2D-DISCRETE FRACTIONAL FOURIER TRANSFORM BASED MEDICAL IMAGE COMPRESSION USING SPIHT ALGORITHM WITH HUFFMAN ENCODER 6.1. INTRODUCTION Various transforms like DCT, DFT used to

More information

Sublinear Algorithms for Big Data Analysis

Sublinear Algorithms for Big Data Analysis Sublinear Algorithms for Big Data Analysis Michael Kapralov Theory of Computation Lab 4 EPFL 7 September 2017 The age of big data: massive amounts of data collected in various areas of science and technology

More information

A New Pool Control Method for Boolean Compressed Sensing Based Adaptive Group Testing

A New Pool Control Method for Boolean Compressed Sensing Based Adaptive Group Testing Proceedings of APSIPA Annual Summit and Conference 27 2-5 December 27, Malaysia A New Pool Control Method for Boolean Compressed Sensing Based Adaptive roup Testing Yujia Lu and Kazunori Hayashi raduate

More information

3.2 Cache Oblivious Algorithms

3.2 Cache Oblivious Algorithms 3.2 Cache Oblivious Algorithms Cache-Oblivious Algorithms by Matteo Frigo, Charles E. Leiserson, Harald Prokop, and Sridhar Ramachandran. In the 40th Annual Symposium on Foundations of Computer Science,

More information

Lecture 27: Fast Laplacian Solvers

Lecture 27: Fast Laplacian Solvers Lecture 27: Fast Laplacian Solvers Scribed by Eric Lee, Eston Schweickart, Chengrun Yang November 21, 2017 1 How Fast Laplacian Solvers Work We want to solve Lx = b with L being a Laplacian matrix. Recall

More information

Robust Face Recognition via Sparse Representation Authors: John Wright, Allen Y. Yang, Arvind Ganesh, S. Shankar Sastry, and Yi Ma

Robust Face Recognition via Sparse Representation Authors: John Wright, Allen Y. Yang, Arvind Ganesh, S. Shankar Sastry, and Yi Ma Robust Face Recognition via Sparse Representation Authors: John Wright, Allen Y. Yang, Arvind Ganesh, S. Shankar Sastry, and Yi Ma Presented by Hu Han Jan. 30 2014 For CSE 902 by Prof. Anil K. Jain: Selected

More information

Assignment 3: Edge Detection

Assignment 3: Edge Detection Assignment 3: Edge Detection - EE Affiliate I. INTRODUCTION This assignment looks at different techniques of detecting edges in an image. Edge detection is a fundamental tool in computer vision to analyse

More information

Spatial, Transform and Fractional Domain Digital Image Watermarking Techniques

Spatial, Transform and Fractional Domain Digital Image Watermarking Techniques Spatial, Transform and Fractional Domain Digital Image Watermarking Techniques Dr.Harpal Singh Professor, Chandigarh Engineering College, Landran, Mohali, Punjab, Pin code 140307, India Puneet Mehta Faculty,

More information

Overview. Spectral Processing of Point- Sampled Geometry. Introduction. Introduction. Fourier Transform. Fourier Transform

Overview. Spectral Processing of Point- Sampled Geometry. Introduction. Introduction. Fourier Transform. Fourier Transform Overview Spectral Processing of Point- Sampled Geometry Introduction Fourier transform Spectral processing pipeline Spectral filtering Adaptive subsampling Summary Point-Based Computer Graphics Markus

More information

WEINER FILTER AND SUB-BLOCK DECOMPOSITION BASED IMAGE RESTORATION FOR MEDICAL APPLICATIONS

WEINER FILTER AND SUB-BLOCK DECOMPOSITION BASED IMAGE RESTORATION FOR MEDICAL APPLICATIONS WEINER FILTER AND SUB-BLOCK DECOMPOSITION BASED IMAGE RESTORATION FOR MEDICAL APPLICATIONS ARIFA SULTANA 1 & KANDARPA KUMAR SARMA 2 1,2 Department of Electronics and Communication Engineering, Gauhati

More information

Advanced phase retrieval: maximum likelihood technique with sparse regularization of phase and amplitude

Advanced phase retrieval: maximum likelihood technique with sparse regularization of phase and amplitude Advanced phase retrieval: maximum likelihood technique with sparse regularization of phase and amplitude A. Migukin *, V. atkovnik and J. Astola Department of Signal Processing, Tampere University of Technology,

More information

Real Time Handwriting Recognition Techniques for Mathematical Notation in Interactive Teaching & Learning Applications

Real Time Handwriting Recognition Techniques for Mathematical Notation in Interactive Teaching & Learning Applications Real Time Handwriting Recognition Teciques for Mathematical Notation in Interactive Teaching & Learning Applications A. Chiou School of Engineering & Tecology, Central Queensland University, Rockhampton

More information

An Improved Images Watermarking Scheme Using FABEMD Decomposition and DCT

An Improved Images Watermarking Scheme Using FABEMD Decomposition and DCT An Improved Images Watermarking Scheme Using FABEMD Decomposition and DCT Noura Aherrahrou and Hamid Tairi University Sidi Mohamed Ben Abdellah, Faculty of Sciences, Dhar El mahraz, LIIAN, Department of

More information

HOT asax: A Novel Adaptive Symbolic Representation for Time Series Discords Discovery

HOT asax: A Novel Adaptive Symbolic Representation for Time Series Discords Discovery HOT asax: A Novel Adaptive Symbolic Representation for Time Series Discords Discovery Ninh D. Pham, Quang Loc Le, Tran Khanh Dang Faculty of Computer Science and Engineering, HCM University of Technology,

More information

Survey of the Mathematics of Big Data

Survey of the Mathematics of Big Data Survey of the Mathematics of Big Data Issues with Big Data, Mathematics to the Rescue Philippe B. Laval KSU Fall 2015 Philippe B. Laval (KSU) Math & Big Data Fall 2015 1 / 28 Introduction We survey some

More information

Numeric-Symbolic Exact Rational Linear System Solver

Numeric-Symbolic Exact Rational Linear System Solver Numeric-Symbolic Exact Rational Linear System Solver B David Saunders, David Wood, and Bryan Youse University of Delaware June 10, 2011 Motivation Ax = b Given A Z m n and b Z m, compute x Q n Core problem

More information

packet-switched networks. For example, multimedia applications which process

packet-switched networks. For example, multimedia applications which process Chapter 1 Introduction There are applications which require distributed clock synchronization over packet-switched networks. For example, multimedia applications which process time-sensitive information

More information

ALMA Memo 386 ALMA+ACA Simulation Tool J. Pety, F. Gueth, S. Guilloteau IRAM, Institut de Radio Astronomie Millimétrique 300 rue de la Piscine, F-3840

ALMA Memo 386 ALMA+ACA Simulation Tool J. Pety, F. Gueth, S. Guilloteau IRAM, Institut de Radio Astronomie Millimétrique 300 rue de la Piscine, F-3840 ALMA Memo 386 ALMA+ACA Simulation Tool J. Pety, F. Gueth, S. Guilloteau IRAM, Institut de Radio Astronomie Millimétrique 300 rue de la Piscine, F-38406 Saint Martin d'h eres August 13, 2001 Abstract This

More information

Image Transformation Techniques Dr. Rajeev Srivastava Dept. of Computer Engineering, ITBHU, Varanasi

Image Transformation Techniques Dr. Rajeev Srivastava Dept. of Computer Engineering, ITBHU, Varanasi Image Transformation Techniques Dr. Rajeev Srivastava Dept. of Computer Engineering, ITBHU, Varanasi 1. Introduction The choice of a particular transform in a given application depends on the amount of

More information

2012 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 52, NO. 7, JULY 2004

2012 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 52, NO. 7, JULY 2004 2012 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 52, NO. 7, JULY 2004 Commutative Reduced Biquaternions and Their Fourier Transform for Signal and Image Processing Applications Soo-Chang Pei, Fellow,

More information

Off-the-Grid Compressive Imaging: Recovery of Piecewise Constant Images from Few Fourier Samples

Off-the-Grid Compressive Imaging: Recovery of Piecewise Constant Images from Few Fourier Samples Off-the-Grid Compressive Imaging: Recovery of Piecewise Constant Images from Few Fourier Samples Greg Ongie PhD Candidate Department of Applied Math and Computational Sciences University of Iowa April

More information

Digital Image Processing. Lecture 6

Digital Image Processing. Lecture 6 Digital Image Processing Lecture 6 (Enhancement in the Frequency domain) Bu-Ali Sina University Computer Engineering Dep. Fall 2016 Image Enhancement In The Frequency Domain Outline Jean Baptiste Joseph

More information

OPTIMISATION OF PIN FIN HEAT SINK USING TAGUCHI METHOD

OPTIMISATION OF PIN FIN HEAT SINK USING TAGUCHI METHOD CHAPTER - 5 OPTIMISATION OF PIN FIN HEAT SINK USING TAGUCHI METHOD The ever-increasing demand to lower the production costs due to increased competition has prompted engineers to look for rigorous methods

More information

Compressed Sensing Reconstructions for Dynamic Contrast Enhanced MRI

Compressed Sensing Reconstructions for Dynamic Contrast Enhanced MRI 1 Compressed Sensing Reconstructions for Dynamic Contrast Enhanced MRI Kevin T. Looby klooby@stanford.edu ABSTRACT The temporal resolution necessary for dynamic contrast enhanced (DCE) magnetic resonance

More information

Modified Welch Power Spectral Density Computation with Fast Fourier Transform

Modified Welch Power Spectral Density Computation with Fast Fourier Transform Modified Welch Power Spectral Density Computation with Fast Fourier Transform Sreelekha S 1, Sabi S 2 1 Department of Electronics and Communication, Sree Budha College of Engineering, Kerala, India 2 Professor,

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION 1 CHAPTER 1 INTRODUCTION 1.1 Advance Encryption Standard (AES) Rijndael algorithm is symmetric block cipher that can process data blocks of 128 bits, using cipher keys with lengths of 128, 192, and 256

More information

EE123 Digital Signal Processing

EE123 Digital Signal Processing EE23 Digital Signal Processing Lecture 8 FFT II Lab based on slides by JM Kahn M Lustig, EECS UC Berkeley Announcements Last time: Started FFT Today Lab Finish FFT Read Ch 002 Midterm : Feb 22nd M Lustig,

More information

THE orthogonal frequency-division multiplex (OFDM)

THE orthogonal frequency-division multiplex (OFDM) 26 IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS II: EXPRESS BRIEFS, VOL. 57, NO. 1, JANUARY 2010 A Generalized Mixed-Radix Algorithm for Memory-Based FFT Processors Chen-Fong Hsiao, Yuan Chen, Member, IEEE,

More information

Image and Video Quality Assessment Using Neural Network and SVM

Image and Video Quality Assessment Using Neural Network and SVM TSINGHUA SCIENCE AND TECHNOLOGY ISSN 1007-0214 18/19 pp112-116 Volume 13, Number 1, February 2008 Image and Video Quality Assessment Using Neural Network and SVM DING Wenrui (), TONG Yubing (), ZHANG Qishan

More information

PRIME FACTOR CYCLOTOMIC FOURIER TRANSFORMS WITH REDUCED COMPLEXITY OVER FINITE FIELDS

PRIME FACTOR CYCLOTOMIC FOURIER TRANSFORMS WITH REDUCED COMPLEXITY OVER FINITE FIELDS PRIME FACTOR CYCLOTOMIC FOURIER TRANSFORMS WITH REDUCED COMPLEXITY OVER FINITE FIELDS Xuebin Wu, Zhiyuan Yan, Ning Chen, and Meghanad Wagh Department of ECE, Lehigh University, Bethlehem, PA 18015 PMC-Sierra

More information

Efficient FFT Algorithm and Programming Tricks

Efficient FFT Algorithm and Programming Tricks Connexions module: m12021 1 Efficient FFT Algorithm and Programming Tricks Douglas L. Jones This work is produced by The Connexions Project and licensed under the Creative Commons Attribution License Abstract

More information

Design of Orthogonal Graph Wavelet Filter Banks

Design of Orthogonal Graph Wavelet Filter Banks Design of Orthogonal Graph Wavelet Filter Banks Xi ZHANG Department of Communication Engineering and Informatics The University of Electro-Communications Chofu-shi, Tokyo, 182-8585 JAPAN E-mail: zhangxi@uec.ac.jp

More information

CHAPTER 9 INPAINTING USING SPARSE REPRESENTATION AND INVERSE DCT

CHAPTER 9 INPAINTING USING SPARSE REPRESENTATION AND INVERSE DCT CHAPTER 9 INPAINTING USING SPARSE REPRESENTATION AND INVERSE DCT 9.1 Introduction In the previous chapters the inpainting was considered as an iterative algorithm. PDE based method uses iterations to converge

More information

BIG DATA-DRIVEN FAST REDUCING THE VISUAL BLOCK ARTIFACTS OF DCT COMPRESSED IMAGES FOR URBAN SURVEILLANCE SYSTEMS

BIG DATA-DRIVEN FAST REDUCING THE VISUAL BLOCK ARTIFACTS OF DCT COMPRESSED IMAGES FOR URBAN SURVEILLANCE SYSTEMS BIG DATA-DRIVEN FAST REDUCING THE VISUAL BLOCK ARTIFACTS OF DCT COMPRESSED IMAGES FOR URBAN SURVEILLANCE SYSTEMS Ling Hu and Qiang Ni School of Computing and Communications, Lancaster University, LA1 4WA,

More information

Classification of Subject Motion for Improved Reconstruction of Dynamic Magnetic Resonance Imaging

Classification of Subject Motion for Improved Reconstruction of Dynamic Magnetic Resonance Imaging 1 CS 9 Final Project Classification of Subject Motion for Improved Reconstruction of Dynamic Magnetic Resonance Imaging Feiyu Chen Department of Electrical Engineering ABSTRACT Subject motion is a significant

More information

Compressed Sensing from Several Sets of Downsampled Fourier Values using Only FFTs

Compressed Sensing from Several Sets of Downsampled Fourier Values using Only FFTs Compressed Sensing from Several Sets of Downsampled Fourier Values using Only FFTs Andrew E Yagle Department of EECS, The University of Michigan, Ann Arbor, MI 4809-222 Abstract Reconstruction of signals

More information

Robust Face Recognition via Sparse Representation

Robust Face Recognition via Sparse Representation Robust Face Recognition via Sparse Representation Panqu Wang Department of Electrical and Computer Engineering University of California, San Diego La Jolla, CA 92092 pawang@ucsd.edu Can Xu Department of

More information

REGRESSION ANALYSIS : LINEAR BY MAUAJAMA FIRDAUS & TULIKA SAHA

REGRESSION ANALYSIS : LINEAR BY MAUAJAMA FIRDAUS & TULIKA SAHA REGRESSION ANALYSIS : LINEAR BY MAUAJAMA FIRDAUS & TULIKA SAHA MACHINE LEARNING It is the science of getting computer to learn without being explicitly programmed. Machine learning is an area of artificial

More information

A Hybrid Recursive Multi-Way Number Partitioning Algorithm

A Hybrid Recursive Multi-Way Number Partitioning Algorithm Proceedings of the Twenty-Second International Joint Conference on Artificial Intelligence A Hybrid Recursive Multi-Way Number Partitioning Algorithm Richard E. Korf Computer Science Department University

More information

Coding for Random Projects

Coding for Random Projects Coding for Random Projects CS 584: Big Data Analytics Material adapted from Li s talk at ICML 2014 (http://techtalks.tv/talks/coding-for-random-projections/61085/) Random Projections for High-Dimensional

More information

Adaptive Matrix Transpose Algorithms for Distributed Multicore Processors

Adaptive Matrix Transpose Algorithms for Distributed Multicore Processors Adaptive Matrix Transpose Algorithms for Distributed Multicore ors John C. Bowman and Malcolm Roberts Abstract An adaptive parallel matrix transpose algorithm optimized for distributed multicore architectures

More information

Robust Steganography Using Texture Synthesis

Robust Steganography Using Texture Synthesis Robust Steganography Using Texture Synthesis Zhenxing Qian 1, Hang Zhou 2, Weiming Zhang 2, Xinpeng Zhang 1 1. School of Communication and Information Engineering, Shanghai University, Shanghai, 200444,

More information

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation , pp.162-167 http://dx.doi.org/10.14257/astl.2016.138.33 A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation Liqiang Hu, Chaofeng He Shijiazhuang Tiedao University,

More information

Temperature Distribution Measurement Based on ML-EM Method Using Enclosed Acoustic CT System

Temperature Distribution Measurement Based on ML-EM Method Using Enclosed Acoustic CT System Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com Temperature Distribution Measurement Based on ML-EM Method Using Enclosed Acoustic CT System Shinji Ohyama, Masato Mukouyama Graduate School

More information

System Demonstration of Spiral: Generator for High-Performance Linear Transform Libraries

System Demonstration of Spiral: Generator for High-Performance Linear Transform Libraries System Demonstration of Spiral: Generator for High-Performance Linear Transform Libraries Yevgen Voronenko, Franz Franchetti, Frédéric de Mesmay, and Markus Püschel Department of Electrical and Computer

More information

Minoru SASAKI and Kenji KITA. Department of Information Science & Intelligent Systems. Faculty of Engineering, Tokushima University

Minoru SASAKI and Kenji KITA. Department of Information Science & Intelligent Systems. Faculty of Engineering, Tokushima University Information Retrieval System Using Concept Projection Based on PDDP algorithm Minoru SASAKI and Kenji KITA Department of Information Science & Intelligent Systems Faculty of Engineering, Tokushima University

More information

Sparse Component Analysis (SCA) in Random-valued and Salt and Pepper Noise Removal

Sparse Component Analysis (SCA) in Random-valued and Salt and Pepper Noise Removal Sparse Component Analysis (SCA) in Random-valued and Salt and Pepper Noise Removal Hadi. Zayyani, Seyyedmajid. Valliollahzadeh Sharif University of Technology zayyani000@yahoo.com, valliollahzadeh@yahoo.com

More information

Tracking Computer Vision Spring 2018, Lecture 24

Tracking Computer Vision Spring 2018, Lecture 24 Tracking http://www.cs.cmu.edu/~16385/ 16-385 Computer Vision Spring 2018, Lecture 24 Course announcements Homework 6 has been posted and is due on April 20 th. - Any questions about the homework? - How

More information

Measurements and Bits: Compressed Sensing meets Information Theory. Dror Baron ECE Department Rice University dsp.rice.edu/cs

Measurements and Bits: Compressed Sensing meets Information Theory. Dror Baron ECE Department Rice University dsp.rice.edu/cs Measurements and Bits: Compressed Sensing meets Information Theory Dror Baron ECE Department Rice University dsp.rice.edu/cs Sensing by Sampling Sample data at Nyquist rate Compress data using model (e.g.,

More information

Learning to Construct Fast Signal Processing Implementations

Learning to Construct Fast Signal Processing Implementations Journal of Machine Learning Research 3 (2002) 887-919 Submitted 12/01; Published 12/02 Learning to Construct Fast Signal Processing Implementations Bryan Singer Manuela Veloso Department of Computer Science

More information

A Novel Approach for Reduction of Huffman Cost Table in Image Compression

A Novel Approach for Reduction of Huffman Cost Table in Image Compression Global Journal of Computer Science and Technology Volume 11 Issue 9 Version 1.0 May 2011 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals Inc. (USA) ISSN: 0975-4172

More information

GEMINI GEneric Multimedia INdexIng

GEMINI GEneric Multimedia INdexIng GEMINI GEneric Multimedia INdexIng GEneric Multimedia INdexIng distance measure Sub-pattern Match quick and dirty test Lower bounding lemma 1-D Time Sequences Color histograms Color auto-correlogram Shapes

More information

Opportunistic Job Sharing For Mobile Cloud Computing

Opportunistic Job Sharing For Mobile Cloud Computing Opportunistic Job Sharing For Mobile Cloud Computing 1 Paridhi Vijay, 2 Vandna Verma 1 B.E, Computer Science and Engineering, Rajasthan College of Engineering for Women, Jaipur, Rajasthan 2 Asst. Professor

More information

Fast and Efficient Sparse 2D Discrete Fourier Transform using Sparse-Graph Codes

Fast and Efficient Sparse 2D Discrete Fourier Transform using Sparse-Graph Codes Fast and Efficient Sparse 2D Discrete Fourier Transform using Sparse-Graph Codes Frank Ong, Sameer Pawar, and Kannan Ramchandran Department of Electrical Engineering and Computer Sciences University of

More information

Adaptive Matrix Transpose Algorithms for Distributed Multicore Processors

Adaptive Matrix Transpose Algorithms for Distributed Multicore Processors Adaptive Matrix Transpose Algorithms for Distributed Multicore ors John C. Bowman and Malcolm Roberts Abstract An adaptive parallel matrix transpose algorithm optimized for distributed multicore architectures

More information

SPARSE COMPONENT ANALYSIS FOR BLIND SOURCE SEPARATION WITH LESS SENSORS THAN SOURCES. Yuanqing Li, Andrzej Cichocki and Shun-ichi Amari

SPARSE COMPONENT ANALYSIS FOR BLIND SOURCE SEPARATION WITH LESS SENSORS THAN SOURCES. Yuanqing Li, Andrzej Cichocki and Shun-ichi Amari SPARSE COMPONENT ANALYSIS FOR BLIND SOURCE SEPARATION WITH LESS SENSORS THAN SOURCES Yuanqing Li, Andrzej Cichocki and Shun-ichi Amari Laboratory for Advanced Brain Signal Processing Laboratory for Mathematical

More information

Module 9 : Numerical Relaying II : DSP Perspective

Module 9 : Numerical Relaying II : DSP Perspective Module 9 : Numerical Relaying II : DSP Perspective Lecture 36 : Fast Fourier Transform Objectives In this lecture, We will introduce Fast Fourier Transform (FFT). We will show equivalence between FFT and

More information

DUE to the high computational complexity and real-time

DUE to the high computational complexity and real-time IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS FOR VIDEO TECHNOLOGY, VOL. 15, NO. 3, MARCH 2005 445 A Memory-Efficient Realization of Cyclic Convolution and Its Application to Discrete Cosine Transform Hun-Chen

More information

Image denoising in the wavelet domain using Improved Neigh-shrink

Image denoising in the wavelet domain using Improved Neigh-shrink Image denoising in the wavelet domain using Improved Neigh-shrink Rahim Kamran 1, Mehdi Nasri, Hossein Nezamabadi-pour 3, Saeid Saryazdi 4 1 Rahimkamran008@gmail.com nasri_me@yahoo.com 3 nezam@uk.ac.ir

More information

Locating 1-D Bar Codes in DCT-Domain

Locating 1-D Bar Codes in DCT-Domain Edith Cowan University Research Online ECU Publications Pre. 2011 2006 Locating 1-D Bar Codes in DCT-Domain Alexander Tropf Edith Cowan University Douglas Chai Edith Cowan University 10.1109/ICASSP.2006.1660449

More information

A Robust Two Feature Points Based Depth Estimation Method 1)

A Robust Two Feature Points Based Depth Estimation Method 1) Vol.31, No.5 ACTA AUTOMATICA SINICA September, 2005 A Robust Two Feature Points Based Depth Estimation Method 1) ZHONG Zhi-Guang YI Jian-Qiang ZHAO Dong-Bin (Laboratory of Complex Systems and Intelligence

More information

RECOVERY OF PARTIALLY OBSERVED DATA APPEARING IN CLUSTERS. Sunrita Poddar, Mathews Jacob

RECOVERY OF PARTIALLY OBSERVED DATA APPEARING IN CLUSTERS. Sunrita Poddar, Mathews Jacob RECOVERY OF PARTIALLY OBSERVED DATA APPEARING IN CLUSTERS Sunrita Poddar, Mathews Jacob Department of Electrical and Computer Engineering The University of Iowa, IA, USA ABSTRACT We propose a matrix completion

More information

Deconvolution with curvelet-domain sparsity Vishal Kumar, EOS-UBC and Felix J. Herrmann, EOS-UBC

Deconvolution with curvelet-domain sparsity Vishal Kumar, EOS-UBC and Felix J. Herrmann, EOS-UBC Deconvolution with curvelet-domain sparsity Vishal Kumar, EOS-UBC and Felix J. Herrmann, EOS-UBC SUMMARY We use the recently introduced multiscale and multidirectional curvelet transform to exploit the

More information

Advanced Operations Research Techniques IE316. Quiz 1 Review. Dr. Ted Ralphs

Advanced Operations Research Techniques IE316. Quiz 1 Review. Dr. Ted Ralphs Advanced Operations Research Techniques IE316 Quiz 1 Review Dr. Ted Ralphs IE316 Quiz 1 Review 1 Reading for The Quiz Material covered in detail in lecture. 1.1, 1.4, 2.1-2.6, 3.1-3.3, 3.5 Background material

More information

WAVELET USE FOR IMAGE RESTORATION

WAVELET USE FOR IMAGE RESTORATION WAVELET USE FOR IMAGE RESTORATION Jiří PTÁČEK and Aleš PROCHÁZKA 1 Institute of Chemical Technology, Prague Department of Computing and Control Engineering Technicka 5, 166 28 Prague 6, Czech Republic

More information

I How does the formulation (5) serve the purpose of the composite parameterization

I How does the formulation (5) serve the purpose of the composite parameterization Supplemental Material to Identifying Alzheimer s Disease-Related Brain Regions from Multi-Modality Neuroimaging Data using Sparse Composite Linear Discrimination Analysis I How does the formulation (5)

More information

Parallel-computing approach for FFT implementation on digital signal processor (DSP)

Parallel-computing approach for FFT implementation on digital signal processor (DSP) Parallel-computing approach for FFT implementation on digital signal processor (DSP) Yi-Pin Hsu and Shin-Yu Lin Abstract An efficient parallel form in digital signal processor can improve the algorithm

More information

Advance Convergence Characteristic Based on Recycling Buffer Structure in Adaptive Transversal Filter

Advance Convergence Characteristic Based on Recycling Buffer Structure in Adaptive Transversal Filter Advance Convergence Characteristic ased on Recycling uffer Structure in Adaptive Transversal Filter Gwang Jun Kim, Chang Soo Jang, Chan o Yoon, Seung Jin Jang and Jin Woo Lee Department of Computer Engineering,

More information

Introduction to Digital Image Processing

Introduction to Digital Image Processing Fall 2005 Image Enhancement in the Spatial Domain: Histograms, Arithmetic/Logic Operators, Basics of Spatial Filtering, Smoothing Spatial Filters Tuesday, February 7 2006, Overview (1): Before We Begin

More information

Computer Vision 2. SS 18 Dr. Benjamin Guthier Professur für Bildverarbeitung. Computer Vision 2 Dr. Benjamin Guthier

Computer Vision 2. SS 18 Dr. Benjamin Guthier Professur für Bildverarbeitung. Computer Vision 2 Dr. Benjamin Guthier Computer Vision 2 SS 18 Dr. Benjamin Guthier Professur für Bildverarbeitung Computer Vision 2 Dr. Benjamin Guthier 1. IMAGE PROCESSING Computer Vision 2 Dr. Benjamin Guthier Content of this Chapter Non-linear

More information

Q. Wang National Key Laboratory of Antenna and Microwave Technology Xidian University No. 2 South Taiba Road, Xi an, Shaanxi , P. R.

Q. Wang National Key Laboratory of Antenna and Microwave Technology Xidian University No. 2 South Taiba Road, Xi an, Shaanxi , P. R. Progress In Electromagnetics Research Letters, Vol. 9, 29 38, 2009 AN IMPROVED ALGORITHM FOR MATRIX BANDWIDTH AND PROFILE REDUCTION IN FINITE ELEMENT ANALYSIS Q. Wang National Key Laboratory of Antenna

More information

Open Access Hardware Implementation of Fir Filter Based on Number-theoretic Fast Fourier Transform in Residue Number System

Open Access Hardware Implementation of Fir Filter Based on Number-theoretic Fast Fourier Transform in Residue Number System Send Orders for Reprints to reprints@benthamscience.net Open Engineering Sciences Journal, 2014, 1, 1-6 1 Open Access Hardware Implementation of Fir Filter Based on Number-theoretic Fast Fourier Transform

More information

Clustering and Visualisation of Data

Clustering and Visualisation of Data Clustering and Visualisation of Data Hiroshi Shimodaira January-March 28 Cluster analysis aims to partition a data set into meaningful or useful groups, based on distances between data points. In some

More information

Accurate and Dense Wide-Baseline Stereo Matching Using SW-POC

Accurate and Dense Wide-Baseline Stereo Matching Using SW-POC Accurate and Dense Wide-Baseline Stereo Matching Using SW-POC Shuji Sakai, Koichi Ito, Takafumi Aoki Graduate School of Information Sciences, Tohoku University, Sendai, 980 8579, Japan Email: sakai@aoki.ecei.tohoku.ac.jp

More information

Blind Compressed Sensing Using Sparsifying Transforms

Blind Compressed Sensing Using Sparsifying Transforms Blind Compressed Sensing Using Sparsifying Transforms Saiprasad Ravishankar and Yoram Bresler Department of Electrical and Computer Engineering and Coordinated Science Laboratory University of Illinois

More information

Adaptive image matching in the subband domain

Adaptive image matching in the subband domain Adaptive image matching in the subband domain Hualu Wang and Shih-Fu Chang Department of Electrical Engineering & Center for Telecommunications Research Columbia University, New York, NY 27 ABSTRACT In

More information

Supplemental Material for Efficient MR Image Reconstruction for Compressed MR Imaging

Supplemental Material for Efficient MR Image Reconstruction for Compressed MR Imaging Supplemental Material for Efficient MR Image Reconstruction for Compressed MR Imaging Paper ID: 1195 No Institute Given 1 More Experiment Results 1.1 Visual Comparisons We apply all methods on four 2D

More information

An Efficient Clustering for Crime Analysis

An Efficient Clustering for Crime Analysis An Efficient Clustering for Crime Analysis Malarvizhi S 1, Siddique Ibrahim 2 1 UG Scholar, Department of Computer Science and Engineering, Kumaraguru College Of Technology, Coimbatore, Tamilnadu, India

More information

An Integrated Face Recognition Algorithm Based on Wavelet Subspace

An Integrated Face Recognition Algorithm Based on Wavelet Subspace , pp.20-25 http://dx.doi.org/0.4257/astl.204.48.20 An Integrated Face Recognition Algorithm Based on Wavelet Subspace Wenhui Li, Ning Ma, Zhiyan Wang College of computer science and technology, Jilin University,

More information

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore.

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore. This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore. Title A robust phase watermarking algorithm using conugate symmetric sequency-ordered complex Hadamard transform

More information

Analysis of Radix- SDF Pipeline FFT Architecture in VLSI Using Chip Scope

Analysis of Radix- SDF Pipeline FFT Architecture in VLSI Using Chip Scope Analysis of Radix- SDF Pipeline FFT Architecture in VLSI Using Chip Scope G. Mohana Durga 1, D.V.R. Mohan 2 1 M.Tech Student, 2 Professor, Department of ECE, SRKR Engineering College, Bhimavaram, Andhra

More information

Fourier Transform in Image Processing. CS/BIOEN 6640 U of Utah Guido Gerig (slides modified from Marcel Prastawa 2012)

Fourier Transform in Image Processing. CS/BIOEN 6640 U of Utah Guido Gerig (slides modified from Marcel Prastawa 2012) Fourier Transform in Image Processing CS/BIOEN 6640 U of Utah Guido Gerig (slides modified from Marcel Prastawa 2012) 1D: Common Transform Pairs Summary source FT Properties: Convolution See book DIP 4.2.5:

More information

A SIGNATURE ALGORITHM BASED ON DLP AND COMPUTING SQUARE ROOTS

A SIGNATURE ALGORITHM BASED ON DLP AND COMPUTING SQUARE ROOTS A SIGNATURE ALGORITHM BASED ON DLP AND COMPUTING SQUARE ROOTS Ounasser Abid 1 and Omar Khadir 2 1, 2 Laboratory of Mathematics, Cryptography and Mechanics, FSTM University Hassan II of Casablanca, Morocco

More information

High dynamic range imaging, computing & I/O load

High dynamic range imaging, computing & I/O load High dynamic range imaging, computing & I/O load RMS ~15µJy/beam RMS ~1µJy/beam S. Bhatnagar NRAO, Socorro Parameterized Measurement Equation Generalized Measurement Equation Obs [ S M V ij = J ij, t W

More information

Abstract. Keywords: Genetic Algorithm, Mean Square Error, Peak Signal to noise Ratio, Image fidelity. 1. Introduction

Abstract. Keywords: Genetic Algorithm, Mean Square Error, Peak Signal to noise Ratio, Image fidelity. 1. Introduction A Report on Genetic Algorithm based Steganography for Image Authentication by Amrita Khamrui Enrolled Scholar Department of Computer Science & Engineering, Kalyani University Prof. (Dr.) J K Mandal Professor

More information

6. Asymptotics: The Big-O and Other Notations

6. Asymptotics: The Big-O and Other Notations Chapter 7 SEARCHING 1. Introduction, Notation 2. Sequential Search 3. Binary Search 4. Comparison Trees 5. Lower Bounds 6. Asymptotics: The Big-O and Other Notations Outline Transp. 1, Chapter 7, Searching

More information

ANALYSIS OF GEOPHYSICAL POTENTIAL FIELDS A Digital Signal Processing Approach

ANALYSIS OF GEOPHYSICAL POTENTIAL FIELDS A Digital Signal Processing Approach ADVANCES IN EXPLORATION GEOPHYSICS 5 ANALYSIS OF GEOPHYSICAL POTENTIAL FIELDS A Digital Signal Processing Approach PRABHAKAR S. NAIDU Indian Institute of Science, Bangalore 560012, India AND M.P. MATHEW

More information

Accelerated Load Balancing of Unstructured Meshes

Accelerated Load Balancing of Unstructured Meshes Accelerated Load Balancing of Unstructured Meshes Gerrett Diamond, Lucas Davis, and Cameron W. Smith Abstract Unstructured mesh applications running on large, parallel, distributed memory systems require

More information

SUMMARY. In combination with compressive sensing, a successful reconstruction

SUMMARY. In combination with compressive sensing, a successful reconstruction Higher dimensional blue-noise sampling schemes for curvelet-based seismic data recovery Gang Tang, Tsinghua University & UBC-Seismic Laboratory for Imaging and Modeling (UBC-SLIM), Reza Shahidi, UBC-SLIM,

More information

Improving Performance of Sparse Matrix-Vector Multiplication

Improving Performance of Sparse Matrix-Vector Multiplication Improving Performance of Sparse Matrix-Vector Multiplication Ali Pınar Michael T. Heath Department of Computer Science and Center of Simulation of Advanced Rockets University of Illinois at Urbana-Champaign

More information

Forensics of High-Quality JPEG Images with Color Subsampling

Forensics of High-Quality JPEG Images with Color Subsampling MÜNSTER Forensics of High-Quality JPEG Images with Color Subsampling Matthias Carnein Pascal Schöttle Rainer Böhme 19th November 2015 Introduction uncompressed Q = 15 Q = 100 Block convergence analysis

More information

Lecture 5: Frequency Domain Transformations

Lecture 5: Frequency Domain Transformations #1 Lecture 5: Frequency Domain Transformations Saad J Bedros sbedros@umn.edu From Last Lecture Spatial Domain Transformation Point Processing for Enhancement Area/Mask Processing Transformations Image

More information

Using the generalized Radon transform for detection of curves in noisy images

Using the generalized Radon transform for detection of curves in noisy images Downloaded from orbit.dtu.dk on: Jan 13, 2018 Using the generalized Radon transform for detection of curves in noisy images Toft, eter Aundal ublished in: Conference roceedings. 1996 IEEE International

More information

Provably Efficient Non-Preemptive Task Scheduling with Cilk

Provably Efficient Non-Preemptive Task Scheduling with Cilk Provably Efficient Non-Preemptive Task Scheduling with Cilk V. -Y. Vee and W.-J. Hsu School of Applied Science, Nanyang Technological University Nanyang Avenue, Singapore 639798. Abstract We consider the

More information