Automatic Recognition of Historical Buildings in Valletta Using Smartphone Technology

Total Page:16

File Type:pdf, Size:1020Kb

Automatic Recognition of Historical Buildings in Valletta Using Smartphone Technology Automatic Recognition of Historical Buildings in Valletta using Smartphone Technology Donna Agius Supervisor: Dr. George Azzopardi Faculty of ICT University of Malta May 2016 Submitted in partial fulfillment of the requirements for the degree of B.Sc. ICT in Artificial Intelligence (Hons.) Abstract Building classification is a widely researched area in computer vision. In this re- search project a smartphone application is developed which uses computer vision tech- niques. The idea is introduced by pointing out several advantages and disadvantages of such a system. The application allows the user to take a picture of historical buildings, and then it automatically classifies it and gives information about the building. The technical terms that are used in this project, are described in the following chapter, and previous work from the literature is highlighted. Building recognition is ultimately an object recognition problem, so in the second chapter we look at different approaches to object recognition algorithms applied to various building datasets. An overview of the system is described next, and the design of how the system is implemented is highlighted. The section describes how the user can upload a photo, receive information regarding the respective building and give back feedback to the system. In the same chapter there is also a description of the process to create three distinct datasets using data from thirteen Maltese buildings. Furthermore, an "Un- known" category was included to make the project more realistic. The implementation is discussed in the fourth chapter, and the system to recognise a building is described in detail. The full operation is discussed in detail, i.e. uploading the image, recognising the building, sending back the data to the user, and the user sends back feedback to the system. A flowchart is also drawn to show the full process to recognise the building in a query image. Next, several experiments were implemented, such as using different image pro- cessing techniques, or applying the algorithm on various datasets. The application is also distributed to users for evaluation. Results show that the proposed system is very effective. The algorithm gained also an accuracy which is equal to the state-of-the-art on the Zurich Building benchmark dataset. Finally, ideas are discussed to further improve the application, such as implement- ing augmented reality, and using deep learning algorithms. Acknowledgements: I would like to thank my supervisor Dr. George Azzopardi for the advice, guidance and constant feedback in order to create such a project. I would also like to thank my parents, my sisters and Julian for their continuous support and encouragement. Contents 1 Introduction 1 1.1 Thesis Statement . 1 1.2 Motivation . 1 1.3 Scope . 2 1.4 Approach . 2 1.5 Aims and Objectives . 4 1.6 Report Layout . 4 2 Background and Literature Review 5 2.1 Background . 5 2.1.1 Feature detection and description . 5 2.1.2 Feature description: Scale Invariant Feature Transform (SIFT) 6 2.1.3 Local Binary Patterns (LBP) . 7 2.1.4 Bag of visual words . 8 2.1.5 Machine Learning . 8 2.1.5.1 K-means . 9 2.1.5.2 Support Vector Machines . 9 2.2 Literature Review . 9 2.2.1 Application Context . 14 3 Specification and Design 15 3.1 Client-Server Model . 15 3.1.1 Dataset Acquistion . 15 3.1.2 Client Application . 17 4 Implementation 18 4.1 Client . 18 4.2 Server . 19 4.2.1 System configuration . 20 4.2.2 Application . 23 i 5 Evaluation 25 5.1 Evaluation Protocol . 25 5.2 Bag of Words and Vector of Locally Aggregated Descriptors . 26 5.3 Local Binary Patterns (LBP) . 27 5.4 Kernel Fusion of SIFT and LBP Features . 28 5.5 Normalised and unnormalised data . 28 5.6 Cropped and uncropped datasets . 29 5.7 Dataset containing images sourced online . 29 5.8 Confusion Matrix . 30 5.9 Investigating the \Unknown" Category . 32 5.10 Zurich Building Dataset (ZuBuD) . 32 5.11 Mobile Application . 32 5.12 Discussion . 33 6 Future Work 35 7 Conclusion 36 Appendix: Discover Valletta - Manual 42 ii List of Figures 1 A photo of a building, captured using a smartphone. 1 2 Multiple buildings in the same view. 3 3 An example of flat, edge and corner regions in an image. 6 4 Example of local feature matching. 7 5 The figure shows how the basic LBP operator works. 7 6 Overview of the system data flow. 15 7 Some buildings from the dataset. 16 8 Three different categories from the three different datasets. 17 9 A diagram showing the application, and its different functions. 19 10 A spatial pyramid using three levels. 22 11 A flowchart that shows the required steps to label a test image. 24 12 Various images from the dataset, where images are sourced online. 30 13 Confusion matrix of the Valletta Buildings dataset. 31 14 True positive, false positive and false negative samples from the dataset. 31 List of Tables 1 An overview of the building data sets and their complexity. 13 2 The datasets acquired. 16 3 Performance across different image processing techniques. 27 4 Results when testing normalised and data which is not normalised. 28 5 Accuracy garnered from cropped and uncropped datasets. 29 6 Accuracy gained from images sourced online, using both techniques. 30 7 Results obtained when omitting the \Unknown" category from the dataset. 32 8 Results on ZuBuD Dataset. 33 iii 1 Introduction 1.1 Thesis Statement When tourists wander in a city, they may not be familiar with every building. They may find an interesting building and may want to find information about it, as they are walking along. In this research project, I develop a smartphone application, which makes use of computer vision techniques. The application allows the user to take a picture of historical buildings (Fig. 1), and then it automatically analyses it and gives information about the building. Valletta is chosen as the most suitable candidate for the application for multiple reasons; the city is rich of many historical buildings in a rather small area. Moreover, Valletta is popular amongst tourists, and it will be the European capital city of the year 2018. Figure 1: A photo of a building, captured using a smartphone. 1.2 Motivation Building recognition and classification is an important task and an ongoing research topic, which is used in several applications such as video surveillance [1], navigation [2], robot localisation [3] and 3D city reconstructions [4] [5], among others. The ap- plication that I developed, can be used by people of all ages, particularly tourists and it will be beneficial to users to develop further their cultural knowledge, especially in tourism. Since Valletta is going to be the European capital city in 2018, it would be an opportunity to increase its popularity in Europe. 1 1.3 Scope In the application proposed, the user will be able to identify a single building for each picture submitted, i.e. multiple buildings in a single photo will not be considered. As a result, the user may crop any unnecessary clutter from the image, such as other buildings, trees, cars, etc. Finally, in order to predict the name of the building, the system will use computer vision techniques rather than the Global Positioning System (GPS) system. For a human, the identification of objects, such as buildings, is an effortless op- eration. It is also easy for a human to identify the same objects, even if they are in different angles or the objects themselves are skewed. For a machine, however, this is less simple, since the machine needs to identify the same building at different times of the day, different weather conditions, and in different angles, and each scenario may present with its own challenges. In this project, the data contains different photos of buildings in different conditions, such as photos taken in the morning or at night time. The buildings may also suffer from partial occlusions from trees, moving vehicles, or other buildings. This issue may interfere with the identification of the building as well. 1.4 Approach The proposed project can be implemented as a desktop application, but I opted for a smartphone implementation because of numerous advantages. By using a smartphone, the information about the building is given on the spot. Information is provided in real-time and therefore the user does not need to do research beforehand. As a result, this is particularly beneficial for tourists, since they do not need to research in advance, but can learn on-the-fly. The application enhances their experience while wandering around the city. Furthermore, the proposed system is highly accessible, as it only requires a smart phone and internet access. Internet connection may be expensive to tourists however, this issue will be minimised with the removal of roaming charges in the EU within the next few months. The mobile platform offers several advantages over desktop which makes it the pre- 2 ferred choice of target platform. The user has access to the information on the building in real-time, presented through a familiar interface with minimal distractions. Acces- sibility to the application also improves since most mobile devices have application stores from where you can download the software in a few steps. These stores also have application version control, meaning updates can be delivered to the user in more direct and convenient way. Adding more features, information and identifiable buildings to the application could be done through these updates. In this research project, the building is identified using computer vision techniques. Identifying the building could also be done using the user's position and orientation.
Recommended publications
  • Consulate of Malta in South Australia Newsletter May 2013 Frank L Scicluna - Hon Consul
    CONSULATE OF MALTA IN SOUTH AUSTRALIA NEWSLETTER MAY 2013 FRANK L SCICLUNA - HON CONSUL THE ANZAC MONUMENT IN MALTA WILL BE OFFICIALLY INAUGURATED ON SATURDAY 25 MAY 2013 I am pleased to inform you that on Saturday 25 May 2013, the ANZAC War Memorial will be officially inaugurated jointly by the Hon George W. Vella MD., MP, Minister for Foreign Affairs and the Chairman of the committee Mr. Nicholas Bonello. The generous contribution from the Maltese community of South Australia helped the project to become a reality, and as a sign of appreciation the Malta ANZAC Memorial committee has kindly invited the Hon. Consul for Malta Mr. Frank Scicluna to send a message which will be read during the inauguration ceremony. Ħaġar Qim and Mnajdra Temples in Malta The megalithic temples of Ħaġar Qim and Mnajdra located on the southwestern coast of the island nation of Malta are unique freestanding stone monuments. Dating back 5,000 to 5,500 years ago, these prehistoric temples are among the oldest surviving examples of stone architecture in the world, and have been designated by UNESCO as part of the World Heritage register. The archeological park consists of two temples, Ħaġar Qim and Mnajdra. Mnajdra is located several hundred meters downhill from the Ħaġar Qim temple site. Uncovered in 1839, the temples are constructed of globigerina limestone slabs weighing up to 57 tons. One upright menhir stands 5.2 meters (17.06 feet) high. The temples are sited on high cliffs along the coastline overlooking the Mediterranean Sea in the rural countryside of Malta.
    [Show full text]
  • MHA Newsletter July 2015
    MHA Newsletter No. 6/2015 www.mha.org.au July 2015 Merħba! A warm welcome is extended to all our June 2014 members and friends. THE MALTESE HISTORICAL Joe Borg’s lecture about the great Siege on 16 June June 2014 was well attended, and he has sent us a summary of his ASSOCIATION (AUSTRALIA) talk. A link to the PowerPoint and lecture recording are provided in case you missed it. After the lecture, two invites you to attend the new members joined the MHA, Marie Pirotta and John Melbourne launch of the Bonnice. I am sure you will make them feel welcome, with true Maltese hospitality. John contributed the commemorative book: excellent pictorial essay on Fort St Elmo to the last newsletter. Malta and the ANZACS - You may recall that at our last AGM the MHA agreed to Nurse of the Mediterranean help sponsor the publication of Frank Scicluna’s book, Malta and the ANZACS - Nurse of the Mediterranean. It has finally been released. As an individual sponsor, I have already received a copy, which I have reviewed on page 6 of this newsletter. In a word, it is superb! The Maltese Consul General, Mr. Victor Grech, will officially launch the book in Melbourne at our next meeting on 21 July. The author, Frank Scicluna OAM, will be in attendance, speaking about his book and will be bringing copies for sale. It is a public event, so tell everyone you can think of. Malta’s role in World War I makes me particularly proud of my Maltese heritage. Joe Borg’s third lecture on the Great Siege was originally scheduled for this month but will be postponed to September.
    [Show full text]
  • Context-Aware Features and Robust Image Representations 5 6 ∗ 7 P
    CAKE_article_final.tex Click here to view linked References 1 2 3 4 Context-Aware Features and Robust Image Representations 5 6 ∗ 7 P. Martinsa, , P. Carvalhoa,C.Gattab 8 aCenter for Informatics and Systems, University of Coimbra, Coimbra, Portugal 9 bComputer Vision Center, Autonomous University of Barcelona, Barcelona, Spain 10 11 12 13 14 Abstract 15 16 Local image features are often used to efficiently represent image content. The limited number of types of 17 18 features that a local feature extractor responds to might be insufficient to provide a robust image repre- 19 20 sentation. To overcome this limitation, we propose a context-aware feature extraction formulated under an 21 information theoretic framework. The algorithm does not respond to a specific type of features; the idea is 22 23 to retrieve complementary features which are relevant within the image context. We empirically validate the 24 method by investigating the repeatability, the completeness, and the complementarity of context-aware fea- 25 26 tures on standard benchmarks. In a comparison with strictly local features, we show that our context-aware 27 28 features produce more robust image representations. Furthermore, we study the complementarity between 29 strictly local features and context-aware ones to produce an even more robust representation. 30 31 Keywords: Local features, Keypoint extraction, Image content descriptors, Image representation, Visual 32 saliency, Information theory. 33 34 35 1. Introduction While it is widely accepted that a good local 36 37 feature extractor should retrieve distinctive, accu- 38 Local feature detection (or extraction, if we want 39 rate, and repeatable features against a wide vari- to use a more semantically correct term [1]) is a 40 ety of photometric and geometric transformations, 41 central and extremely active research topic in the 42 it is equally valid to claim that these requirements fields of computer vision and image analysis.
    [Show full text]
  • Malta: Selected Essays in Governance and Public Administration
    Mediterranean Academy of Diplomatic Studies (MEDAC) Malta: Selected Essays in Governance and Public Administration Godfrey A. Pirotta Med Agenda MEDAC Publications in Mediterranean IR and Diplomacy Malta: Selected Essays in Governance and Public Administration Godfrey A. Pirotta Prof. Godfrey A. Pirotta Mediterranean Academy of Diplomatic Studies (MEDAC) Malta: Selected Essays in Governance and Public Administration Godfrey A. Pirotta Malta, January 2021 Med Agenda MEDAC Publications in Mediterranean IR and Diplomacy Table Of Contents 5 About the author 6 Preface 10 Acknowledgments Part 1 12 Bread, Language and Civil Service Employment 25 From Hymn to National Anthem 32 Building a New Parliament House 48 Maltese Political Parties and Political Modernization 62 The Malta Labor Party and the Church: Building the Democratic State: 1921-1976 86 Struggling for a Role: Women and Politics in Malta 106 Malta’s Foreign Policy After Mintoff 111 The Challenge of European Membership: A Study of Malta’s Parliament Approach to the Issue 1962-87 133 The Disciplines of Politics and Public Administration in Malta 150 Photo Inset Part 2 158 Future of the Public Service 166 Politics and Public Service Reform in Small States: Malta 178 The Organization of Public Administration and Civil Society: Comments and Remarks 186 L-Istat u t-Tmexxija tal-Istituzzjonijiet 196 Bringing Good Governance to Malta 202 A New Creation or an Image and Likeness? The Maltese Experience of Establishing Local Governance in a Centralized Micro-State 218 Public Administration Education and Training in Small States: The Case of Malta 1950-1995 242 A Farewell to Paternalism Through Public Enterprise? Privatisation in the Small Island State of Malta 258-270 The Politics of Public Expenditure in Malta Pirotta – Malta: Selected Essays in Governance and Public Administration About the author GODFREY A.
    [Show full text]
  • Download the Fortifications of Malta 1530-1945 Free Ebook
    THE FORTIFICATIONS OF MALTA 1530-1945 DOWNLOAD FREE BOOK Charles Stephensen, Steve Noon | 64 pages | 01 Feb 2004 | Bloomsbury Publishing PLC | 9781841766935 | English | United Kingdom Welcome to the Noble Knight Games eBay Store! I expect more from an Osprey book. Pembroke Local Council in Maltese. Construction of the batteries began in and they were complete by The first fortifications in Malta were built during the Bronze Age. The last coastal watchtower to be built was Sopu Towerwhich was constructed in Gozo in Item location:. Have one to sell? It is located in a building adjoining Saint Andrew's Bastion, part of the city walls of Valletta. Make sure to view all the different shipping options we The Fortifications of Malta 1530-1945 available to save even further! Archived from the original on 4 April Email to friends Share on Facebook - opens in a new window or tab Share on Twitter - opens in a The Fortifications of Malta 1530-1945 window or tab Share on Pinterest - opens in a new window or tab Add to Watchlist. However, since the beginning of the 21st century, a number of fortifications have been restored or are undergoing restoration. Ecumenism: A Guide for the Perplexed. Shane Jenkins rated it really liked it May 16, Goodreads helps you keep track of books you want to read. To see what your friends thought of this book, please sign up. You may combine The Fortifications of Malta 1530-1945 to save on shipping costs. Victor rated it really liked it May 19, British Period. He's had a life-long passion for illustration, and since has worked as a professional artist.
    [Show full text]
  • Pavement Crack Detection by Ridge Detection on Fractional Calculus and Dual-Thresholds
    International Journal of Multimedia and Ubiquitous Engineering Vol.10, No.4 (2015), pp.19-30 http://dx.doi.org/10.14257/ijmue.2015.10.4.03 Pavement Crack Detection by Ridge Detection on Fractional Calculus and Dual-thresholds Song Hongxun, Wang Weixing, Wang Fengping, Wu Linchun and Wang Zhiwei Shaanxi Road Traffic Intelligent Detection and Equipment Engineering Technology Research Center, Chang’an University, Xi’an, China School of Information Engineering, Chang’an University, Xi’an, China songhongx @163.com Abstract In this paper, a new road surface crack detection algorithm is proposed; it is based on the ridge edge detection on fractional calculus and the dual-thresholds on a binary image. First, the multi-scale reduction of image data is used to shrink an original image to eliminate noise, which can not only smooth an image but also enhance cracks. Then, the main cracks are extracted by using the ridge edge detection on fractional calculus in a grey scale image. Subsequently, the resulted binary image is further processed by applying both short and long line thresholds to eliminate short curves and noise for getting rough crack segments. Finally the gaps in cracks are connected with a curve connection function which is an artificial intelligence routine. The experiments show that the algorithm for pavement crack images has the good performance of noise immunity, accurate positioning, and high accuracy. It can accurately locate and detect small and thin cracks that are difficult to identify by other traditional algorithms. Keywords: Crack; Multiscale; Image enhancement; Ridge edge; Threshold 1. Introduction In a time period, any road can be damaged gradually due to traffic loads and the other natural/artificial factors, and cracks are the most common road pavement surface defects that need to mend as early as possible.
    [Show full text]
  • Fireworks of Music in Malta
    MAY No 5 (13) 2018 New stars: Malta International Piano Competition 2018 Armenian Cultural Days fireworks MIMF of music 2018: in Malta CONTENTS MIMF — 2018 A new circle VI Malta International of the “culture circulation”… ................... 48 Music Festival in all dimensions ................ 4 The way youngsters do ............................ 50 What people say about the VI Malta International Music Festival ......... 5 Ephemerides and other ephemeral bodies ........................... 52 New stars: Malta International ......................... Piano Competition 2018 ........................... 10 Bravo, maestro Accardo! 54 Tchaikovsky, Elgar, Shor PERSON Alexey Shor: and Chagall for the unenl ightened “I liked the energy and the most sophisticated... .................. 56 of Armenian audience” ............................. 12 Captivating reading of sound .................. 58 Alexander Sokolov: “ The main criterion for a member ARMENIAN DAYS IN MALTA Unforgettable Armenian of the jury is whether you want to listen Cultural Days in sunny Malta .................... 60 to this composer again” ........................... 14 “We managed to find a common Carmine Lauri: language very quickly, and “Give me a tune and I am happy!” ............. 16 we worked together easily” .................... 63 Krzysztof Penderecki: “Maestro Sergey Smbatyan Anna Ter-Hovakimyan: Critics and musicologists keeps surprising me with his talent” ....... 20 hail performance of Symphony Georges Pélétsis: Orchestra in Malta .................................... 64
    [Show full text]
  • Feature Detection Florian Stimberg
    Feature Detection Florian Stimberg Outline ● Introduction ● Types of Image Features ● Edges ● Corners ● Ridges ● Blobs ● SIFT ● Scale-space extrema detection ● keypoint localization ● orientation assignment ● keypoint descriptor ● Resources Introduction ● image features are distinct image parts ● feature detection often is first operation to define image parts to process later ● finding corresponding features in pictures necessary for object recognition ● Multi-Image-Panoramas need to be “stitched” together at according image features ● the description of a feature is as important as the extraction Types of image features Edges ● sharp changes in brightness ● most algorithms use the first derivative of the intensity ● different methods: (one or two thresholds etc.) Types of image features Corners ● point with two dominant and different edge directions in its neighbourhood ● Moravec Detector: similarity between patch around pixel and overlapping patches in the neighbourhood is measured ● low similarity in all directions indicates corner Types of image features Ridges ● curves which points are local maxima or minima in at least one dimension ● quality depends highly on the scale ● used to detect roads in aerial images or veins in 3D magnetic resonance images Types of image features Blobs ● points or regions brighter or darker than the surrounding ● SIFT uses a method for blob detection SIFT ● SIFT = Scale-invariant feature transform ● first published in 1999 by David Lowe ● Method to extract and describe distinctive image features ● feature
    [Show full text]
  • The Maltese Islands Stars on the Rise in the Mediterranean > Introduction
    Destination Report Malta HEADQUARTERS is a special edition of Headquarters Magazine - Published by Meeting Media Company (Europe) www.meetingmediagroup.com - [email protected] September 2015 THE MALTESE ISLANDS STARS ON THE RISE IN THE MEDITERRANEAN > Introduction Vella Clive THE MALTESE ISLANDS: © MALTA, GOZO AND COMINO A Rising Meetings Destination in the Mediterranean The Three Cities and the Grand Harbour Malta may be one of the smallest countries in Europe, but it also boasts quite a dynamic history spanning 7,000 years of rule and conquest passing from the Romans, Knights of the Order of St. John and Napoleon to the English in more recent times. Almost everywhere you look on the Maltese archipelago you’ll find remnants of the islands’ past, from the Megalithic temples to the Baroque churches and palaces constructed by the knights. With the ability to transform almost any historic site into a stunning venue, it’s no surprise Malta is capitalizing on its culture and emerging as one of the top new meeting destinations in the Mediterranean. Report Lane Nieset Located in the middle of the Mediterranean capital of Mdina and you’re instantly trans- important characteristic in our daily lives. We between Sicily and northern Africa, the ported back in time to a fortified city that’s also share a culture of discipline which was Maltese archipelago includes the three maintained the same narrow winding streets brought about by the influence of the British inhabited islands of Malta, Gozo and Comino. it had 1,000 years ago. rule which lasted 150 years. Whilst our history It’s believed that humans first made their way has influenced and shaped considerably our to Malta in 5,000 B.C., crossing a land bridge Gozo, meanwhile, is just a 25-minute culture, we are also Mediterranean but most connected to Sicily.
    [Show full text]
  • Coding Images with Local Features
    Int J Comput Vis (2011) 94:154–174 DOI 10.1007/s11263-010-0340-z Coding Images with Local Features Timo Dickscheid · Falko Schindler · Wolfgang Förstner Received: 21 September 2009 / Accepted: 8 April 2010 / Published online: 27 April 2010 © Springer Science+Business Media, LLC 2010 Abstract We develop a qualitative measure for the com- The results of our empirical investigations reflect the theo- pleteness and complementarity of sets of local features in retical concepts of the detectors. terms of covering relevant image information. The idea is to interpret feature detection and description as image coding, Keywords Local features · Complementarity · Information and relate it to classical coding schemes like JPEG. Given theory · Coding · Keypoint detectors · Local entropy an image, we derive a feature density from a set of local fea- tures, and measure its distance to an entropy density com- puted from the power spectrum of local image patches over 1 Introduction scale. Our measure is meant to be complementary to ex- Local image features play a crucial role in many computer isting ones: After task usefulness of a set of detectors has vision applications. The basic idea is to represent the image been determined regarding robustness and sparseness of the content by small, possibly overlapping, independent parts. features, the scheme can be used for comparing their com- By identifying such parts in different images of the same pleteness and assessing effects of combining multiple de- scene or object, reliable statements about image geome- tectors. The approach has several advantages over a simple try and scene content are possible. Local feature extraction comparison of image coverage: It favors response on struc- comprises two steps: (1) Detection of stable local image tured image parts, penalizes features in purely homogeneous patches at salient positions in the image, and (2) description areas, and accounts for features appearing at the same lo- of these patches.
    [Show full text]
  • Malta Painted by Vittorio Boron Described by Frederick W
    MALTA PAINTED BY VITTORIO BORON DESCRIBED BY FREDERICK W. RYAN 488742 30. 3- LONDON ADAM & CHARLES BLACK 1910 TO COUNT GIROLAMO TAGLIAFERRO THIS BOOK IS AFFECTIONATELY INSCRIBED BY THE WRITER PREFACE THE following text is intended to give no more than a slight sketch, aided by Signer Boron's effective pencil, of the manifold interests to be found in Malta. While the archaeology of the island and its con- nection with the Order of St. John of Jerusalem have from time to time attracted attention, English writers seem regrettably to have neglected other topics presented by this unique Imperial posses- sion, such as the folk-lore and literature of the the of the Maltese language ; growth early Christian of the nature of the ' Church Malta ; Consiglio Popolare' that gleam of constitutional govern- ment in the Dark Ages quite as interesting as the or the social Wittenagemote ; and economic condition of the Maltese people under the Knights and in the early days of British rule all of which have engaged the attention of Italian and Maltese historians. vi PREFACE Circumstances have not allowed more than a passing allusion in the following pages to such subjects : they are here mentioned to indicate the fruitful field of research embraced by the Malta Historical and Scientific Society, formed last year in Valletta, which proposes, under the guidance of its President, Professor Napoleon Tagliaferro, to * study the history and archaeology of the Maltese ' Islands and other scientific subjects of local interest an association well worthy of the support of British residents in Malta. The vast contents of the Record Office in Valletta and oral tradition the latter nowhere stronger than in these islands may on examination con- tribute many valuable additions to literature and history.
    [Show full text]
  • Knights, Memory, and the Siege of 1565: an Exhibition on the 450Th Anniversary of the Great Siege of Malta
    Knights, Memory, and the Siege of 1565: An Exhibition on the 450th Anniversary of the Great Siege of Malta Introduction by Emanuel Buttigieg Text by Daniel K. Gullo HILL MUSEUM & MANUSCRIPT LIBRARY Collegeville, Minnesota © 2015 Contents Introduction w i Exhibition Catalog w 1 List of Images w 25 Bibliography w 27 Acknowledgments w 29 Printed to accompany Knights, Memory, and the Siege of 1565: An Exhibition on the 450th Anniversary of the Great Siege of Malta at the Hill Museum & Manuscript Library, on view September 8 through October 3, 2015. © 2015, Hill Museum & Manuscript Library All rights reserved Printed in the United States of America Published by the Hill Museum & Manuscript Library Collegeville, MN 56321-7300 w i w Introduction You may consider my state of mind when, having passed the Dragut Point and the formidable fortress of St Elmo, the Mulata cast anchor in the great harbour, between Fort St Angelo and the Sanglea peninsula. From there we could view the site of the dreadful siege that had taken place sixty-two years before, an episode that made the name of the island as immortal as that of the six hundred Knights of various nations and the nine thousand Spanish and Italian soldiers and citizens of Malta who, for four years [sic], fought off forty thousand Turks, of whom they killed thirty thousand; battling for every inch of land and losing fort after fort in bloody hand-to-hand combat, until all that remained were the redoubts of Birgu and Sanglea, where the last survivors fought to the end (Pérez-Reverte 2011, 123).
    [Show full text]