Real-Time Feature Descriptor Matching via a Multi-Resolution Exhaustive Search Method

Size: px
Start display at page:

Download "Real-Time Feature Descriptor Matching via a Multi-Resolution Exhaustive Search Method"

Transcription

1 297 Rea-Time Feature escriptor Matching via a Muti-Resoution Ehaustive Search Method Chi-Yi Tsai, An-Hung Tsao, and Chuan-Wei Wang epartment of Eectrica Engineering, Tamang University, New Taipei City, Taiwan Emai: chiyi_tsai@mai.tu.edu.tw; @s0.tu.edu.tw; @s00.tu.edu.tw Abstract Feature descriptor matching pays an important roe in many computer vision appications. This paper presents a nove fast inear ehaustive search agorithm combined with a muti-resoution candidate eimination technique to dea with this probem efficienty. The proposed agorithm is inspired from the eisting mutiresoution image retrieva approaches, but reeasing the requirement on a norm-sorted database with pre-computed muti-resoution tabes. This heps to increase the appicabiity of the proposed method. Moreover, the computations of candidate eimination are fuy performed using a simpe L distance metric, which is abe to speedup the entire search process without oss of accuracy. This property eads to an accurate feature descriptor matching agorithm with rea-time performance, which wi be vaidated in the eperiments by testing with the matching of SURF descriptors. Inde Terms descriptor matching, inear ehaustive search, L norm pyramid, muti-resoution eamination I. INTROUCTION Feature descriptor matching is one of the critica stages in various computer vision appications, especiay in image retrieva, image stitching, 3 pose estimation, and muti-view reconstruction, etc. As a resut, the study of image feature detection, description and matching has become an active research topic in the ast years. This paper focuses on the ast issue, which typicay can be treated as a nearest neighbor search probem in mutipe dimensions [] and thus can be resoved by using a conventiona nearest neighbor search technique [2], [3]. eveoping an efficient and accurate feature descriptor matching agorithm is important as it greaty affects the efficiency and accuracy of the foowing vision agorithms. This issue hence motivates us to design a new feature descriptor matching agorithm achieving fast search speed with high matching accuracy. Current feature descriptor matching methods can be roughy divided into distance metric and space partitioning approaches. The former empoys a distance metric to measure the simiarity between a query descriptor and a sampe descriptor in a given data set, and the ater empoy a tree data structure to efficienty speedup the search of nearest neighbors. The simpest Manuscript received October 25, 202; revised March 0, 203. distance metric method is we nown as the inear ehaustive search (LES) method, so-caed the bruteforce method, which usuay empoys Eucidean distance metric to search for a nearest neighbor. The LES method often provides the best matching resut, but it becomes inefficient as the size of database or the dimension of feature descriptor increasing dramaticay. By contrast, the space partitioning approaches are efficient for searching mutipe nearest neighbors in a arge database. However, it is we nown that the performance of space partitioning methods is degraded eponentiay as the dimension of feature descriptor growing up, caed the curse-of-dimensionaity [4]. In practice, the feature descriptor is usuay of high dimensionaity, i.e., the dimension of the popuar SIFT [5] and SURF [6] descriptors are 28 and 64, respectivey. This probem highights the importance to deveop an efficient and accurate descriptor matching agorithm for feature matching in high dimensiona spaces. To achieve this purpose, this paper presents a fast muti-resoution ehaustive search agorithm to efficienty search the best match in a high dimensiona space. The proposed agorithm is inspired from the eisting muti-resoution image retrieva approaches [7], [8], but reeasing the requirement on a norm-sorted database with precomputed muti-resoution tabes. This heps to increase the appicabiity of the proposed method. Moreover, the proposed muti-resoution candidate eimination method is abe to detect and remove a non-candidates from a arge candidate ist via a simpe L distance computation, aowing speeding up the entire search process without oss of accuracy. This property eads to an efficient and accurate feature descriptor matching agorithm achieving rea-time performance in practica appications, which wi be vaidated in the eperiments by testing with the matching of SURF descriptors. escriptor Number Nq uery Set escriptor escriptor 2 escriptor 3 escriptor Nq-2 escriptor Nq- escriptor Nq imension Matching Set ata Set escriptor escriptor 2 escriptor 3 escriptor Nd-2 escriptor Nd- escriptor Nd imension escriptor Number Figure. The feature descriptor matching probem considered in this study. That is, given a query and a data set, the goa is to find a matching set that records the descriptor-matching pairs in both given sets. Nd doi:0.4304/jsw

2 298 II. PROBLEM STATEMENT Fig. shows the feature descriptor matching probem considered in this study, which is aso caed the nearest neighbor search probem. Given a query set X, X,, } and a data set Y, Y,, }, { 2 X N q { 2 Y N d where X i, Yj, i ~ N and q j ~ N, denote the - d dimensiona feature descriptors in query and data sets, respectivey. The goa is to find a matching set M {(, y),( 2, y2),,( m, ym)}, where n, y n with n ~ m are nonzero positive vaues indeing the matching points in both given sets. For instance, Fig. shows three pairs of matching points in the query and data sets, and the matching set is thus given by M {(, 3),(3, N d ),( Nq2,)}. To find the matching set, one of the most widey used methods is the LES method (so-caed the brute-force method) that searches for a matching point by evauating the simiarity between a query descriptor and a unmatched descriptors in the data set. The simiarity between two descriptors is usuay measured by Eucidean distance (or L 2 distance) defined as d ( X, X Y y () i i where X and Y are two descriptors in the query and data sets, respectivey. Fig. 2 shows the pseudo-code of the traditiona LES agorithm. Note that as suggested from the previous wors [9], we aso empoy a ratio test on descriptor distances at the ast step of matching process to reject ambiguous matches. Athough the LES agorithm provides a simpe way to find the matching set, the runtime of this method is of order O(N q N d ), eading to an inefficient agorithm as the dimension and ength N q or N d growing dramaticay. The Traditiona Linear Ehaustive Search Agorithm Input: A query set Ω ={X,X 2,,X Nq } and a data set Ω ={Y,Y 2,,Y Nd } Output: A match set Ω M. Initiaize: Cear the match set Ω M ={0}; Set a matching counter c=0; Set a distance ratio α=0.65; 2. for i=:n q do 3. d =d 2 =FLT_MAX; c =i; 4. for j=:n d do 5. dist=d 2 (X i,y j ); 6. if dist<d then 7. d 2 =d ; d=dist; y c =j; 8. ese if dist<d2 then 9. d 2 =dist; 0. end if. end for 2. if d <αd 2 then 3. Push ( c,y c ) into match set Ω M ; c=c+; 4. end if 5. end for 6. Return: match set Ω M FLT_MAX: Maimum vaue of a foating-point variabe Figure 2. Pseudo-code for the traditiona inear ehaustive search agorithm. Unie the traditiona LES agorithm, another commony used search method is the space partitioning method that empoys tree-ie structures, such as -d trees, to iterativey reduce the search space, efficienty i increasing the nearest-neighbor search performance in a arge data set. However, the author in [0] pointed out that the LES method is faster than the space partitioning one when og N. Since such high dimensionaity d (i.e., 25) usuay occurs in practica appications, this issue highights the importance of deveoping a fast ehaustive search method to dea with descriptor matching in high dimensiona spaces. This study thus proposes a nove fast muti-resoution ehaustive search method to achieve this purpose efficienty and effectivey. III. THE PROPOSE FEATURE MATCHING ALGORITHM This section presents the proposed fast ehaustive search agorithm, which is deveoped by combining the LES agorithm with a L -norm based muti-resoution candidate eimination technique. A. Muti-Resoution Candidate Eimination In this subsection, a nove muti-resoution eimination method inspired from the inequaity property of L norm pyramid [7], [8] is presented to efficienty speedup the matching process in high dimensiona spaces. We first define the L distance between two descriptors such that d ( X, X Y i y (2) i where X and Y. According to [7], the computation of L distance can be etended to a mutiresoution case, aowing improving the ehaustive search performance in a muti-eve manner. Suppose that the dimension of the feature descriptor satisfies = 2 L for any nonzero positive vaue L. A L norm pyramid associated with a feature descriptor X can be defined as a sequence of muti-resoution descriptors ( 0) () ( L) ( L) { X X X X } with X (L) = X, where T X [ 2 ] for 0 L denotes a hafresoution version of X (+) formed by successivey 2 summing two neighboring eements of X (+) such that for i 2 (Fig. 3). Then, an important i 2i 2i inequaity reated to the L distance between two descriptors can be derived based on the triange inequaity such that ( L) () d ( X, d ( X, d ( X, d ( X, ) (3) where i Y d ( X, X Y is the L distance between the ow-resoution version of X and Y. The inequaity property in Eq. (3) provides a significant cue to speedup the ehaustive search operation. That is, given a query descriptor X and a minimum distance of matching criteria d min, it is possibe to eiminate a matching candidates in Ω whose L distance in ow-resoution domain satisfies ( ) d ( X, d. Since the computationa cost of L min distance at ower eves is much ess than that of L 2 distance in fu-resoution domain, the run-time of the ehaustive search can be improved dramaticay via this muti-resoution eimination method. We thus combine this muti-resoution eimination method with the LES

3 299 method to form an efficient ehaustive search agorithm with ow computationa compeity. X (L-) X (L-) X (2) 2 (L-) X () X () 2 () (2) (2) (2) 2 (2) 3 4 (L-) (L-) /2- / Leve 0 Leve Leve 2 Leve L- Leve L Figure 3. The L norm pyramid of a feature descriptor X with dimension = 2 L. B. Minimum istance etermination As mentioned in the previous subsection, the mutiresoution eimination method requires a minimum distance d min as the matching criteria to eiminate any matching candidate in Ω for a given feature descriptor X in Ω. To determine the vaue of d min, the authors in [7] first seect an initia best match Y ibm whose norm Y is cose to X. Net, the vaue of d min is initiay computed as d min = d (X, Y ibm ) and is updated when a better match is found in the rest of candidates. This method is simpe, but ony effective in a norm-sorted database constructed in an off-ine preprocess. In many rea-time appications, however, the data set Ω is obtained on-ine and is not norm-sorted. This probem therefore motivates us to deveop a new minimum distance computation method to compute an appropriate vaue of d min for the ehaustive search in a non-sorted data set. Suppose that a muti-resoution descriptors of both query and data sets are buit and stored in 2L mutiresoution tabes. Let T and ibm T, 0 L, denote the muti-resoution tabes for the query and data sets, respectivey. Unie the previous method in [7], the proposed method aims to determine an appropriate minimum distance based ony on the owest resoution tabes T and 0 T, significanty reducing the 0 computationa burden of the minimum distance determination. Moreover, as the initia vaue of d min determined, its vaue wi eep as a constant for a query descriptors during the candidate eimination process, eading to faster ehaustive search performance but oss of matching accuracy. To maintain the matching accuracy, we remain the ratio test on two L 2 distances at the ast step as suggested in the LES method. This is another main difference between the proposed method and the previous wors. The concept of the proposed minimum distance computation method is simpe. First, we tae a subset of Ω as a training set. The vaue of d min is then computed as the average of the L distance at Leve 0 between each descriptor in the seected subset and a descriptors in Ω. More specificay, the vaue of d min is obtained by N N d d dmin ( X i, Yj ) with N N q (4) NNd i j where means the argest integer ess than or equa to, and β denote a nonzero positive number satisfying 0 β to define the subset of Ω. Empiricay, we found that setting the vaue of β as 0.25 may obtains the best candidate eimination performance with ess computationa burden. We thus choose β = 0.25 as the defaut setting for the proposed minimum distance computation method. The Proposed Fast Muti-resoution Ehaustive Search Agorithm Input: A query set Ω ={X,X 2,,X Nq } and a data set Ω ={Y,Y 2,,Y Nd } Output: A match set Ω M. Initiaize: Cear the match set Ω M ={0}; Set a matching counter c=0; Set a distance ratio α=0.65; 2. Buid muti-resoution tabes T 0 ~T L- for the query set ; 3. Buid muti-resoution tabes T 0 ~T L- for the data set ; 4. etermine the minimum distance d min based ony on the tabes T 0 and T 0 ; 5. for i=:n q do 6. d =d 2 =FLT_MAX; c =i; 7. for j=:n d do 8. if d () (X i,y j )>d min, =0~L-2, then 9. continue; 0. ese if d (L-) (X i,y j )>d min then. dist=d 2 (X i,y j ); 2. if dist<d2 then 3. d 2 =dist; 4. end if 5. continue; 6. ese 7. dist=d 2 (X i,y j ); 8. if dist<d then 9. if d<d2 then 20. d 2 =d ; 2. end if 22. d=dist; y c =j; 23. ese if dist<d2 then 24. d 2 =dist; 25. end if 26. end if 27. end for 28. if d <αd 2 then 29. Push ( c,y c ) into match set Ω M ; c=c+; 30. end if 3. end for 32. Return: match set Ω M Figure 4. Pseudo-code for the proposed muti-resoution ehaustive search agorithm. C. The Proposed Agorithm Fig. 4 shows the pseudo-code of the proposed fast muti-resoution ehaustive search agorithm, which combines the LES method with the muti-resoution candidate eimination method. After initiaization, the muti-resoution tabes T and T with 0 L are buit for a descriptors in both query and data sets. The vaue of d min is then computed by using Eq. (4). The foowing ehaustive search procedure is simiar to the LES method, ecept that we appy the muti-resoution

4 2200 eamination process at the ower eves before the L 2 distance eamination at the highest eve. This heps to achieve high search speed without oss of accuracy, even in high dimensiona spaces. The search performance of the proposed method wi be vaidated in the eperiments. TABLE I. PERFORMANCE COMPARISONS OF THE PROPOSE METHO WITH TWO EXISTING METHOS Image- Pair No. Inier ratio (%) Search Method LES -d tree Proposed method Search Inier Search Inier Search time ratio time ratio time (ms) (%) (ms) (%) (ms) Avg IV. EXPERIMENTAL RESULTS In the eperiments, we combined the SURF eypoint detector [6] with the LES, -d tree, and the proposed methods to evauate their feature matching performance in a high dimensiona space ( = 64). Two performance metrics were used to evauate the matching performance of each competing method, incuding an inier ratio and a search time metrics. The former measures the ratio of the tota inier-point number to the tota matching-point number, indicating the matching accuracy of the search agorithm. By contrast, the ater measures the overa search time (in miisecond) spent on the matching process, indicating the computationa efficiency of the search agorithm. An efficient feature matching agorithm shoud behave a higher inier ratio with a sma search time. Note that we appied an eisting outier remova method [] to etract a iniers and compute the inier ratio for each competing method. Five test image-pairs were used in out testing, and Tabe I records the eperimenta resuts. It is cear from Tabe I that the proposed method provides the best inier ratio and the smaest search time, foowed by the LES and -d tree methods. Moreover, the inier ratio of the proposed method is about 95%, and its search performance is about nineteen times the LES method and about sity times the -d tree method. Thus, the proposed method is more suitabe to meet the requirement of rea time appications. Fig. 5 shows the feature matching resuts of the test image-pair No. 5. In Fig. 5, the green and red ines indicate, respectivey, the inier and outier matches after the outier remova process. We can see from Fig. 5 that the LES and -d tree methods produce more outiers in their matching resuts when compared to the proposed method. The above eperimenta resuts therefore vaidate the search accuracy and computationa efficiency of the proposed feature matching agorithm. (a) (b) (c) Figure 5. SURF descriptor matching resuts of test image-pair No. 5 obtained by (a) the LES method, (b) the -d tree nearest neighbor search method, and (c) the proposed method. In the above images, the green and red ines indicate, respectivey, the inier and outier matches after an outier remova process [].

5 220 V. CONCLUSIONS AN FUTURE WORK This paper proposes an efficient and accurate mutiresoution ehaustive search agorithm that achieves high feature descriptor matching accuracy with rea-time performance. The proposed agorithm consists of a L - norm based muti-resoution candidate eimination technique, aowing efficienty removing a noncandidates in a arge candidate ist with ess computationa burden. A nove minimum distance determination method is aso proposed to decide a minimum threshod vaue for eiminating candidates. Eperimenta resuts vaidate the performance of the proposed method by comparing with two eisting search methods, quantitativey and effectivey. In the future, combination with a SIFT detector wi be further investigated. ACKNOWLEGMENT This wor was supported by the Nationa Science Counci of Taiwan, R.O.C. under grant NSC E REFERENCES [] S. A. Nene and S. K. Nayar, A simpe agorithm for nearest neighbor search in high dimensions, IEEE Transactions on Pattern Anaysis and Machine Inteigence, vo. 9, pp , September 997. [2] J. L. Bentey, Mutidimensiona binary search trees in database appications, IEEE Transactions on Software Engineering, vo. 5, pp , Juy 979. [3] T. Uemiya, Y. Matsumoto,. Koizumi, M. Shishibori, and K. Kita, Fast mutidimensiona nearest neighbor search agorithm based on eipsoid distance, Internationa Journa of Advanced Inteigence, vo., pp , November [4] R. Weber, H. Sche, and S. Bott, A quantitative anaysis and performance study for simiarity search methods in high-dimensiona spaces, in Proc. 24 th Very Large ata Bases, New Yor, USA, 998, pp [5]. G. Lowe, istinctive image features from scaeinvariant eypoints, Internationa Journa of Computer Vision, vo. 60, pp. 9-0, November [6] H. Bay, A. Ess, T. Tuyteaars, and L. V. Goo, Speededup robust features (SURF), Computer Vision and Image Understanding, vo. 0, pp , June [7] S. C. Song, M. J. Kim, and J. B. Ra, A fast mutiresoution feature matching agorithm for ehaustive search in arge image databases, IEEE Transactions on Circuits and Systems for Video Technoogy, vo., pp , May 200. [8] S. C. Song, and J. B. Ra, Mutiresoution descriptor matching agorithm for fast ehaustive search in normsorted databases, Journa of Eectronic Imaging, vo. 4, pp. -7, October-ecember [9] P. Morees and P. Perona, Evauation of features detectors and descriptors based on 3 objects, Internationa Journa of Computer Vision, vo. 73, pp , Juy [0] J. M. Keinberg, Two agorithms for nearest-neighbor search in high dimensions, in Proc. 29 th ACM Symposium on Theory of Computing, Teas, USA, 997, pp [] C. Osson, A. Erisson, and R. Hartey, Outier remova using uaity, in Proc. IEEE Conference on Computer Vision and Pattern Recognition, San Francisco, CA, USA, 200, pp Chi-Yi Tsai was born in Kaohsiung, Taiwan, Repubic of China in 978. He received the B.S. and M.S. degree in eectrica engineering from Nationa Yunin University of Science and Technoogy, Yunin, Taiwan, in 2000 and 2002, respectivey. He received the Ph.. degree in eectrica and contro engineering, at the Nationa Chiao Tung University, Taiwan, in He is currenty an assistant professor in department of eectrica engineering, Tamang University, Taiwan. His research interests incude image processing, coor image enhancement processing, visua tracing contro for mobie robots, visua servoing and computer vision. modeing. An-Hung Tsao was born in Taipei, Taiwan, Repubic of China in 989. He received the B.S. degree in eectrica engineering from Tamang University, Taiwan, in 20. He is currenty pursuing the M.S. degree in eectrica engineering at the Tamang University, Taiwan. His research interests incude image processing and computer vision. Chuan-Wei Wang was born in Taipei, Taiwan, Repubic of China in 988. He received the B.S. degree in eectrica engineering from Tamang University, Taiwan, in 20. He is currenty pursuing the M.S. degree in eectrica engineering at the Tamang University, Taiwan. His research interests incude point coud registration and 3

Nearest Neighbor Learning

Nearest Neighbor Learning Nearest Neighbor Learning Cassify based on oca simiarity Ranges from simpe nearest neighbor to case-based and anaogica reasoning Use oca information near the current query instance to decide the cassification

More information

A Fast Block Matching Algorithm Based on the Winner-Update Strategy

A Fast Block Matching Algorithm Based on the Winner-Update Strategy In Proceedings of the Fourth Asian Conference on Computer Vision, Taipei, Taiwan, Jan. 000, Voume, pages 977 98 A Fast Bock Matching Agorithm Based on the Winner-Update Strategy Yong-Sheng Chenyz Yi-Ping

More information

Language Identification for Texts Written in Transliteration

Language Identification for Texts Written in Transliteration Language Identification for Texts Written in Transiteration Andrey Chepovskiy, Sergey Gusev, Margarita Kurbatova Higher Schoo of Economics, Data Anaysis and Artificia Inteigence Department, Pokrovskiy

More information

Mobile App Recommendation: Maximize the Total App Downloads

Mobile App Recommendation: Maximize the Total App Downloads Mobie App Recommendation: Maximize the Tota App Downoads Zhuohua Chen Schoo of Economics and Management Tsinghua University chenzhh3.12@sem.tsinghua.edu.cn Yinghui (Catherine) Yang Graduate Schoo of Management

More information

Efficient Histogram-based Indexing for Video Copy Detection

Efficient Histogram-based Indexing for Video Copy Detection Efficient Histogram-based Indexing for Video Copy Detection Chih-Yi Chiu, Jenq-Haur Wang*, and Hung-Chi Chang Institute of Information Science, Academia Sinica, Taiwan *Department of Computer Science and

More information

Automatic Hidden Web Database Classification

Automatic Hidden Web Database Classification Automatic idden Web atabase Cassification Zhiguo Gong, Jingbai Zhang, and Qian Liu Facuty of Science and Technoogy niversity of Macau Macao, PRC {fstzgg,ma46597,ma46620}@umac.mo Abstract. In this paper,

More information

Chapter Multidimensional Direct Search Method

Chapter Multidimensional Direct Search Method Chapter 09.03 Mutidimensiona Direct Search Method After reading this chapter, you shoud be abe to:. Understand the fundamentas of the mutidimensiona direct search methods. Understand how the coordinate

More information

Sensitivity Analysis of Hopfield Neural Network in Classifying Natural RGB Color Space

Sensitivity Analysis of Hopfield Neural Network in Classifying Natural RGB Color Space Sensitivity Anaysis of Hopfied Neura Network in Cassifying Natura RGB Coor Space Department of Computer Science University of Sharjah UAE rsammouda@sharjah.ac.ae Abstract: - This paper presents a study

More information

Research of Classification based on Deep Neural Network

Research of  Classification based on Deep Neural Network 2018 Internationa Conference on Sensor Network and Computer Engineering (ICSNCE 2018) Research of Emai Cassification based on Deep Neura Network Wang Yawen Schoo of Computer Science and Engineering Xi

More information

An Indian Journal FULL PAPER ABSTRACT KEYWORDS. Trade Science Inc.

An Indian Journal FULL PAPER ABSTRACT KEYWORDS. Trade Science Inc. [Type text] [Type text] [Type text] ISSN : 0974-7435 Voume 10 Issue 16 BioTechnoogy 014 An Indian Journa FULL PAPER BTAIJ, 10(16), 014 [999-9307] Study on prediction of type- fuzzy ogic power system based

More information

Testing Whether a Set of Code Words Satisfies a Given Set of Constraints *

Testing Whether a Set of Code Words Satisfies a Given Set of Constraints * JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 6, 333-346 (010) Testing Whether a Set of Code Words Satisfies a Given Set of Constraints * HSIN-WEN WEI, WAN-CHEN LU, PEI-CHI HUANG, WEI-KUAN SHIH AND MING-YANG

More information

Image Segmentation Using Semi-Supervised k-means

Image Segmentation Using Semi-Supervised k-means I J C T A, 9(34) 2016, pp. 595-601 Internationa Science Press Image Segmentation Using Semi-Supervised k-means Reza Monsefi * and Saeed Zahedi * ABSTRACT Extracting the region of interest is a very chaenging

More information

DETECTION OF OBSTACLE AND FREESPACE IN AN AUTONOMOUS WHEELCHAIR USING A STEREOSCOPIC CAMERA SYSTEM

DETECTION OF OBSTACLE AND FREESPACE IN AN AUTONOMOUS WHEELCHAIR USING A STEREOSCOPIC CAMERA SYSTEM DETECTION OF OBSTACLE AND FREESPACE IN AN AUTONOMOUS WHEELCHAIR USING A STEREOSCOPIC CAMERA SYSTEM Le Minh 1, Thanh Hai Nguyen 2, Tran Nghia Khanh 2, Vo Văn Toi 2, Ngo Van Thuyen 1 1 University of Technica

More information

Comparative Analysis of Relevance for SVM-Based Interactive Document Retrieval

Comparative Analysis of Relevance for SVM-Based Interactive Document Retrieval Comparative Anaysis for SVM-Based Interactive Document Retrieva Paper: Comparative Anaysis of Reevance for SVM-Based Interactive Document Retrieva Hiroshi Murata, Takashi Onoda, and Seiji Yamada Centra

More information

Topology-aware Key Management Schemes for Wireless Multicast

Topology-aware Key Management Schemes for Wireless Multicast Topoogy-aware Key Management Schemes for Wireess Muticast Yan Sun, Wade Trappe,andK.J.RayLiu Department of Eectrica and Computer Engineering, University of Maryand, Coege Park Emai: ysun, kjriu@gue.umd.edu

More information

A METHOD FOR GRIDLESS ROUTING OF PRINTED CIRCUIT BOARDS. A. C. Finch, K. J. Mackenzie, G. J. Balsdon, G. Symonds

A METHOD FOR GRIDLESS ROUTING OF PRINTED CIRCUIT BOARDS. A. C. Finch, K. J. Mackenzie, G. J. Balsdon, G. Symonds A METHOD FOR GRIDLESS ROUTING OF PRINTED CIRCUIT BOARDS A C Finch K J Mackenzie G J Basdon G Symonds Raca-Redac Ltd Newtown Tewkesbury Gos Engand ABSTRACT The introduction of fine-ine technoogies to printed

More information

(0,l) (0,0) (l,0) (l,l)

(0,l) (0,0) (l,0) (l,l) Parae Domain Decomposition and Load Baancing Using Space-Fiing Curves Srinivas Auru Fatih E. Sevigen Dept. of CS Schoo of EECS New Mexico State University Syracuse University Las Cruces, NM 88003-8001

More information

Further Optimization of the Decoding Method for Shortened Binary Cyclic Fire Code

Further Optimization of the Decoding Method for Shortened Binary Cyclic Fire Code Further Optimization of the Decoding Method for Shortened Binary Cycic Fire Code Ch. Nanda Kishore Heosoft (India) Private Limited 8-2-703, Road No-12 Banjara His, Hyderabad, INDIA Phone: +91-040-3378222

More information

Quality Assessment using Tone Mapping Algorithm

Quality Assessment using Tone Mapping Algorithm Quaity Assessment using Tone Mapping Agorithm Nandiki.pushpa atha, Kuriti.Rajendra Prasad Research Schoar, Assistant Professor, Vignan s institute of engineering for women, Visakhapatnam, Andhra Pradesh,

More information

A Comparison of a Second-Order versus a Fourth- Order Laplacian Operator in the Multigrid Algorithm

A Comparison of a Second-Order versus a Fourth- Order Laplacian Operator in the Multigrid Algorithm A Comparison of a Second-Order versus a Fourth- Order Lapacian Operator in the Mutigrid Agorithm Kaushik Datta (kdatta@cs.berkeey.edu Math Project May 9, 003 Abstract In this paper, the mutigrid agorithm

More information

A study of comparative evaluation of methods for image processing using color features

A study of comparative evaluation of methods for image processing using color features A study of comparative evauation of methods for image processing using coor features FLORENTINA MAGDA ENESCU,CAZACU DUMITRU Department Eectronics, Computers and Eectrica Engineering University Pitești

More information

Proceedings of the International Conference on Systolic Arrays, San Diego, California, U.S.A., May 25-27, 1988 AN EFFICIENT ASYNCHRONOUS MULTIPLIER!

Proceedings of the International Conference on Systolic Arrays, San Diego, California, U.S.A., May 25-27, 1988 AN EFFICIENT ASYNCHRONOUS MULTIPLIER! [1,2] have, in theory, revoutionized cryptography. Unfortunatey, athough offer many advantages over conventiona and authentication), such cock synchronization in this appication due to the arge operand

More information

Backing-up Fuzzy Control of a Truck-trailer Equipped with a Kingpin Sliding Mechanism

Backing-up Fuzzy Control of a Truck-trailer Equipped with a Kingpin Sliding Mechanism Backing-up Fuzzy Contro of a Truck-traier Equipped with a Kingpin Siding Mechanism G. Siamantas and S. Manesis Eectrica & Computer Engineering Dept., University of Patras, Patras, Greece gsiama@upatras.gr;stam.manesis@ece.upatras.gr

More information

On-Chip CNN Accelerator for Image Super-Resolution

On-Chip CNN Accelerator for Image Super-Resolution On-Chip CNN Acceerator for Image Super-Resoution Jung-Woo Chang and Suk-Ju Kang Dept. of Eectronic Engineering, Sogang University, Seou, South Korea {zwzang91, sjkang}@sogang.ac.kr ABSTRACT To impement

More information

Response Surface Model Updating for Nonlinear Structures

Response Surface Model Updating for Nonlinear Structures Response Surface Mode Updating for Noninear Structures Gonaz Shahidi a, Shamim Pakzad b a PhD Student, Department of Civi and Environmenta Engineering, Lehigh University, ATLSS Engineering Research Center,

More information

Automatic Grouping for Social Networks CS229 Project Report

Automatic Grouping for Social Networks CS229 Project Report Automatic Grouping for Socia Networks CS229 Project Report Xiaoying Tian Ya Le Yangru Fang Abstract Socia networking sites aow users to manuay categorize their friends, but it is aborious to construct

More information

Hiding secrete data in compressed images using histogram analysis

Hiding secrete data in compressed images using histogram analysis University of Woongong Research Onine University of Woongong in Dubai - Papers University of Woongong in Dubai 2 iding secrete data in compressed images using histogram anaysis Farhad Keissarian University

More information

Digital Image Watermarking Algorithm Based on Fast Curvelet Transform

Digital Image Watermarking Algorithm Based on Fast Curvelet Transform J. Software Engineering & Appications, 010, 3, 939-943 doi:10.436/jsea.010.310111 Pubished Onine October 010 (http://www.scirp.org/journa/jsea) 939 igita Image Watermarking Agorithm Based on Fast Curveet

More information

A Memory Grouping Method for Sharing Memory BIST Logic

A Memory Grouping Method for Sharing Memory BIST Logic A Memory Grouping Method for Sharing Memory BIST Logic Masahide Miyazai, Tomoazu Yoneda, and Hideo Fuiwara Graduate Schoo of Information Science, Nara Institute of Science and Technoogy (NAIST), 8916-5

More information

CSE120 Principles of Operating Systems. Prof Yuanyuan (YY) Zhou Scheduling

CSE120 Principles of Operating Systems. Prof Yuanyuan (YY) Zhou Scheduling CSE120 Principes of Operating Systems Prof Yuanyuan (YY) Zhou Scheduing Announcement Homework 2 due on October 25th Project 1 due on October 26th 2 CSE 120 Scheduing and Deadock Scheduing Overview In discussing

More information

Alpha labelings of straight simple polyominal caterpillars

Alpha labelings of straight simple polyominal caterpillars Apha abeings of straight simpe poyomina caterpiars Daibor Froncek, O Nei Kingston, Kye Vezina Department of Mathematics and Statistics University of Minnesota Duuth University Drive Duuth, MN 82-3, U.S.A.

More information

University of Illinois at Urbana-Champaign, Urbana, IL 61801, /11/$ IEEE 162

University of Illinois at Urbana-Champaign, Urbana, IL 61801, /11/$ IEEE 162 oward Efficient Spatia Variation Decomposition via Sparse Regression Wangyang Zhang, Karthik Baakrishnan, Xin Li, Duane Boning and Rob Rutenbar 3 Carnegie Meon University, Pittsburgh, PA 53, wangyan@ece.cmu.edu,

More information

Sample of a training manual for a software tool

Sample of a training manual for a software tool Sampe of a training manua for a software too We use FogBugz for tracking bugs discovered in RAPPID. I wrote this manua as a training too for instructing the programmers and engineers in the use of FogBugz.

More information

Lecture Notes for Chapter 4 Part III. Introduction to Data Mining

Lecture Notes for Chapter 4 Part III. Introduction to Data Mining Data Mining Cassification: Basic Concepts, Decision Trees, and Mode Evauation Lecture Notes for Chapter 4 Part III Introduction to Data Mining by Tan, Steinbach, Kumar Adapted by Qiang Yang (2010) Tan,Steinbach,

More information

Providing Hop-by-Hop Authentication and Source Privacy in Wireless Sensor Networks

Providing Hop-by-Hop Authentication and Source Privacy in Wireless Sensor Networks The 31st Annua IEEE Internationa Conference on Computer Communications: Mini-Conference Providing Hop-by-Hop Authentication and Source Privacy in Wireess Sensor Networks Yun Li Jian Li Jian Ren Department

More information

JOINT IMAGE REGISTRATION AND EXAMPLE-BASED SUPER-RESOLUTION ALGORITHM

JOINT IMAGE REGISTRATION AND EXAMPLE-BASED SUPER-RESOLUTION ALGORITHM JOINT IMAGE REGISTRATION AND AMPLE-BASED SUPER-RESOLUTION ALGORITHM Hyo-Song Kim, Jeyong Shin, and Rae-Hong Park Department of Eectronic Engineering, Schoo of Engineering, Sogang University 35 Baekbeom-ro,

More information

A VIDEO-BASED APPROACH FOR RAILWAY BRIDGE SURFACE CRACK DETECTION

A VIDEO-BASED APPROACH FOR RAILWAY BRIDGE SURFACE CRACK DETECTION 6 th Internationa Symposium on Mobie Mapping Technoogy, Presidente Prudente, São Pauo, Brazi, Juy 21-24, 2009 A VIDEO-BASED APPROACH FOR RAILWAY BRIDGE SURFACE CRACK DETECTION LI Qingquan a,c, CHEN Long

More information

DETERMINING INTUITIONISTIC FUZZY DEGREE OF OVERLAPPING OF COMPUTATION AND COMMUNICATION IN PARALLEL APPLICATIONS USING GENERALIZED NETS

DETERMINING INTUITIONISTIC FUZZY DEGREE OF OVERLAPPING OF COMPUTATION AND COMMUNICATION IN PARALLEL APPLICATIONS USING GENERALIZED NETS DETERMINING INTUITIONISTIC FUZZY DEGREE OF OVERLAPPING OF COMPUTATION AND COMMUNICATION IN PARALLEL APPLICATIONS USING GENERALIZED NETS Pave Tchesmedjiev, Peter Vassiev Centre for Biomedica Engineering,

More information

FREE-FORM ANISOTROPY: A NEW METHOD FOR CRACK DETECTION ON PAVEMENT SURFACE IMAGES

FREE-FORM ANISOTROPY: A NEW METHOD FOR CRACK DETECTION ON PAVEMENT SURFACE IMAGES FREE-FORM ANISOTROPY: A NEW METHOD FOR CRACK DETECTION ON PAVEMENT SURFACE IMAGES Tien Sy Nguyen, Stéphane Begot, Forent Ducuty, Manue Avia To cite this version: Tien Sy Nguyen, Stéphane Begot, Forent

More information

WATERMARKING GIS DATA FOR DIGITAL MAP COPYRIGHT PROTECTION

WATERMARKING GIS DATA FOR DIGITAL MAP COPYRIGHT PROTECTION WATERMARKING GIS DATA FOR DIGITAL MAP COPYRIGHT PROTECTION Shen Tao Chinese Academy of Surveying and Mapping, Beijing 100039, China shentao@casm.ac.cn Xu Dehe Institute of resources and environment, North

More information

Endoscopic Motion Compensation of High Speed Videoendoscopy

Endoscopic Motion Compensation of High Speed Videoendoscopy Endoscopic Motion Compensation of High Speed Videoendoscopy Bharath avuri Department of Computer Science and Engineering, University of South Caroina, Coumbia, SC - 901. ravuri@cse.sc.edu Abstract. High

More information

A New Supervised Clustering Algorithm Based on Min-Max Modular Network with Gaussian-Zero-Crossing Functions

A New Supervised Clustering Algorithm Based on Min-Max Modular Network with Gaussian-Zero-Crossing Functions 2006 Internationa Joint Conference on Neura Networks Sheraton Vancouver Wa Centre Hote, Vancouver, BC, Canada Juy 16-21, 2006 A New Supervised Custering Agorithm Based on Min-Max Moduar Network with Gaussian-Zero-Crossing

More information

Lecture outline Graphics and Interaction Scan Converting Polygons and Lines. Inside or outside a polygon? Scan conversion.

Lecture outline Graphics and Interaction Scan Converting Polygons and Lines. Inside or outside a polygon? Scan conversion. Lecture outine 433-324 Graphics and Interaction Scan Converting Poygons and Lines Department of Computer Science and Software Engineering The Introduction Scan conversion Scan-ine agorithm Edge coherence

More information

Adaptive 360 VR Video Streaming: Divide and Conquer!

Adaptive 360 VR Video Streaming: Divide and Conquer! Adaptive 360 VR Video Streaming: Divide and Conquer! Mohammad Hosseini *, Viswanathan Swaminathan * University of Iinois at Urbana-Champaign (UIUC) Adobe Research, San Jose, USA Emai: shossen2@iinois.edu,

More information

MACHINE learning techniques can, automatically,

MACHINE learning techniques can, automatically, Proceedings of Internationa Joint Conference on Neura Networks, Daas, Texas, USA, August 4-9, 203 High Leve Data Cassification Based on Network Entropy Fiipe Aves Neto and Liang Zhao Abstract Traditiona

More information

Complex Human Activity Searching in a Video Employing Negative Space Analysis

Complex Human Activity Searching in a Video Employing Negative Space Analysis Compex Human Activity Searching in a Video Empoying Negative Space Anaysis Shah Atiqur Rahman, Siu-Yeung Cho, M.K.H. Leung 3, Schoo of Computer Engineering, Nanyang Technoogica University, Singapore 639798

More information

As Michi Henning and Steve Vinoski showed 1, calling a remote

As Michi Henning and Steve Vinoski showed 1, calling a remote Reducing CORBA Ca Latency by Caching and Prefetching Bernd Brügge and Christoph Vismeier Technische Universität München Method ca atency is a major probem in approaches based on object-oriented middeware

More information

file://j:\macmillancomputerpublishing\chapters\in073.html 3/22/01

file://j:\macmillancomputerpublishing\chapters\in073.html 3/22/01 Page 1 of 15 Chapter 9 Chapter 9: Deveoping the Logica Data Mode The information requirements and business rues provide the information to produce the entities, attributes, and reationships in ogica mode.

More information

Multi-level Shape Recognition based on Wavelet-Transform. Modulus Maxima

Multi-level Shape Recognition based on Wavelet-Transform. Modulus Maxima uti-eve Shape Recognition based on Waveet-Transform oduus axima Faouzi Aaya Cheikh, Azhar Quddus and oncef Gabbouj Tampere University of Technoogy (TUT), Signa Processing aboratory, P.O. Box 553, FIN-33101

More information

Distance Weighted Discrimination and Second Order Cone Programming

Distance Weighted Discrimination and Second Order Cone Programming Distance Weighted Discrimination and Second Order Cone Programming Hanwen Huang, Xiaosun Lu, Yufeng Liu, J. S. Marron, Perry Haaand Apri 3, 2012 1 Introduction This vignette demonstrates the utiity and

More information

Utility-based Camera Assignment in a Video Network: A Game Theoretic Framework

Utility-based Camera Assignment in a Video Network: A Game Theoretic Framework This artice has been accepted for pubication in a future issue of this journa, but has not been fuy edited. Content may change prior to fina pubication. Y.LI AND B.BHANU CAMERA ASSIGNMENT: A GAME-THEORETIC

More information

Location Aided Hybrid Routing Algorithm for MANET

Location Aided Hybrid Routing Algorithm for MANET Internationa Journa of Engineering & Technoogy IJET-IJENS Vo: No: 0 30 Location Aided Hybrid Routing Agorithm for MANET Mamoun Hussein Mamoun Facuty of Computer and Information Sciences Mansoura University,

More information

Arithmetic Coding. Prof. Ja-Ling Wu. Department of Computer Science and Information Engineering National Taiwan University

Arithmetic Coding. Prof. Ja-Ling Wu. Department of Computer Science and Information Engineering National Taiwan University Arithmetic Coding Prof. Ja-Ling Wu Department of Computer Science and Information Engineering Nationa Taiwan University F(X) Shannon-Fano-Eias Coding W..o.g. we can take X={,,,m}. Assume p()>0 for a. The

More information

Solving Large Double Digestion Problems for DNA Restriction Mapping by Using Branch-and-Bound Integer Linear Programming

Solving Large Double Digestion Problems for DNA Restriction Mapping by Using Branch-and-Bound Integer Linear Programming The First Internationa Symposium on Optimization and Systems Bioogy (OSB 07) Beijing, China, August 8 10, 2007 Copyright 2007 ORSC & APORC pp. 267 279 Soving Large Doube Digestion Probems for DNA Restriction

More information

A Method for Calculating Term Similarity on Large Document Collections

A Method for Calculating Term Similarity on Large Document Collections $ A Method for Cacuating Term Simiarity on Large Document Coections Wofgang W Bein Schoo of Computer Science University of Nevada Las Vegas, NV 915-019 bein@csunvedu Jeffrey S Coombs and Kazem Taghva Information

More information

AN EVOLUTIONARY APPROACH TO OPTIMIZATION OF A LAYOUT CHART

AN EVOLUTIONARY APPROACH TO OPTIMIZATION OF A LAYOUT CHART 13 AN EVOLUTIONARY APPROACH TO OPTIMIZATION OF A LAYOUT CHART Eva Vona University of Ostrava, 30th dubna st. 22, Ostrava, Czech Repubic e-mai: Eva.Vona@osu.cz Abstract: This artice presents the use of

More information

Space-Time Trade-offs.

Space-Time Trade-offs. Space-Time Trade-offs. Chethan Kamath 03.07.2017 1 Motivation An important question in the study of computation is how to best use the registers in a CPU. In most cases, the amount of registers avaiabe

More information

arxiv: v1 [cs.cv] 28 Sep 2015

arxiv: v1 [cs.cv] 28 Sep 2015 Fast Non-oca Stereo Matching based on Hierarchica Disparity Prediction Xuan Luo, Xuejiao Bai, Shuo Li, Hongtao Lu Shanghai Jiao Tong University, No. 800, Dongchuan Road, Shanghai, China {roxanneuo, yukiaya,

More information

People's Republic of China b College of Life and Environmental Science, Central University. Nanjing, People's Republic of China

People's Republic of China b College of Life and Environmental Science, Central University. Nanjing, People's Republic of China This artice was downoaded by: [Nationa Library of China] On: 30 December 2011, t: 18:19 Pubisher: Tayor & Francis Informa Ltd Registered in Engand and Waes Registered Number: 1072954 Registered office:

More information

Collinearity and Coplanarity Constraints for Structure from Motion

Collinearity and Coplanarity Constraints for Structure from Motion Coinearity and Copanarity Constraints for Structure from Motion Gang Liu 1, Reinhard Kette 2, and Bodo Rosenhahn 3 1 Institute of Information Sciences and Technoogy, Massey University, New Zeaand, Department

More information

Design of IP Networks with End-to. to- End Performance Guarantees

Design of IP Networks with End-to. to- End Performance Guarantees Design of IP Networks with End-to to- End Performance Guarantees Irena Atov and Richard J. Harris* ( Swinburne University of Technoogy & *Massey University) Presentation Outine Introduction Mutiservice

More information

K-Means Based Matching Algorithm for Multi-Resolution Feature Descriptors

K-Means Based Matching Algorithm for Multi-Resolution Feature Descriptors K-Means Based Matching Algorithm for Multi-Resolution Feature Descriptors Shao-Tzu Huang, Chen-Chien Hsu, Wei-Yen Wang International Science Index, Electrical and Computer Engineering waset.org/publication/0007607

More information

Priority Queueing for Packets with Two Characteristics

Priority Queueing for Packets with Two Characteristics 1 Priority Queueing for Packets with Two Characteristics Pave Chuprikov, Sergey I. Nikoenko, Aex Davydow, Kiri Kogan Abstract Modern network eements are increasingy required to dea with heterogeneous traffic.

More information

TSR: Topology Reduction from Tree to Star Data Grids

TSR: Topology Reduction from Tree to Star Data Grids 03 Seventh Internationa Conference on Innovative Mobie and Internet Services in biquitous Computing TSR: Topoogy Reduction from Tree to Star Data Grids Ming-Chang Lee #, Fang-Yie Leu *, Ying-ping Chen

More information

5940 IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 13, NO. 11, NOVEMBER 2014

5940 IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 13, NO. 11, NOVEMBER 2014 5940 IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 13, NO. 11, NOVEMBER 014 Topoogy-Transparent Scheduing in Mobie Ad Hoc Networks With Mutipe Packet Reception Capabiity Yiming Liu, Member, IEEE,

More information

NCH Software Spin 3D Mesh Converter

NCH Software Spin 3D Mesh Converter NCH Software Spin 3D Mesh Converter This user guide has been created for use with Spin 3D Mesh Converter Version 1.xx NCH Software Technica Support If you have difficuties using Spin 3D Mesh Converter

More information

Fastest-Path Computation

Fastest-Path Computation Fastest-Path Computation DONGHUI ZHANG Coege of Computer & Information Science Northeastern University Synonyms fastest route; driving direction Definition In the United states, ony 9.% of the househods

More information

Extracting semistructured data from the Web: An XQuery Based Approach

Extracting semistructured data from the Web: An XQuery Based Approach EurAsia-ICT 2002, Shiraz-Iran, 29-31 Oct. Extracting semistructured data from the Web: An XQuery Based Approach Gies Nachouki Université de Nantes - Facuté des Sciences, IRIN, 2, rue de a Houssinière,

More information

MCSE Training Guide: Windows Architecture and Memory

MCSE Training Guide: Windows Architecture and Memory MCSE Training Guide: Windows 95 -- Ch 2 -- Architecture and Memory Page 1 of 13 MCSE Training Guide: Windows 95-2 - Architecture and Memory This chapter wi hep you prepare for the exam by covering the

More information

A Petrel Plugin for Surface Modeling

A Petrel Plugin for Surface Modeling A Petre Pugin for Surface Modeing R. M. Hassanpour, S. H. Derakhshan and C. V. Deutsch Structure and thickness uncertainty are important components of any uncertainty study. The exact ocations of the geoogica

More information

Minimizing Resource Cost for Camera Stream Scheduling in Video Data Center

Minimizing Resource Cost for Camera Stream Scheduling in Video Data Center Gao YH, Ma HD, Liu W. Minimizing resource cost for camera stream scheduing in video data center. JOURNAL OF COMPUTER SCIENCE AND TECHNOLOGY 32(3): 555 570 May 2017. DOI 10.1007/s11390-017-1743-x Minimizing

More information

A Design Method for Optimal Truss Structures with Certain Redundancy Based on Combinatorial Rigidity Theory

A Design Method for Optimal Truss Structures with Certain Redundancy Based on Combinatorial Rigidity Theory 0 th Word Congress on Structura and Mutidiscipinary Optimization May 9 -, 03, Orando, Forida, USA A Design Method for Optima Truss Structures with Certain Redundancy Based on Combinatoria Rigidity Theory

More information

CLOUD RADIO ACCESS NETWORK WITH OPTIMIZED BASE-STATION CACHING

CLOUD RADIO ACCESS NETWORK WITH OPTIMIZED BASE-STATION CACHING CLOUD RADIO ACCESS NETWORK WITH OPTIMIZED BASE-STATION CACHING Binbin Dai and Wei Yu Ya-Feng Liu Department of Eectrica and Computer Engineering University of Toronto, Toronto ON, Canada M5S 3G4 Emais:

More information

Sparse Representation based Face Recognition with Limited Labeled Samples

Sparse Representation based Face Recognition with Limited Labeled Samples Sparse Representation based Face Recognition with Limited Labeed Sampes Vijay Kumar, Anoop Namboodiri, C.V. Jawahar Center for Visua Information Technoogy, IIIT Hyderabad, India Abstract Sparse representations

More information

Crossing Minimization Problems of Drawing Bipartite Graphs in Two Clusters

Crossing Minimization Problems of Drawing Bipartite Graphs in Two Clusters Crossing Minimiation Probems o Drawing Bipartite Graphs in Two Custers Lanbo Zheng, Le Song, and Peter Eades Nationa ICT Austraia, and Schoo o Inormation Technoogies, University o Sydney,Austraia Emai:

More information

Intro to Programming & C Why Program? 1.2 Computer Systems: Hardware and Software. Why Learn to Program?

Intro to Programming & C Why Program? 1.2 Computer Systems: Hardware and Software. Why Learn to Program? Intro to Programming & C++ Unit 1 Sections 1.1-3 and 2.1-10, 2.12-13, 2.15-17 CS 1428 Spring 2018 Ji Seaman 1.1 Why Program? Computer programmabe machine designed to foow instructions Program a set of

More information

Relative Positioning from Model Indexing

Relative Positioning from Model Indexing Reative Positioning from Mode Indexing Stefan Carsson Computationa Vision and Active Perception Laboratory (CVAP)* Roya Institute of Technoogy (KTH), Stockhom, Sweden Abstract We show how to determine

More information

Research on UAV Fixed Area Inspection based on Image Reconstruction

Research on UAV Fixed Area Inspection based on Image Reconstruction Research on UAV Fixed Area Inspection based on Image Reconstruction Kun Cao a, Fei Wu b Schoo of Eectronic and Eectrica Engineering, Shanghai University of Engineering Science, Abstract Shanghai 20600,

More information

An Adaptive Two-Copy Delayed SR-ARQ for Satellite Channels with Shadowing

An Adaptive Two-Copy Delayed SR-ARQ for Satellite Channels with Shadowing An Adaptive Two-Copy Deayed SR-ARQ for Sateite Channes with Shadowing Jing Zhu, Sumit Roy zhuj@ee.washington.edu Department of Eectrica Engineering, University of Washington Abstract- The paper focuses

More information

Optimization and Application of Support Vector Machine Based on SVM Algorithm Parameters

Optimization and Application of Support Vector Machine Based on SVM Algorithm Parameters Optimization and Appication of Support Vector Machine Based on SVM Agorithm Parameters YAN Hui-feng 1, WANG Wei-feng 1, LIU Jie 2 1 ChongQing University of Posts and Teecom 400065, China 2 Schoo Of Civi

More information

AUTOMATIC IMAGE RETARGETING USING SALIENCY BASED MESH PARAMETERIZATION

AUTOMATIC IMAGE RETARGETING USING SALIENCY BASED MESH PARAMETERIZATION S.Sai Kumar et a. / (IJCSIT Internationa Journa of Computer Science and Information Technoogies, Vo. 1 (4, 010, 73-79 AUTOMATIC IMAGE RETARGETING USING SALIENCY BASED MESH PARAMETERIZATION 1 S.Sai Kumar,

More information

Density-Based Clustering for Real-Time Stream Data

Density-Based Clustering for Real-Time Stream Data Density-Based Custering for Rea-Time Stream Data Yixin Chen Department of Computer Science and Engineering Washington University in St. Louis St. Louis, USA chen@cse.wust.edu Li Tu Institute of Information

More information

Straight-line code (or IPO: Input-Process-Output) If/else & switch. Relational Expressions. Decisions. Sections 4.1-6, , 4.

Straight-line code (or IPO: Input-Process-Output) If/else & switch. Relational Expressions. Decisions. Sections 4.1-6, , 4. If/ese & switch Unit 3 Sections 4.1-6, 4.8-12, 4.14-15 CS 1428 Spring 2018 Ji Seaman Straight-ine code (or IPO: Input-Process-Output) So far a of our programs have foowed this basic format: Input some

More information

GPU Implementation of Parallel SVM as Applied to Intrusion Detection System

GPU Implementation of Parallel SVM as Applied to Intrusion Detection System GPU Impementation of Parae SVM as Appied to Intrusion Detection System Sudarshan Hiray Research Schoar, Department of Computer Engineering, Vishwakarma Institute of Technoogy, Pune, India sdhiray7@gmai.com

More information

Quality of Service Evaluations of Multicast Streaming Protocols *

Quality of Service Evaluations of Multicast Streaming Protocols * Quaity of Service Evauations of Muticast Streaming Protocos Haonan Tan Derek L. Eager Mary. Vernon Hongfei Guo omputer Sciences Department University of Wisconsin-Madison, USA {haonan, vernon, guo}@cs.wisc.edu

More information

Fuzzy Equivalence Relation Based Clustering and Its Use to Restructuring Websites Hyperlinks and Web Pages

Fuzzy Equivalence Relation Based Clustering and Its Use to Restructuring Websites Hyperlinks and Web Pages Fuzzy Equivaence Reation Based Custering and Its Use to Restructuring Websites Hyperinks and Web Pages Dimitris K. Kardaras,*, Xenia J. Mamakou, and Bi Karakostas 2 Business Informatics Laboratory, Dept.

More information

Formulation of Loss minimization Problem Using Genetic Algorithm and Line-Flow-based Equations

Formulation of Loss minimization Problem Using Genetic Algorithm and Line-Flow-based Equations Formuation of Loss minimization Probem Using Genetic Agorithm and Line-Fow-based Equations Sharanya Jaganathan, Student Member, IEEE, Arun Sekar, Senior Member, IEEE, and Wenzhong Gao, Senior member, IEEE

More information

Human Action Recognition Using Key Points Displacement

Human Action Recognition Using Key Points Displacement Human Action Recognition Using Key Points Dispacement Kuan-Ting Lai,, Chaur-Heh Hsieh 3, Mao-Fu Lai 4, and Ming-Syan Chen, Research Center for Information Technoogy Innovation, Academia Sinica, Taiwan

More information

Hour 3: The Network Access Layer Page 1 of 10. Discuss how TCP/IP s Network Access layer relates to the OSI networking model

Hour 3: The Network Access Layer Page 1 of 10. Discuss how TCP/IP s Network Access layer relates to the OSI networking model Hour 3: The Network Access Layer Page 1 of 10 Hour 3: The Network Access Layer At the base of the TCP/IP protoco stack is the Network Access ayer, the coection of services and specifications that provide

More information

Handling Outliers in Non-Blind Image Deconvolution

Handling Outliers in Non-Blind Image Deconvolution Handing Outiers in Non-Bind Image Deconvoution Sunghyun Cho 1 Jue Wang 2 Seungyong Lee 1,2 sodomau@postech.ac.kr juewang@adobe.com eesy@postech.ac.kr 1 POSTECH 2 Adobe Systems Abstract Non-bind deconvoution

More information

Joint disparity and motion eld estimation in. stereoscopic image sequences. Ioannis Patras, Nikos Alvertos and Georgios Tziritas y.

Joint disparity and motion eld estimation in. stereoscopic image sequences. Ioannis Patras, Nikos Alvertos and Georgios Tziritas y. FORTH-ICS / TR-157 December 1995 Joint disparity and motion ed estimation in stereoscopic image sequences Ioannis Patras, Nikos Avertos and Georgios Tziritas y Abstract This work aims at determining four

More information

Register Allocation. Consider the following assignment statement: x = (a*b)+((c*d)+(e*f)); In posfix notation: ab*cd*ef*++x

Register Allocation. Consider the following assignment statement: x = (a*b)+((c*d)+(e*f)); In posfix notation: ab*cd*ef*++x Register Aocation Consider the foowing assignment statement: x = (a*b)+((c*d)+(e*f)); In posfix notation: ab*cd*ef*++x Assume that two registers are avaiabe. Starting from the eft a compier woud generate

More information

MULTITASK MULTIVARIATE COMMON SPARSE REPRESENTATIONS FOR ROBUST MULTIMODAL BIOMETRICS RECOGNITION. Heng Zhang, Vishal M. Patel and Rama Chellappa

MULTITASK MULTIVARIATE COMMON SPARSE REPRESENTATIONS FOR ROBUST MULTIMODAL BIOMETRICS RECOGNITION. Heng Zhang, Vishal M. Patel and Rama Chellappa MULTITASK MULTIVARIATE COMMON SPARSE REPRESENTATIONS FOR ROBUST MULTIMODAL BIOMETRICS RECOGNITION Heng Zhang, Visha M. Pate and Rama Cheappa Center for Automation Research University of Maryand, Coage

More information

Absolute three-dimensional shape measurement with two-frequency square binary patterns

Absolute three-dimensional shape measurement with two-frequency square binary patterns 871 Vo. 56, No. 31 / November 1 217 / Appied Optics Research Artice Absoute three-dimensiona shape measurement with two-frequency square binary patterns CHUFAN JIANG AND SONG ZHANG* Schoo of Mechanica

More information

UnixWare 7 System Administration UnixWare 7 System Configuration

UnixWare 7 System Administration UnixWare 7 System Configuration UnixWare 7 System Administration - CH 3 - UnixWare 7 System Configuration Page 1 of 8 [Figures are not incuded in this sampe chapter] UnixWare 7 System Administration - 3 - UnixWare 7 System Configuration

More information

1682 IEEE TRANSACTIONS ON FUZZY SYSTEMS, VOL. 22, NO. 6, DECEMBER Backward Fuzzy Rule Interpolation

1682 IEEE TRANSACTIONS ON FUZZY SYSTEMS, VOL. 22, NO. 6, DECEMBER Backward Fuzzy Rule Interpolation 1682 IEEE TRANSACTIONS ON FUZZY SYSTEMS, VOL. 22, NO. 6, DECEMBER 2014 Bacward Fuzzy Rue Interpoation Shangzhu Jin, Ren Diao, Chai Que, Senior Member, IEEE, and Qiang Shen Abstract Fuzzy rue interpoation

More information

Application of Intelligence Based Genetic Algorithm for Job Sequencing Problem on Parallel Mixed-Model Assembly Line

Application of Intelligence Based Genetic Algorithm for Job Sequencing Problem on Parallel Mixed-Model Assembly Line American J. of Engineering and Appied Sciences 3 (): 5-24, 200 ISSN 94-7020 200 Science Pubications Appication of Inteigence Based Genetic Agorithm for Job Sequencing Probem on Parae Mixed-Mode Assemby

More information

Reference trajectory tracking for a multi-dof robot arm

Reference trajectory tracking for a multi-dof robot arm Archives of Contro Sciences Voume 5LXI, 5 No. 4, pages 53 57 Reference trajectory tracking for a muti-dof robot arm RÓBERT KRASŇANSKÝ, PETER VALACH, DÁVID SOÓS, JAVAD ZARBAKHSH This paper presents the

More information

Coupling Web Usage Mining with Content Mining for Recommendation Systems

Coupling Web Usage Mining with Content Mining for Recommendation Systems Couping Web Usage Mining with Content Mining for Recommendation Systems Rehab Duwairi Department of Computer Science and Engineering Qatar Uniersity Qatar Rehab.Duwairi@qu.edu.qa Ebraheem Ehaddad Department

More information

A Fast-Convergence Decoding Method and Memory-Efficient VLSI Decoder Architecture for Irregular LDPC Codes in the IEEE 802.

A Fast-Convergence Decoding Method and Memory-Efficient VLSI Decoder Architecture for Irregular LDPC Codes in the IEEE 802. A Fast-Convergence Decoding Method and Memory-Efficient VLSI Decoder Architecture for Irreguar LDPC Codes in the IEEE 82.16e Standards Yeong-Luh Ueng and Chung-Chao Cheng Dept. of Eectrica Engineering,

More information