An Optimised Density Based Clustering Algorithm

Size: px
Start display at page:

Download "An Optimised Density Based Clustering Algorithm"

Transcription

1 Intenational Jounal of Compute Applications ( ) Volume 6 No.9, Septembe 010 An Optimised Density Based Clusteing Algoithm J. Hencil Pete Depatment of Compute Science St. Xavie s College, Palayamkottai, India A. Antonysamy Depatment of Mathematics St. Xavie s College, Kathmandu, Nepal ABSTRACT The DBSCAN [1] algoithm is a popula algoithm in Data Mining field as it has the ability to mine the noiseless abitay shape Clustes in an elegant way. As the oiginal DBSCAN algoithm uses the distance measues to compute the distance between objects, it consumes so much pocessing time and its computation complexity comes as O (N ). In this pape we have poposed a new algoithm to impove the pefomance of DBSCAN algoithm. The existing algoithms A Fast DBSCAN Algoithm[6] and Memoy effect in DBSCAN algoithm[7] has been combined in the new solution to speed up the pefomance as well as impove the quality of the output. As the RegionQuey opeation takes long time to pocess the objects, only few objects ae consideed fo the expansion and the emaining missed bode objects ae handled diffeently duing the cluste expansion. Eventually the pefomance analysis and the cluste output show that the poposed solution is bette to the existing algoithms. Keywods Optimised DBSCAN, Density Cluste, Optimised RegionQuey, RegionQuey. 1. INTRODUCTION Data mining is a fast gowing field in which clusteing plays a vey impotant ole. Clusteing is the pocess of gouping a set of physical o abstact objects into classes of simila objects []. Among the many algoithms poposed in the clusteing field, DBSCAN is one of the most popula algoithms due to its high quality of noiseless output clustes. As the oiginal DBSCAN algoithm RegionQuey function is vey expensive facto in tems of time, we have poposed a solution to minimize the RegionQuey function call to cove the maximum neighbous in an elegant way. The Fast DBSCAN Algoithm s[6] seleted seed objects RegionQuey has been impoved to give the bette output, at the same time within less time using Memoy effect in DBSCAN algoithm[7]. The emaining objects pesent in the bode aea have been examined sepaately duing the cluste expansion which is not done in the Fast DBSCAN Algoithm. So the new algoithm is capable to give the bette pefomance than the existing DBSCAN algoithms. Rest of the pape is oganised as follows. Section gives the bief histoy about the elated woks in the same aea. Section 3 gives the intoduction of oiginal DBSCAN and section 4 explains the poposed algoithm. Afte the new algoithm s explanation, section 5 shows the Expeimental Results and final section 6 pesents the conclusion and futue wok associated with this algoithm.. RELATED WORK The DBSCAN (Density Based Spatial Clusteing of Application with Noise) [1] is the basic clusteing algoithm to mine the clustes based on objects density. In this algoithm, fist the numbe of objects pesent within the neighbou egion (Eps) is computed. If the neighbou objects count is below the given theshold value, the object will be maked as NOISE. Othewise the new cluste will be fomed fom the coe object by finding the goup of density connected objects that ae maximal w..t densityeachability. The CHAMELEON [3] is a two phase algoithm. It geneates a k-neaest gaph in the fist phase and hieachical cluste algoithm has been used in the second phase to find the cluste by combining the sub clustes. The OPTICS [4] algoithm adopts the oiginal DBSCAN algoithm to deal with vaiance density clustes. This algoithm computes an odeing of the objects based on the eachability distance fo epesenting the intinsic hieachical clusteing stuctue. The Valleys in the plot indicate the clustes. But the input paametes ξ is citical fo identifying the valleys as ξ clustes. The DENCLUE [5] algoithm uses kenel density estimation. The esult of density function gives the local density maxima value and this local density value is used to fom the clustes. If the local density value is vey small, the objects of clustes will be discaded as NOISE. A Fast DBSCAN (FDBSCAN) Algoithm[6] has been invented to impove the speed of the oiginal DBSCAN algoithm and the pefomance impovement has been achieved though consideing only few selected epesentative objects belongs inside a coe object s neighbou egion as seed objects fo the futhe expansion. Hence this algoithm is faste than the basic vesion of DBSCAN algoithm and suffes with the loss of esult accuacy. The MEDBSCAN [7] algoithm has been poposed ecently to impove the pefomance of DBSCAN algoithm, at the same time without loosing the esult accuacy. In this algoithm totally thee queues have been used, the fist queue will stoe the neighbous of the coe object which belong inside Eps distance, the second queue is used to stoe the neighbous of the coe object which belong inside * Eps distance and the thid queue is the seeds queue which stoe the unhandled objects fo futhe expansion. This algoithm guaantees some notable pefomance impovement if Eps value is not vey sensitive. Though the DBSCAN algoithm s complexity can be educed to O (N * log N) using some spatial tees, it is an exta effot to constuct, oganize the tee and the tee equies an additional memoy to hold the objects. In this new algoithm we have achieved good pefomance with oiginal computation complexity O (N ). 3. INTRODUCTION TO DBSCAN ALGORITHM In the following definitions, a database D with set of points of k- dimensional space S has been used. As we need to find out the object neighbous which ae exist/suounded with in the given adius (Eps), Euclidean function dist (p, q) has been used, whee p and q ae the two objects. This function takes two objects and gives the distance between them. 0

2 Intenational Jounal of Compute Applications ( ) Volume 6 No.9, Septembe 010 Definition 1: Eps Neighbouhood of an object p The Eps Neighbouhood of an object p is efeed as NEps(p), defined as NEps(p) = {q D dist(p,q) <=Eps}. Definition : Coe Object Condition An Object p is efeed as coe object, if the neighbou objects count >= given theshold value (MinObjs). i.e. NEps(p) >=MinObjs Whee MinObjs efes the minimum numbe of neighbou objects to satisfy the coe object condition. In the above case, if p has neighbous which ae exist within the Eps adius count is >= MinObjs, p can be efeed as coe object. Definition 3: Diectly Density Reachable Object An Object p is efeed as diectly density eachable fom anothe object q w..t Eps and MinObjs if function calls, FDBSCAN Algoithm s [3] selected epesentative objects as seed objects appoach duing the cluste expansion has been used in this solution and this appoach has been poved theoetically using the following Lemmas 1 and. As the RegionQuey etieve the neighbou objects which belong inside the Eps adius, Cicle lemmas ae given and which can be diectly used in the RegionQuey optimization. Lemma 1: Minimum numbe of identical cicles equied to cove the cicumfeence of a cicle with same adius which passes though the centes of othe cicles is thee. Poof: Let C and C 1 be the identical cicles of adius with cente at O and O 1 espectively. Assume the cicle C passes though the cente O 1 of the cicle C 1 and the cicle C 1 passes though the cente O of the cicle C. Let the cicles intesect at P and Q. P p NEps(q) and NEps(q) >= MinObjs (Coe Object condition) o 10 C 1 O 1 O C Definition 4: Density Reachable Object An object p is efeed as density eachable fom anothe object q w..t Eps and MinObjs if thee is a chain of objects p1,,pn, p1=q, pn=p such that pi+1 is diectly density eachable fom pi. Q Definition 5: Density connected object An Object p is density connected to anothe object q if thee is an object o such that both, p and q ae density eachable fom o w..t Eps and MinObjs. Definition 6: Cluste A Cluste C is a non-empty subset of a Database D w..t Eps and MinObjs which satisfying the following conditions. Fo evey p and q, if p cluste C and q is density eachable fom p w..t Eps and MinObjs then q C. Fo evey p and q, q C; p is density connected to q w..t Eps and MinObjs. Definition 7: Noise An object which doesn t belong to any cluste is called noise. The DBSCAN algoithm finds the Eps Neighbouhood of each object in a Database duing the clusteing pocess. Befoe the cluste expansion, if the algoithm finds any non coe object, it will be maked as NOISE. With a coe object, algoithm initiate a cluste and suounding objects will be added into the queue fo the futhe expansion. Each queue objects will be popped out and find the Eps neighbou objects fo the popped out object. When the new object is a coe object, all its neighbou objects will be assigned with the cuent cluste id and its unpocessed neighbou objects will be pushed into queue fo futhe pocessing. This pocess will be epeated until thee is no object in the queue fo the futhe pocessing. 4. PROPOSED SOLUTION A new algoithm has been poposed in this pape to ovecome the poblem of the pefomance issue which exists in the density based clusteing algoithms. In this algoithm, numbe of RegionQuey call has been educed as well as some RegionQuey calls speed has been impoved. Fo educing the RegionQuey Figue 1 Two Identical Cicles Intesection with espect to fist cicle s Cente Point. Clealy, OP = OQ = ; O 1 P = O 1 Q = and OO 1 =. O 1 OP and POO 1 = QOO 1 = O 1 QO ae equilateal. 60 POQ = POO 1 + QOO 1 = Now length of ac PO 1 Q = = 3 Thus acual length 3 of the cicumfeence of the given cicle C is coveed by C 1. In ode to cove the emaining pat of the cicumfeence of cicle C, daw a cicle C of same adius with cente O, passes though O and P. Let C intesect C at anothe point R (say). O 1 P Q O O O 3 R Figue Fou Identical Cicles intesection w..t fist Cicle s cente point. 1

3 Intenational Jounal of Compute Applications ( ) Volume 6 No.9, Septembe 010 Length of ac PO R = 3 i.e., acual length 3 is coveed by C [poceeding as above] of the cicumfeence of the given cicle C Thus the cicles C 1 and C can able to cove only 3 pat of the cicumfeence of the cicle C. i.e., in ode to cove the complete cicumfeence of the cicle C we ae equied to daw one moe cicle C 3 passes though O, Q and R with cente at O 3 and adius. Length of ac RO 3 Q = 3 Now, Length of ac PO 1 Q + Length of ac PO R + Length =, which is the peimete of the of ac RO 3 Q = 3 3 cicumfeence of the cicle C. Hence minimum thee identical cicles equied to cove the cicumfeence of a cicle with same adius which passes though the centes of othe cicles. Lemma 1 poves that the minimum equiement to cove the cicumfeence of the cente cicle and these minimum cicles selection is equivalent to the RegionQuey call in the DBSCAN algoithm. In the eal scenaio, thee RegionQuey call is not sufficient to cove most the neighbous which exist in the cente object s neighbous when the objects in the dataset is distibuted unifomly(assume the objects ae distibuted unifomly and the distance between an object and its neighbou is 1). Moeove these thee RegionQuey function calls ae not sufficient to cove immediate neighbous of the cente object s neighbous and this poblem is explained below: 4 Figue 4 Minimum Cicles to cove the immediate neighbous. Poof: Clealy, O 1 OO P is a squae of side. OP = Diagonal of the squae of side = Distance AP = - = = Thus fou cicles ae able to cove the objects which ae at most distance apat fom the cicumfeence of the oiginal cicle C. So we need minimum fou RegionQuey call to cove all the immediate neighbous of the cente Object s neighbous and this will cove > 80% of the neighbou objects of cente object s neighbous. This can be poved as follows: Lemma 3: Fou Identical Cicles ae sufficient to cove moe than 80 % of the neighbou objects of cente cicle when objects ae distibuted unifomly. 1 Poof: Figue 3 Missing immediate neighbou. Above pictue shows that a cicle ( Oiginal Cicle ) is been intesected by thee othe identical cicles. Even though the thee cicles ae coveing the full cicumfeence of the oiginal cicle, these thee cicles ae not able to cove cente cicle s immediate neighbous which ae maked in ed colou (p1, p and p3). i.e. even if the distance between the intesection point and the immediate neighbou point is 1, above scenaio can t cove the all its immediate neighbous. So the Lemma has been intoduced to pove the minimum cicles equiement to cove all the immediate neighbous. Lemma : Fou identical cicles ae sufficient to cove all the immediate neighbou objects of the oiginal cicle when the objects ae distibuted unifomly. Figue 5 Neighbous uneachable aea. Aea of oute cicle (with adius ) = Aea of the squae PQRS (with side ) = = 4 = 4

4 Intenational Jounal of Compute Applications ( ) Volume 6 No.9, Septembe 010 Total aea of fou semi cicles (each with adius ) = 4 = Hence aea of unmaked egion = Poposed Queue Stuctue So InneRegion and OuteRegion queues will maintain the coesponding egion objects intenally in fou queues. Following diagam shows each queue s object stoage aeas. Aea of maked egion = 4 = ( ) ) = - ( Pecentage of aea in oute cicle coveed by the maked aea = ( - ) 4 100% 50% = = % Hence the aea occupied by the maked egion is < 0 pecentage. So in the eal time scenaio we can conclude that if we select fou seed objects fo the cluste expansion fom the cente object s neighbous we have the chances to ignoe ~0 % of the objects which pesent in the bode egion and the pevious FDBSCAN algoithm ignoe these objects. In this solution, this poblem has been ectified and all the bode objects have been consideed fo the clusteing opeation. To impove the pefomance of the algoithm, MEDBSCAN Algoithm [6] appoach has been applied. So thee ae two types of Regionquey functions have been intoduced in this algoithm namely, LongRegionQuey and ShotRegionQuey. Fist LongRegionQuey function will be called to get the egion objects pesent in Eps neighbous as well as *Eps neighbous suounded by the given object, the Eps distance neighbous fom the cente object will be stoed in the InneRegion queue and the objects which ae geate than Eps and less than o equal to *Eps distance fom the cente objects will be stoed in OuteRegion queue espectively. Late the selected seed objects pesent in the Eps neighbou egion will be pocessed using the ShotRegionQuey function call. So the ShotRegionQuey function call will be always faste than the LongRegionQuey function as it needs to pocess only few objects which ae pesent in the InneRegion as well as OuteRegion and no need to pocess the entie objects pesent in the data set. Anothe change in the poposed solution to impove the speed is modification of queue stuctue. i.e InneRegion and OuteRegion queues ae the combination of fou sub queues. RegionQueue { TopRightQueue; RightBottomQueue; BottomLeftQueue; LeftTopQueue; } Figue 6 RegionQueue s stoage aea classification. This type of sepaation helps to minimize the unwanted distance computation while pocessing the bode objects. i.e. while pocessing OuteRegion queue s unpocessed objects, we can conside only the adjacent potion of the InneRegion queue s objects and othe non adjacent potions objects can be ignoed. This concept has been explained as follows. 4. Neighbou computation Ignoe Case Let O is an Oute Cicle with adius and I is an inne cicle with adius. Both of these cicles ae shaing the same Cente point C and these two cicles ae equally divided into fou pats as shown in the below pictue (to pefom the RegionQuey opeation). Figue 7 Inne and Oute Region. Hee the inne cicle objects neighbou objects ae pesent in the oute cicle s maked aea (with bown colou) and the inne cicle itself. Now we can confim that any object pesent in the inne cicle s any one of the quate aea (I 1 OR I OR I 3 OR I 4 ), will have its neighbou(s) in the 3 of the adjacent quate pat of the oute cicle and the inne cicle itself (fou quate pats). Thus we can ignoe the oute cicle s non adjacent quate pat fom the unnecessay computation. (e.g) 3

5 Intenational Jounal of Compute Applications ( ) Volume 6 No.9, Septembe 010 Figue 8 Availability of Neighbou in the Cicle s Potion. In the above diagam Inne Cicle s I 3 quate potion has been consideed fo the neighbou computation. The object pesent in the I 3 quate potion will have its neighbous in O 4, O 3, O and the Inne cicle itself (I 1, I, I 3 and I 4 ), but not in O 1 potion. i.e. Maximum distance is the valid distance fo neighbou computation and I 3 s object equie minimum +1 distance to each anothe object which is pesent in the O 1 potion and this condition is not possible (Invalid condition has been shown in the diagam in ed colou). Similaly while pocessing the bode objects pesent in the OuteRegion, only the adjacent quate potion of inne egion objects ae enough fo the computation to know whethe it is density eachable to any of the objects pesent in the InneRegion. This is anothe optimization done in the new algoithm to speed up the computation as well as impove the accuacy of output. In the FDBSCAN algoithm, chances of missing the coe objects as well as bode objects ae applicable and in this new appoach all the bode objects have been coveed. Also it is poved that the coe objects loss is vey ae case and the new solution is bette in most of the cases in the eal time scenaio. 4.3 Algoithm 1. Read D, Eps and MinObjs.. Initialize all objects Cluste ID field as UNCLASSIFIED. 3. Fo each UNCLASSIFIED object o D 4. Call LongRegionQuey function with D, Eps and o paametes to be obtain InneRegion and OuteRegion. 5. IF o is a coe object Then 6. Get the ClusteID fo the new Cluste. 7. Select fou UNCLASSIFIED objects fom the InnteRegion TopRight, RightBottom, BottomLeft and LeftTop Queues each fo the futhe cluste expansion and push the selected objects to FouQueue. The selected objects should have the max distance fom the cente object o. 8. Assign ClusteID to all the UNCLASSIFIED and NOISE type pesent in the InnteRegion. 9. Fo each object T FouQueue 10. Call ShotRegionQuey function with InneRegion, OuteRegion, Eps and Object T to obtain the ShotRegion. 11. Select fou UNCLASSIFIED objects fom the ShotRegion TopRight, RightBottom, BottomLeft and LeftTop Queues fo the futhe cluste expansion. The selected should have the max distance fom the cente object T. Push the selected objects to SeedQueue fo the futhe pocessing. 1. Assign ClusteID to all the UNCLASSIFIED and NOISE type pesent in the ShotRegion. 13. End Fo 14. Remove the clusteed objects fom the OuteRegion and pocess the emaining (UNCLASSIFIED and NOISE type) to know if any one of the InneRegion neighbou pesent in the UNCLASSIFIED and NOISE type OuteRegion. i.e if any emaining objects pesent in the OuteRegion is density eachable fom the cente object o s neighbou, assign ClusteID to the Object. 15. Pop the objects s fom SeedQueue, Repeat the steps fom 4-14 and until the SeedQueue is Empty. Fo all the above steps eplace the object o with SeedQueue Object s wheeve it is applicable. 16. Else 17. Mak o as NOISE 18. End If 19. End Fo This algoithm ead the same input as like oiginal DBSCAN and all the objects ae initialized as UNCLASSIFIED in the beginning. Aftewads all the UNCLASSIFIED objects ae pocessed one by one. So the algoithm stats with LongRegionQuey function call to obtain the Neighbou objects (InneRegionobjects and OuteRegion) and the cluste expansion will happen only if the cuent object is a coe object, othewise the cuent object will be maket as NOISE. Duing the cluste expansion, the new Cluste ID will get ceated and fou UNCLASSIFIED objects ae selected fom the InneRegionobjects fou queues each and these objects should have the maximum distance fom the cente object. Afte assigning the Cluste ID to all the pesent in the InneRegion queue, the selected fou objects will be pocessed. Hee the fou objects ae the maximum count and if thee is no UNCLASSIFIED object pesent in one o moe specific queues, the selected objects count will be less than 4. Fo pocessing these objects, ShotRegionQuey has been used and each ShoRegionQuey opeation, maximum fou seed objects will be selected which meets the above condition and pushed into seed queue fo the futhe cluste expansion. The ShotRegionQuey takes the etun aay objects of LongRegionQuey function and will not pocess the whole Data set in the subsequent iteation. Thus the pefomance impovement has been guaanteed when the Eps value is easonably insensitive. The Cluste ID will be assigned to the ShotRegionQuey s output objects if the object is eithe UNCLASSIFIED o NOISE. Now the emaining UNCLASSIFIED o NOISE type objects pesent in the OuteRegion queue is pocessed and which uses the Neighbou computation Ignoe Case computation appoach to minimize the computation and speed up the pefomance. Afte epeating these steps as mentioned in the algoithm and when the SeedQueue become empty, the cuent cluste expansion will stop and the contol moves to pocess the next object UNCLASSIFIED type object using the paent fo loop. The whole clusteing pocess will be ove once the main loop visits the entie N objects pesent in the data set. 4

6 Numbe of Running time loss Running time loss Running time loss Intenational Jounal of Compute Applications ( ) Volume 6 No.9, Septembe PERFORMANCE ANALYSIS The basic DBSCAN, Fast DBSCAN and poposed Optimized DBSCAM algoithms ae implemented in Visual C++ (008) on Windows Vista OS and tested using two dimensional Dataset. To know the eal pefomance diffeence achieved in the new algoithm, we haven t used any additional data stuctues (like spatial tee) to impove the pefomance. These algoithms ae tested using two dimensional synthetic dataset and the pefomance esults ae shown below. Table 1 Running time of Algoithms in Seconds DBSCAN FDBSCAN ODBSCAN Above table shows that the new algoithm s pefomance is bette to the existing algoithms in tems of computation time and the new algoithm has small numbe of object loss than the Fast DBSCAN algoithm. 6. CONCLUSION AND FUTURE WORK In this pape we have poposed ODBSCAN algoithm to impove the pefomance with less amount of object loss. In this new algoithm FDBSCAN and MEDBSCAN algoithms appoach has been used to impove the pefomance. Also some new techniques have been intoduced to minimize the distance computation duing the RegionQuey function call. Eventually the pefomance analysis and the output shows that the newly poposed ODBSCAN algoithm gives bette output, at the same time with good pefomance. In this algoithm, all the bode objects have been consideed fo the clusteing pocess. But thee ae few possibilities to miss the coe objects and which causes some loss of objects. Though the new algoithm gives bette esult than the pevious FDBSCAN algoithm, this poblem needs to be esolved in the futhe wok to give the accuate esult with same pefomance. 7. REFERENCES [1] Este M., Kiegel H.-P., Sande J., and Xu X. (1996) A Density-Based Algoithm fo Discoveing Clustes in Lage Spatial Databases with Noise In Poceedings of the nd Intenational Confeence on Knowledge Discovey and Data Mining (KDD 96), Potland: Oegon, pp [] J. Han and M. Kambe, Data Mining Concepts and Techniques. Mogan Kaufman, 006. [3] G. Kaypis, E. H. Han, and V. Kuma, CHAMELEON: A hieachical clusteing algoithm using dynamic modeling, Compute, vol. 3, no. 8, pp , [4] M. Ankest, M. Beunig, H. P. Kiegel, and J. Sande, OPTICS: Odeing to Identify the Clusteing Stuctue, Poc. ACM SIGMOD, in Intenational Confeence on Management of Data, 1999, pp [5] A. Hinnebug and D. Keim, An efficient appoach to clusteing in lage multimedia data sets with noise, in 4th Intenational Confeence on Knowledge Discovey and Data Mining, 1998, pp [6] SHOU Shui-geng, ZHOU Ao-ying JIN Wen, FAN Ye and QIAN Wei-ning.(000) "A Fast DBSCAN Algoithm" Jounal of Softwae: [7] Li Jian; Yu Wei; Yan Bao-Ping;, "Memoy effect in DBSCAN algoithm," Compute Science & Education, 009. ICCSE '09. 4th Intenational Confeence on, vol., no., pp.31-36, 5-8 July 009. AUTHOR PROFILES J. Hencil Pete is Reseach Schola, St. Xavie s College (Autonomous), Palayamkottai, Tiunelveli, India. He eaned his MCA (Maste of Compute Applications) degee fom Manonmaniam Sundaana Univesity, Tiunelveli. Now he is doing Ph.D in Compute Applications and Mathematics (Intedisciplinay) at Manonmaniam Sundana Univesity, Tiunelveli. His inteested eseach aea is algoithms inventions in data mining. D. A. Antonysamy is Pincipal of St. Xavie s College, Kathmandu, Nepal. He completed his Ph.D in Mathematics fo the eseach on An algoithmic study of some classes of intesection gaphs. He has guided and guiding many eseach students in Compute Science and Mathematics. He has published many eseach papes in national and intenational jounals. He has oganized Seminas and Confeences in state and national level. 5

Heterogeneous Density Based Spatial Clustering of Application with Noise

Heterogeneous Density Based Spatial Clustering of Application with Noise 210 Heterogeneous Density Based Spatial Clustering of Application with Noise J. Hencil Peter and A.Antonysamy, Research Scholar St. Xavier s College, Palayamkottai Tamil Nadu, India Principal St. Xavier

More information

Journal of World s Electrical Engineering and Technology J. World. Elect. Eng. Tech. 1(1): 12-16, 2012

Journal of World s Electrical Engineering and Technology J. World. Elect. Eng. Tech. 1(1): 12-16, 2012 2011, Scienceline Publication www.science-line.com Jounal of Wold s Electical Engineeing and Technology J. Wold. Elect. Eng. Tech. 1(1): 12-16, 2012 JWEET An Efficient Algoithm fo Lip Segmentation in Colo

More information

IP Network Design by Modified Branch Exchange Method

IP Network Design by Modified Branch Exchange Method Received: June 7, 207 98 IP Netwok Design by Modified Banch Method Kaiat Jaoenat Natchamol Sichumoenattana 2* Faculty of Engineeing at Kamphaeng Saen, Kasetsat Univesity, Thailand 2 Faculty of Management

More information

RANDOM IRREGULAR BLOCK-HIERARCHICAL NETWORKS: ALGORITHMS FOR COMPUTATION OF MAIN PROPERTIES

RANDOM IRREGULAR BLOCK-HIERARCHICAL NETWORKS: ALGORITHMS FOR COMPUTATION OF MAIN PROPERTIES RANDOM IRREGULAR BLOCK-HIERARCHICAL NETWORKS: ALGORITHMS FOR COMPUTATION OF MAIN PROPERTIES Svetlana Avetisyan Mikayel Samvelyan* Matun Kaapetyan Yeevan State Univesity Abstact In this pape, the class

More information

Detection and Recognition of Alert Traffic Signs

Detection and Recognition of Alert Traffic Signs Detection and Recognition of Alet Taffic Signs Chia-Hsiung Chen, Macus Chen, and Tianshi Gao 1 Stanfod Univesity Stanfod, CA 9305 {echchen, macuscc, tianshig}@stanfod.edu Abstact Taffic signs povide dives

More information

Optical Flow for Large Motion Using Gradient Technique

Optical Flow for Large Motion Using Gradient Technique SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol. 3, No. 1, June 2006, 103-113 Optical Flow fo Lage Motion Using Gadient Technique Md. Moshaof Hossain Sake 1, Kamal Bechkoum 2, K.K. Islam 1 Abstact: In this

More information

Segmentation of Casting Defects in X-Ray Images Based on Fractal Dimension

Segmentation of Casting Defects in X-Ray Images Based on Fractal Dimension 17th Wold Confeence on Nondestuctive Testing, 25-28 Oct 2008, Shanghai, China Segmentation of Casting Defects in X-Ray Images Based on Factal Dimension Jue WANG 1, Xiaoqin HOU 2, Yufang CAI 3 ICT Reseach

More information

Towards Adaptive Information Merging Using Selected XML Fragments

Towards Adaptive Information Merging Using Selected XML Fragments Towads Adaptive Infomation Meging Using Selected XML Fagments Ho-Lam Lau and Wilfed Ng Depatment of Compute Science and Engineeing, The Hong Kong Univesity of Science and Technology, Hong Kong {lauhl,

More information

Lecture 27: Voronoi Diagrams

Lecture 27: Voronoi Diagrams We say that two points u, v Y ae in the same connected component of Y if thee is a path in R N fom u to v such that all the points along the path ae in the set Y. (Thee ae two connected components in the

More information

Separability and Topology Control of Quasi Unit Disk Graphs

Separability and Topology Control of Quasi Unit Disk Graphs Sepaability and Topology Contol of Quasi Unit Disk Gaphs Jiane Chen, Anxiao(Andew) Jiang, Iyad A. Kanj, Ge Xia, and Fenghui Zhang Dept. of Compute Science, Texas A&M Univ. College Station, TX 7784. {chen,

More information

HISTOGRAMS are an important statistic reflecting the

HISTOGRAMS are an important statistic reflecting the JOURNAL OF L A T E X CLASS FILES, VOL. 14, NO. 8, AUGUST 2015 1 D 2 HistoSketch: Disciminative and Dynamic Similaity-Peseving Sketching of Steaming Histogams Dingqi Yang, Bin Li, Laua Rettig, and Philippe

More information

A Memory Efficient Array Architecture for Real-Time Motion Estimation

A Memory Efficient Array Architecture for Real-Time Motion Estimation A Memoy Efficient Aay Achitectue fo Real-Time Motion Estimation Vasily G. Moshnyaga and Keikichi Tamau Depatment of Electonics & Communication, Kyoto Univesity Sakyo-ku, Yoshida-Honmachi, Kyoto 66-1, JAPAN

More information

An Unsupervised Segmentation Framework For Texture Image Queries

An Unsupervised Segmentation Framework For Texture Image Queries An Unsupevised Segmentation Famewok Fo Textue Image Queies Shu-Ching Chen Distibuted Multimedia Infomation System Laboatoy School of Compute Science Floida Intenational Univesity Miami, FL 33199, USA chens@cs.fiu.edu

More information

Scaling Location-based Services with Dynamically Composed Location Index

Scaling Location-based Services with Dynamically Composed Location Index Scaling Location-based Sevices with Dynamically Composed Location Index Bhuvan Bamba, Sangeetha Seshadi and Ling Liu Distibuted Data Intensive Systems Laboatoy (DiSL) College of Computing, Geogia Institute

More information

A New and Efficient 2D Collision Detection Method Based on Contact Theory Xiaolong CHENG, Jun XIAO a, Ying WANG, Qinghai MIAO, Jian XUE

A New and Efficient 2D Collision Detection Method Based on Contact Theory Xiaolong CHENG, Jun XIAO a, Ying WANG, Qinghai MIAO, Jian XUE 5th Intenational Confeence on Advanced Mateials and Compute Science (ICAMCS 2016) A New and Efficient 2D Collision Detection Method Based on Contact Theoy Xiaolong CHENG, Jun XIAO a, Ying WANG, Qinghai

More information

ART GALLERIES WITH INTERIOR WALLS. March 1998

ART GALLERIES WITH INTERIOR WALLS. March 1998 ART GALLERIES WITH INTERIOR WALLS Andé Kündgen Mach 1998 Abstact. Conside an at galley fomed by a polygon on n vetices with m pais of vetices joined by inteio diagonals, the inteio walls. Each inteio wall

More information

An Extension to the Local Binary Patterns for Image Retrieval

An Extension to the Local Binary Patterns for Image Retrieval , pp.81-85 http://x.oi.og/10.14257/astl.2014.45.16 An Extension to the Local Binay Pattens fo Image Retieval Zhize Wu, Yu Xia, Shouhong Wan School of Compute Science an Technology, Univesity of Science

More information

A Two-stage and Parameter-free Binarization Method for Degraded Document Images

A Two-stage and Parameter-free Binarization Method for Degraded Document Images A Two-stage and Paamete-fee Binaization Method fo Degaded Document Images Yung-Hsiang Chiu 1, Kuo-Liang Chung 1, Yong-Huai Huang 2, Wei-Ning Yang 3, Chi-Huang Liao 4 1 Depatment of Compute Science and

More information

TESSELLATIONS. This is a sample (draft) chapter from: MATHEMATICAL OUTPOURINGS. Newsletters and Musings from the St. Mark s Institute of Mathematics

TESSELLATIONS. This is a sample (draft) chapter from: MATHEMATICAL OUTPOURINGS. Newsletters and Musings from the St. Mark s Institute of Mathematics TESSELLATIONS This is a sample (daft) chapte fom: MATHEMATICAL OUTPOURINGS Newslettes and Musings fom the St. Mak s Institute of Mathematics James Tanton www.jamestanton.com This mateial was and can still

More information

Topological Characteristic of Wireless Network

Topological Characteristic of Wireless Network Topological Chaacteistic of Wieless Netwok Its Application to Node Placement Algoithm Husnu Sane Naman 1 Outline Backgound Motivation Papes and Contibutions Fist Pape Second Pape Thid Pape Futue Woks Refeences

More information

Also available at ISSN (printed edn.), ISSN (electronic edn.) ARS MATHEMATICA CONTEMPORANEA 3 (2010)

Also available at  ISSN (printed edn.), ISSN (electronic edn.) ARS MATHEMATICA CONTEMPORANEA 3 (2010) Also available at http://amc.imfm.si ISSN 1855-3966 (pinted edn.), ISSN 1855-3974 (electonic edn.) ARS MATHEMATICA CONTEMPORANEA 3 (2010) 109 120 Fulleene patches I Jack E. Gave Syacuse Univesity, Depatment

More information

Positioning of a robot based on binocular vision for hand / foot fusion Long Han

Positioning of a robot based on binocular vision for hand / foot fusion Long Han 2nd Intenational Confeence on Advances in Mechanical Engineeing and Industial Infomatics (AMEII 26) Positioning of a obot based on binocula vision fo hand / foot fusion Long Han Compute Science and Technology,

More information

A Recommender System for Online Personalization in the WUM Applications

A Recommender System for Online Personalization in the WUM Applications A Recommende System fo Online Pesonalization in the WUM Applications Mehdad Jalali 1, Nowati Mustapha 2, Ali Mamat 2, Md. Nasi B Sulaiman 2 Abstact foeseeing of use futue movements and intentions based

More information

Illumination methods for optical wear detection

Illumination methods for optical wear detection Illumination methods fo optical wea detection 1 J. Zhang, 2 P.P.L.Regtien 1 VIMEC Applied Vision Technology, Coy 43, 5653 LC Eindhoven, The Nethelands Email: jianbo.zhang@gmail.com 2 Faculty Electical

More information

Point-Biserial Correlation Analysis of Fuzzy Attributes

Point-Biserial Correlation Analysis of Fuzzy Attributes Appl Math Inf Sci 6 No S pp 439S-444S (0 Applied Mathematics & Infomation Sciences An Intenational Jounal @ 0 NSP Natual Sciences Publishing o Point-iseial oelation Analysis of Fuzzy Attibutes Hao-En hueh

More information

A Full-mode FME VLSI Architecture Based on 8x8/4x4 Adaptive Hadamard Transform For QFHD H.264/AVC Encoder

A Full-mode FME VLSI Architecture Based on 8x8/4x4 Adaptive Hadamard Transform For QFHD H.264/AVC Encoder 20 IEEE/IFIP 9th Intenational Confeence on VLSI and System-on-Chip A Full-mode FME VLSI Achitectue Based on 8x8/ Adaptive Hadamad Tansfom Fo QFHD H264/AVC Encode Jialiang Liu, Xinhua Chen College of Infomation

More information

DUe to the recent developments of gigantic social networks

DUe to the recent developments of gigantic social networks Exploing Communities in Lage Pofiled Gaphs Yankai Chen, Yixiang Fang, Reynold Cheng Membe, IEEE, Yun Li, Xiaojun Chen, Jie Zhang 1 Abstact Given a gaph G and a vetex q G, the community seach (CS) poblem

More information

(a, b) x y r. For this problem, is a point in the - coordinate plane and is a positive number.

(a, b) x y r. For this problem, is a point in the - coordinate plane and is a positive number. Illustative G-C Simila cicles Alignments to Content Standads: G-C.A. Task (a, b) x y Fo this poblem, is a point in the - coodinate plane and is a positive numbe. a. Using a tanslation and a dilation, show

More information

Shortest Paths for a Two-Robot Rendez-Vous

Shortest Paths for a Two-Robot Rendez-Vous Shotest Paths fo a Two-Robot Rendez-Vous Eik L Wyntes Joseph S B Mitchell y Abstact In this pape, we conside an optimal motion planning poblem fo a pai of point obots in a plana envionment with polygonal

More information

SYSTEM LEVEL REUSE METRICS FOR OBJECT ORIENTED SOFTWARE : AN ALTERNATIVE APPROACH

SYSTEM LEVEL REUSE METRICS FOR OBJECT ORIENTED SOFTWARE : AN ALTERNATIVE APPROACH I J C A 7(), 202 pp. 49-53 SYSTEM LEVEL REUSE METRICS FOR OBJECT ORIENTED SOFTWARE : AN ALTERNATIVE APPROACH Sushil Goel and 2 Rajesh Vema Associate Pofesso, Depatment of Compute Science, Dyal Singh College,

More information

Performance Optimization in Structured Wireless Sensor Networks

Performance Optimization in Structured Wireless Sensor Networks 5 The Intenational Aab Jounal of Infomation Technology, Vol. 6, o. 5, ovembe 9 Pefomance Optimization in Stuctued Wieless Senso etwoks Amine Moussa and Hoda Maalouf Compute Science Depatment, ote Dame

More information

Image Enhancement in the Spatial Domain. Spatial Domain

Image Enhancement in the Spatial Domain. Spatial Domain 8-- Spatial Domain Image Enhancement in the Spatial Domain What is spatial domain The space whee all pixels fom an image In spatial domain we can epesent an image by f( whee x and y ae coodinates along

More information

MapReduce Optimizations and Algorithms 2015 Professor Sasu Tarkoma

MapReduce Optimizations and Algorithms 2015 Professor Sasu Tarkoma apreduce Optimizations and Algoithms 2015 Pofesso Sasu Takoma www.cs.helsinki.fi Optimizations Reduce tasks cannot stat befoe the whole map phase is complete Thus single slow machine can slow down the

More information

ANALYTIC PERFORMANCE MODELS FOR SINGLE CLASS AND MULTIPLE CLASS MULTITHREADED SOFTWARE SERVERS

ANALYTIC PERFORMANCE MODELS FOR SINGLE CLASS AND MULTIPLE CLASS MULTITHREADED SOFTWARE SERVERS ANALYTIC PERFORMANCE MODELS FOR SINGLE CLASS AND MULTIPLE CLASS MULTITHREADED SOFTWARE SERVERS Daniel A Menascé Mohamed N Bennani Dept of Compute Science Oacle, Inc Geoge Mason Univesity 1211 SW Fifth

More information

And Ph.D. Candidate of Computer Science, University of Putra Malaysia 2 Faculty of Computer Science and Information Technology,

And Ph.D. Candidate of Computer Science, University of Putra Malaysia 2 Faculty of Computer Science and Information Technology, (IJCSIS) Intenational Jounal of Compute Science and Infomation Secuity, Efficient Candidacy Reduction Fo Fequent Patten Mining M.H Nadimi-Shahaki 1, Nowati Mustapha 2, Md Nasi B Sulaiman 2, Ali B Mamat

More information

A modal estimation based multitype sensor placement method

A modal estimation based multitype sensor placement method A modal estimation based multitype senso placement method *Xue-Yang Pei 1), Ting-Hua Yi 2) and Hong-Nan Li 3) 1),)2),3) School of Civil Engineeing, Dalian Univesity of Technology, Dalian 116023, China;

More information

Obstacle Avoidance of Autonomous Mobile Robot using Stereo Vision Sensor

Obstacle Avoidance of Autonomous Mobile Robot using Stereo Vision Sensor Obstacle Avoidance of Autonomous Mobile Robot using Steeo Vision Senso Masako Kumano Akihisa Ohya Shin ichi Yuta Intelligent Robot Laboatoy Univesity of Tsukuba, Ibaaki, 35-8573 Japan E-mail: {masako,

More information

Controlled Information Maximization for SOM Knowledge Induced Learning

Controlled Information Maximization for SOM Knowledge Induced Learning 3 Int'l Conf. Atificial Intelligence ICAI'5 Contolled Infomation Maximization fo SOM Knowledge Induced Leaning Ryotao Kamimua IT Education Cente and Gaduate School of Science and Technology, Tokai Univeisity

More information

Quality Aware Privacy Protection for Location-based Services

Quality Aware Privacy Protection for Location-based Services In Poceedings of the th Intenational Confeence on Database Systems fo Advanced Applications (DASFAA 007), Bangkok, Thailand, Apil 9-, 007. Quality Awae Pivacy Potection fo Location-based Sevices Zhen Xiao,,

More information

Clustering Interval-valued Data Using an Overlapped Interval Divergence

Clustering Interval-valued Data Using an Overlapped Interval Divergence Poc. of the 8th Austalasian Data Mining Confeence (AusDM'9) Clusteing Inteval-valued Data Using an Ovelapped Inteval Divegence Yongli Ren Yu-Hsn Liu Jia Rong Robet Dew School of Infomation Engineeing,

More information

Embeddings into Crossed Cubes

Embeddings into Crossed Cubes Embeddings into Cossed Cubes Emad Abuelub *, Membe, IAENG Abstact- The hypecube paallel achitectue is one of the most popula inteconnection netwoks due to many of its attactive popeties and its suitability

More information

POMDP: Introduction to Partially Observable Markov Decision Processes Hossein Kamalzadeh, Michael Hahsler

POMDP: Introduction to Partially Observable Markov Decision Processes Hossein Kamalzadeh, Michael Hahsler POMDP: Intoduction to Patially Obsevable Makov Decision Pocesses Hossein Kamalzadeh, Michael Hahsle 2019-01-02 The R package pomdp povides an inteface to pomdp-solve, a solve (witten in C) fo Patially

More information

Slotted Random Access Protocol with Dynamic Transmission Probability Control in CDMA System

Slotted Random Access Protocol with Dynamic Transmission Probability Control in CDMA System Slotted Random Access Potocol with Dynamic Tansmission Pobability Contol in CDMA System Intaek Lim 1 1 Depatment of Embedded Softwae, Busan Univesity of Foeign Studies, itlim@bufs.ac.k Abstact In packet

More information

Keith Dalbey, PhD. Sandia National Labs, Dept 1441 Optimization & Uncertainty Quantification

Keith Dalbey, PhD. Sandia National Labs, Dept 1441 Optimization & Uncertainty Quantification SAND 0-50 C Effective & Efficient Handling of Ill - Conditioned Coelation atices in Kiging & adient Enhanced Kiging Emulatos hough Pivoted Cholesky Factoization Keith Dalbey, PhD Sandia National Labs,

More information

All lengths in meters. E = = 7800 kg/m 3

All lengths in meters. E = = 7800 kg/m 3 Poblem desciption In this poblem, we apply the component mode synthesis (CMS) technique to a simple beam model. 2 0.02 0.02 All lengths in metes. E = 2.07 10 11 N/m 2 = 7800 kg/m 3 The beam is a fee-fee

More information

Color Correction Using 3D Multiview Geometry

Color Correction Using 3D Multiview Geometry Colo Coection Using 3D Multiview Geomety Dong-Won Shin and Yo-Sung Ho Gwangju Institute of Science and Technology (GIST) 13 Cheomdan-gwagio, Buk-ku, Gwangju 500-71, Republic of Koea ABSTRACT Recently,

More information

DEADLOCK AVOIDANCE IN BATCH PROCESSES. M. Tittus K. Åkesson

DEADLOCK AVOIDANCE IN BATCH PROCESSES. M. Tittus K. Åkesson DEADLOCK AVOIDANCE IN BATCH PROCESSES M. Tittus K. Åkesson Univesity College Boås, Sweden, e-mail: Michael.Tittus@hb.se Chalmes Univesity of Technology, Gothenbug, Sweden, e-mail: ka@s2.chalmes.se Abstact:

More information

High performance CUDA based CNN image processor

High performance CUDA based CNN image processor High pefomance UDA based NN image pocesso GEORGE VALENTIN STOIA, RADU DOGARU, ELENA RISTINA STOIA Depatment of Applied Electonics and Infomation Engineeing Univesity Politehnica of Buchaest -3, Iuliu Maniu

More information

Modelling, simulation, and performance analysis of a CAN FD system with SAE benchmark based message set

Modelling, simulation, and performance analysis of a CAN FD system with SAE benchmark based message set Modelling, simulation, and pefomance analysis of a CAN FD system with SAE benchmak based message set Mahmut Tenuh, Panagiotis Oikonomidis, Peiklis Chachalakis, Elias Stipidis Mugla S. K. Univesity, TR;

More information

4.2. Co-terminal and Related Angles. Investigate

4.2. Co-terminal and Related Angles. Investigate .2 Co-teminal and Related Angles Tigonometic atios can be used to model quantities such as

More information

Reachable State Spaces of Distributed Deadlock Avoidance Protocols

Reachable State Spaces of Distributed Deadlock Avoidance Protocols Reachable State Spaces of Distibuted Deadlock Avoidance Potocols CÉSAR SÁNCHEZ and HENNY B. SIPMA Stanfod Univesity We pesent a family of efficient distibuted deadlock avoidance algoithms with applications

More information

Bo Gu and Xiaoyan Hong*

Bo Gu and Xiaoyan Hong* Int. J. Ad Hoc and Ubiquitous Computing, Vol. 11, Nos. /3, 1 169 Tansition phase of connectivity fo wieless netwoks with gowing pocess Bo Gu and Xiaoyan Hong* Depatment of Compute Science, Univesity of

More information

Input Layer f = 2 f = 0 f = f = 3 1,16 1,1 1,2 1,3 2, ,2 3,3 3,16. f = 1. f = Output Layer

Input Layer f = 2 f = 0 f = f = 3 1,16 1,1 1,2 1,3 2, ,2 3,3 3,16. f = 1. f = Output Layer Using the Gow-And-Pune Netwok to Solve Poblems of Lage Dimensionality B.J. Biedis and T.D. Gedeon School of Compute Science & Engineeing The Univesity of New South Wales Sydney NSW 2052 AUSTRALIA bbiedis@cse.unsw.edu.au

More information

The Dual Round Robin Matching Switch with Exhaustive Service

The Dual Round Robin Matching Switch with Exhaustive Service The Dual Round Robin Matching Switch with Exhaustive Sevice Yihan Li, Shivenda S. Panwa, H. Jonathan Chao Abstact Vitual Output Queuing is widely used by fixed-length highspeed switches to ovecome head-of-line

More information

Fifth Wheel Modelling and Testing

Fifth Wheel Modelling and Testing Fifth heel Modelling and Testing en Masoy Mechanical Engineeing Depatment Floida Atlantic Univesity Boca aton, FL 4 Lois Malaptias IFMA Institut Fancais De Mechanique Advancee ampus De lemont Feand Les

More information

Efficient Execution Path Exploration for Detecting Races in Concurrent Programs

Efficient Execution Path Exploration for Detecting Races in Concurrent Programs IAENG Intenational Jounal of Compute Science, 403, IJCS_40_3_02 Efficient Execution Path Exploation fo Detecting Races in Concuent Pogams Theodous E. Setiadi, Akihiko Ohsuga, and Mamou Maekaa Abstact Concuent

More information

A Minutiae-based Fingerprint Matching Algorithm Using Phase Correlation

A Minutiae-based Fingerprint Matching Algorithm Using Phase Correlation A Minutiae-based Fingepint Matching Algoithm Using Phase Coelation Autho Chen, Weiping, Gao, Yongsheng Published 2007 Confeence Title Digital Image Computing: Techniques and Applications DOI https://doi.og/10.1109/dicta.2007.4426801

More information

Efficient Maximal Poisson-Disk Sampling

Efficient Maximal Poisson-Disk Sampling Efficient Maximal Poisson-Disk Sampling Mohamed S. Ebeida Sandia National Laboatoies Andew A. Davidson Univesity of Califonia, Davis Anjul Patney Univesity of Califonia, Davis Patick M. Knupp Sandia National

More information

a Not yet implemented in current version SPARK: Research Kit Pointer Analysis Parameters Soot Pointer analysis. Objectives

a Not yet implemented in current version SPARK: Research Kit Pointer Analysis Parameters Soot Pointer analysis. Objectives SPARK: Soot Reseach Kit Ondřej Lhoták Objectives Spak is a modula toolkit fo flow-insensitive may points-to analyses fo Java, which enables expeimentation with: vaious paametes of pointe analyses which

More information

The International Conference in Knowledge Management (CIKM'94), Gaithersburg, MD, November 1994.

The International Conference in Knowledge Management (CIKM'94), Gaithersburg, MD, November 1994. The Intenational Confeence in Knowledge Management (CIKM'94), Gaithesbug, MD, Novembe 994. Hashing by Poximity to Pocess Duplicates in Spatial Databases Walid G. Aef Matsushita Infomation Technology Laboatoy

More information

A Neural Network Model for Storing and Retrieving 2D Images of Rotated 3D Object Using Principal Components

A Neural Network Model for Storing and Retrieving 2D Images of Rotated 3D Object Using Principal Components A Neual Netwok Model fo Stong and Reteving 2D Images of Rotated 3D Object Using Pncipal Components Tsukasa AMANO, Shuichi KUROGI, Ayako EGUCHI, Takeshi NISHIDA, Yasuhio FUCHIKAWA Depatment of Contol Engineeng,

More information

THE THETA BLOCKCHAIN

THE THETA BLOCKCHAIN THE THETA BLOCKCHAIN Theta is a decentalized video steaming netwok, poweed by a new blockchain and token. By Theta Labs, Inc. Last Updated: Nov 21, 2017 esion 1.0 1 OUTLINE Motivation Reputation Dependent

More information

Hierarchically Clustered P2P Streaming System

Hierarchically Clustered P2P Streaming System Hieachically Clusteed P2P Steaming System Chao Liang, Yang Guo, and Yong Liu Polytechnic Univesity Thomson Lab Booklyn, NY 11201 Pinceton, NJ 08540 Abstact Pee-to-pee video steaming has been gaining populaity.

More information

Fast quality-guided flood-fill phase unwrapping algorithm for three-dimensional fringe pattern profilometry

Fast quality-guided flood-fill phase unwrapping algorithm for three-dimensional fringe pattern profilometry Univesity of Wollongong Reseach Online Faculty of Infomatics - Papes (Achive) Faculty of Engineeing and Infomation Sciences 2010 Fast quality-guided flood-fill phase unwapping algoithm fo thee-dimensional

More information

Title. Author(s)NOMURA, K.; MOROOKA, S. Issue Date Doc URL. Type. Note. File Information

Title. Author(s)NOMURA, K.; MOROOKA, S. Issue Date Doc URL. Type. Note. File Information Title CALCULATION FORMULA FOR A MAXIMUM BENDING MOMENT AND THE TRIANGULAR SLAB WITH CONSIDERING EFFECT OF SUPPO UNIFORM LOAD Autho(s)NOMURA, K.; MOROOKA, S. Issue Date 2013-09-11 Doc URL http://hdl.handle.net/2115/54220

More information

Comparisons of Transient Analytical Methods for Determining Hydraulic Conductivity Using Disc Permeameters

Comparisons of Transient Analytical Methods for Determining Hydraulic Conductivity Using Disc Permeameters Compaisons of Tansient Analytical Methods fo Detemining Hydaulic Conductivity Using Disc Pemeametes 1,,3 Cook, F.J. 1 CSRO Land and Wate, ndoooopilly, Queensland The Univesity of Queensland, St Lucia,

More information

Generalized Grey Target Decision Method Based on Decision Makers Indifference Attribute Value Preferences

Generalized Grey Target Decision Method Based on Decision Makers Indifference Attribute Value Preferences Ameican Jounal of ata ining and Knowledge iscovey 27; 2(4): 2-8 http://www.sciencepublishinggoup.com//admkd doi:.648/.admkd.2724.2 Genealized Gey Taget ecision ethod Based on ecision akes Indiffeence Attibute

More information

dc - Linux Command Dc may be invoked with the following command-line options: -V --version Print out the version of dc

dc - Linux Command Dc may be invoked with the following command-line options: -V --version Print out the version of dc - CentOS 5.2 - Linux Uses Guide - Linux Command SYNOPSIS [-V] [--vesion] [-h] [--help] [-e sciptexpession] [--expession=sciptexpession] [-f sciptfile] [--file=sciptfile] [file...] DESCRIPTION is a evese-polish

More information

On the Conversion between Binary Code and Binary-Reflected Gray Code on Boolean Cubes

On the Conversion between Binary Code and Binary-Reflected Gray Code on Boolean Cubes On the Convesion between Binay Code and BinayReflected Gay Code on Boolean Cubes The Havad community has made this aticle openly available. Please shae how this access benefits you. You stoy mattes Citation

More information

Spiral Recognition Methodology and Its Application for Recognition of Chinese Bank Checks

Spiral Recognition Methodology and Its Application for Recognition of Chinese Bank Checks Spial Recognition Methodology and Its Application fo Recognition of Chinese Bank Checks Hanshen Tang 1, Emmanuel Augustin 2, Ching Y. Suen 1, Olivie Baet 2, Mohamed Cheiet 3 1 Cente fo Patten Recognition

More information

PROBABILITY-BASED OPTIMAL PATH PLANNING FOR TWO-WHEELED MOBILE ROBOTS

PROBABILITY-BASED OPTIMAL PATH PLANNING FOR TWO-WHEELED MOBILE ROBOTS Poceedings of the ASME 215 Dynamic Systems and Contol Confeence DSCC215 Octobe 28-3, 215, Columbus, Ohio, USA DSCC215-999 PROBABILITY-BASED OPTIMAL PATH PLANNING FOR TWO-WHEELED MOBILE ROBOTS Jaeyeon Lee

More information

Analysis of Wired Short Cuts in Wireless Sensor Networks

Analysis of Wired Short Cuts in Wireless Sensor Networks Analysis of Wied Shot Cuts in Wieless Senso Netwos ohan Chitaduga Depatment of Electical Engineeing, Univesity of Southen Califonia, Los Angeles 90089, USA Email: chitadu@usc.edu Ahmed Helmy Depatment

More information

On Error Estimation in Runge-Kutta Methods

On Error Estimation in Runge-Kutta Methods Leonado Jounal of Sciences ISSN 1583-0233 Issue 18, Januay-June 2011 p. 1-10 On Eo Estimation in Runge-Kutta Methods Ochoche ABRAHAM 1,*, Gbolahan BOLARIN 2 1 Depatment of Infomation Technology, 2 Depatment

More information

XFVHDL: A Tool for the Synthesis of Fuzzy Logic Controllers

XFVHDL: A Tool for the Synthesis of Fuzzy Logic Controllers XFVHDL: A Tool fo the Synthesis of Fuzzy Logic Contolles E. Lago, C. J. Jiménez, D. R. López, S. Sánchez-Solano and A. Baiga Instituto de Micoelectónica de Sevilla. Cento Nacional de Micoelectónica, Edificio

More information

Event-based Location Dependent Data Services in Mobile WSNs

Event-based Location Dependent Data Services in Mobile WSNs Event-based Location Dependent Data Sevices in Mobile WSNs Liang Hong 1, Yafeng Wu, Sang H. Son, Yansheng Lu 3 1 College of Compute Science and Technology, Wuhan Univesity, China Depatment of Compute Science,

More information

A New Finite Word-length Optimization Method Design for LDPC Decoder

A New Finite Word-length Optimization Method Design for LDPC Decoder A New Finite Wod-length Optimization Method Design fo LDPC Decode Jinlei Chen, Yan Zhang and Xu Wang Key Laboatoy of Netwok Oiented Intelligent Computation Shenzhen Gaduate School, Habin Institute of Technology

More information

Frequency Domain Approach for Face Recognition Using Optical Vanderlugt Filters

Frequency Domain Approach for Face Recognition Using Optical Vanderlugt Filters Optics and Photonics Jounal, 016, 6, 94-100 Published Online August 016 in SciRes. http://www.scip.og/jounal/opj http://dx.doi.og/10.436/opj.016.68b016 Fequency Domain Appoach fo Face Recognition Using

More information

WIRELESS sensor networks (WSNs), which are capable

WIRELESS sensor networks (WSNs), which are capable IEEE TRANSACTIONS ON INDUSTRIAL INFORMATICS, VOL. XX, NO. XX, XXX 214 1 Lifetime and Enegy Hole Evolution Analysis in Data-Gatheing Wieless Senso Netwoks Ju Ren, Student Membe, IEEE, Yaoxue Zhang, Kuan

More information

Effective Missing Data Prediction for Collaborative Filtering

Effective Missing Data Prediction for Collaborative Filtering Effective Missing Data Pediction fo Collaboative Filteing Hao Ma, Iwin King and Michael R. Lyu Dept. of Compute Science and Engineeing The Chinese Univesity of Hong Kong Shatin, N.T., Hong Kong { hma,

More information

A Family of Distributed Deadlock Avoidance Protocols and their Reachable State Spaces

A Family of Distributed Deadlock Avoidance Protocols and their Reachable State Spaces A Family of Distibuted Deadlock Avoidance Potocols and thei Reachable State Spaces Césa Sánchez, Henny B. Sipma, and Zoha Manna Compute Science Depatment Stanfod Univesity, Stanfod, CA 94305-9025 {cesa,sipma,manna}@cs.stanfod.edu

More information

Communication vs Distributed Computation: an alternative trade-off curve

Communication vs Distributed Computation: an alternative trade-off curve Communication vs Distibuted Computation: an altenative tade-off cuve Yahya H. Ezzeldin, Mohammed amoose, Chistina Fagouli Univesity of Califonia, Los Angeles, CA 90095, USA, Email: {yahya.ezzeldin, mkamoose,

More information

Dynamic Topology Control to Reduce Interference in MANETs

Dynamic Topology Control to Reduce Interference in MANETs Dynamic Topology Contol to Reduce Intefeence in MANETs Hwee Xian TAN 1,2 and Winston K. G. SEAH 2,1 {stuhxt, winston}@i2.a-sta.edu.sg 1 Depatment of Compute Science, School of Computing, National Univesity

More information

FACE VECTORS OF FLAG COMPLEXES

FACE VECTORS OF FLAG COMPLEXES FACE VECTORS OF FLAG COMPLEXES ANDY FROHMADER Abstact. A conjectue of Kalai and Eckhoff that the face vecto of an abitay flag complex is also the face vecto of some paticula balanced complex is veified.

More information

Lecture # 04. Image Enhancement in Spatial Domain

Lecture # 04. Image Enhancement in Spatial Domain Digital Image Pocessing CP-7008 Lectue # 04 Image Enhancement in Spatial Domain Fall 2011 2 domains Spatial Domain : (image plane) Techniques ae based on diect manipulation of pixels in an image Fequency

More information

Topic -3 Image Enhancement

Topic -3 Image Enhancement Topic -3 Image Enhancement (Pat 1) DIP: Details Digital Image Pocessing Digital Image Chaacteistics Spatial Spectal Gay-level Histogam DFT DCT Pe-Pocessing Enhancement Restoation Point Pocessing Masking

More information

Parallel processing model for XML parsing

Parallel processing model for XML parsing Recent Reseaches in Communications, Signals and nfomation Technology Paallel pocessing model fo XML pasing ADRANA GEORGEVA Fac. Applied Mathematics and nfomatics Technical Univesity of Sofia, TU-Sofia

More information

On the Forwarding Area of Contention-Based Geographic Forwarding for Ad Hoc and Sensor Networks

On the Forwarding Area of Contention-Based Geographic Forwarding for Ad Hoc and Sensor Networks On the Fowading Aea of Contention-Based Geogaphic Fowading fo Ad Hoc and Senso Netwoks Dazhi Chen Depatment of EECS Syacuse Univesity Syacuse, NY dchen@sy.edu Jing Deng Depatment of CS Univesity of New

More information

A VECTOR PERTURBATION APPROACH TO THE GENERALIZED AIRCRAFT SPARE PARTS GROUPING PROBLEM

A VECTOR PERTURBATION APPROACH TO THE GENERALIZED AIRCRAFT SPARE PARTS GROUPING PROBLEM Accepted fo publication Intenational Jounal of Flexible Automation and Integated Manufactuing. A VECTOR PERTURBATION APPROACH TO THE GENERALIZED AIRCRAFT SPARE PARTS GROUPING PROBLEM Nagiza F. Samatova,

More information

Automatically Testing Interacting Software Components

Automatically Testing Interacting Software Components Automatically Testing Inteacting Softwae Components Leonad Gallaghe Infomation Technology Laboatoy National Institute of Standads and Technology Gaithesbug, MD 20899, USA lgallaghe@nist.gov Jeff Offutt

More information

Lifetime and Energy Hole Evolution Analysis in Data-Gathering Wireless Sensor Networks

Lifetime and Energy Hole Evolution Analysis in Data-Gathering Wireless Sensor Networks 788 IEEE TRANSACTIONS ON INDUSTRIAL INFORMATICS, VOL. 12, NO. 2, APRIL 2016 Lifetime and Enegy Hole Evolution Analysis in Data-Gatheing Wieless Senso Netwoks Ju Ren, Student Membe, IEEE, Yaoxue Zhang,

More information

Combinatorial Mobile IP: A New Efficient Mobility Management Using Minimized Paging and Local Registration in Mobile IP Environments

Combinatorial Mobile IP: A New Efficient Mobility Management Using Minimized Paging and Local Registration in Mobile IP Environments Wieless Netwoks 0, 3 32, 200 200 Kluwe Academic Publishes. Manufactued in The Nethelands. Combinatoial Mobile IP: A New Efficient Mobility Management Using Minimized Paging and Local Registation in Mobile

More information

Conservation Law of Centrifugal Force and Mechanism of Energy Transfer Caused in Turbomachinery

Conservation Law of Centrifugal Force and Mechanism of Energy Transfer Caused in Turbomachinery Poceedings of the 4th WSEAS Intenational Confeence on luid Mechanics and Aeodynamics, Elounda, Geece, August 1-3, 006 (pp337-34) Consevation Law of Centifugal oce and Mechanism of Enegy Tansfe Caused in

More information

Adaptation of Motion Capture Data of Human Arms to a Humanoid Robot Using Optimization

Adaptation of Motion Capture Data of Human Arms to a Humanoid Robot Using Optimization ICCAS25 June 2-5, KINTEX, Gyeonggi-Do, Koea Adaptation of Motion Captue Data of Human Ams to a Humanoid Robot Using Optimization ChangHwan Kim and Doik Kim Intelligent Robotics Reseach Cente, Koea Institute

More information

Data mining based automated reverse engineering and defect discovery

Data mining based automated reverse engineering and defect discovery Data mining based automated evese engineeing and defect discovey James F. Smith III, ThanhVu H. Nguyen Naval Reseach Laboatoy, Code 5741, Washington, D.C., 20375-5000 ABSTRACT A data mining based pocedue

More information

Lecture 8 Introduction to Pipelines Adapated from slides by David Patterson

Lecture 8 Introduction to Pipelines Adapated from slides by David Patterson Lectue 8 Intoduction to Pipelines Adapated fom slides by David Patteson http://www-inst.eecs.bekeley.edu/~cs61c/ * 1 Review (1/3) Datapath is the hadwae that pefoms opeations necessay to execute pogams.

More information

Any modern computer system will incorporate (at least) two levels of storage:

Any modern computer system will incorporate (at least) two levels of storage: 1 Any moden compute system will incopoate (at least) two levels of stoage: pimay stoage: andom access memoy (RAM) typical capacity 32MB to 1GB cost pe MB $3. typical access time 5ns to 6ns bust tansfe

More information

Color Interpolation for Single CCD Color Camera

Color Interpolation for Single CCD Color Camera Colo Intepolation fo Single CCD Colo Camea Yi-Ming Wu, Chiou-Shann Fuh, and Jui-Pin Hsu Depatment of Compute Science and Infomation Engineeing, National Taian Univesit, Taipei, Taian Email: 88036@csie.ntu.edu.t;

More information

A ROI Focusing Mechanism for Digital Cameras

A ROI Focusing Mechanism for Digital Cameras A ROI Focusing Mechanism fo Digital Cameas Chu-Hui Lee, Meng-Feng Lin, Chun-Ming Huang, and Chun-Wei Hsu Abstact With the development and application of digital technologies, the digital camea is moe popula

More information

SCALABLE ENERGY EFFICIENT AD-HOC ON DEMAND DISTANCE VECTOR (SEE-AODV) ROUTING PROTOCOL IN WIRELESS MESH NETWORKS

SCALABLE ENERGY EFFICIENT AD-HOC ON DEMAND DISTANCE VECTOR (SEE-AODV) ROUTING PROTOCOL IN WIRELESS MESH NETWORKS SCALABL NRGY FFICINT AD-HOC ON DMAND DISTANC VCTOR (S-AODV) ROUTING PROTOCOL IN WIRLSS MSH NTWORKS Sikande Singh Reseach Schola, Depatment of Compute Science & ngineeing, Punjab ngineeing College (PC),

More information

A Novel Automatic White Balance Method For Digital Still Cameras

A Novel Automatic White Balance Method For Digital Still Cameras A Novel Automatic White Balance Method Fo Digital Still Cameas Ching-Chih Weng 1, Home Chen 1,2, and Chiou-Shann Fuh 3 Depatment of Electical Engineeing, 2 3 Gaduate Institute of Communication Engineeing

More information