Structure Identification in Medical Imaging (SIMI)

Total Page:16

File Type:pdf, Size:1020Kb

Structure Identification in Medical Imaging (SIMI) Structure Identification in Medical Imaging (SIMI) | Report Three | Tom Brzozowski, Daniel Liew, Vasileios Papaefstratiou-Armagos, Pijika Watcharapichat, Wasin Chaivaranont tb807, dsl11, vp208, pw610, wc1311 @doc.ic.ac.uk f g Supervisor: Dr. Eddie Edwards Course: CO530, Imperial College London 16th March, 2012 M.Sc. Group Project Report 16th March, 2012 Contents 1 Introduction 3 2 Specification 3 2.1 Stakeholders . .3 2.2 Minimum sepcification . .3 2.3 Extended specification . .4 2.4 Revision on specification . .4 3 Design 4 3.1 Initial design decisions . .4 3.2 Classes . .5 3.3 User interface . .7 4 Methodology 9 4.1 Software development tools . .9 4.2 Software development technique . .9 4.3 Solutions for different tasks according to specification . 10 4.3.1 Specifications related to basic user interaction . 10 4.3.2 Specifications related to segmentation features . 12 4.3.3 Extended requirements . 15 4.4 Main intellectual or technical problems during the project . 20 4.5 Meetings with stakeholders . 21 5 Division of work 21 5.1 Technical work . 21 5.2 Administrative and documentation . 22 5.3 Training and research . 22 6 Final product 23 6.1 Final outcome of programme . 23 6.2 Overall achievement and specifications being implemented within the final product . 23 6.3 Testing methodology and result . 24 6.3.1 Manual visual testing . 24 6.3.2 Automated Unit testing . 24 6.3.3 Stakeholder testing . 24 6.4 Evaluation on product performance . 25 6.5 Possible extensions . 26 7 Glossary 26 Appendix 28 A Sprint Logbooks 28 B Group Meeting Logbooks 31 C Summary of Personal Logbooks 46 D Goal orientated capture 55 E Code documentation 56 2 M.Sc. Group Project Report 16th March, 2012 1 Introduction Airways are part of the respiratory system which extend from the nose to the lungs and through which air flows. Many airway diseases are closely related to changes in the anatomical shape of the airways that affect the physiology of the system. Therefore, observing such morphological changes is a useful tool to assess both disease prognosis and therapeutic efficacy. Within this project, the anatomical structure of interest will be the upper airways which extend from nostrils to pharynx. Image segmentation 1 is considered to be an important step in medical image processing because it allows users to identify regions of interest and study anatomical structures. Medical image segmen- tation can be used as a tool to follow any anatomical changes. As a result, this image technique can reasonably be applied as a clinical tool to follow up disease progression. The purpose of the project is to create a user-friendly system for identifying and segmenting the upper airways from other surrounding anatomical structures in medical images of head and neck region. The primary function of this system is to provide a set of manual/semi-automatic tools for image segmentation within an interactive graphical user interface. The software will allow the user to par- tition an image into segments so that it is possible to construct the 3D shape of the airway from the image segmentation. The main advantage of this system, compared to other similar ones, lies in its simplicity, its specialised goal to model the upper airways and its ability to provide semi-automated functionality. Finally, if the software meets its requirements, then it has the potential to be used as a research tool by a medical team at St. Mary's hospital. 2 Specification The specification for our project was determined by having meetings with our stakeholders and per- forming goal orientated capture. The diagram for this can be seen in appendix D. 2.1 Stakeholders Our supervisor, Dr. Eddie Phillips Edwards • Alister Bates who is colleague of our supervisor who is interested in airway modelling using • Computational Fluid dynamics. Raul Cetto who is also a colleague of our supervisor who is an Otolaryngology surgeon. • Both Raul and Alister are interested in investigating the effects of different drugs on soft tissue within upper airways with image segmentation being a useful research tool to measure such a biological effect. 2.2 Minimum sepcification Provide a research tool that allows MRI images of human \upper airways" to be segmented from • other anatomical structures. The user will be able to see the image by providing a single Orthogonal slice view. • The user will be able to interact with the image by. • { Loading the image { Navigating through different slices { Adjusting the image contrast { Using a crosshair to allow the seed point for the image segmentation algorithm to be selected 1The process of partitioning an image into regions 3 M.Sc. Group Project Report 16th March, 2012 The tool will be able to perform image segmentation on a single 2D slice by using a segmentation • algorithm that can be controlled by the user choosing the minimum and maximum threshold parameters. The user will be able to see the result of the segmentation algorithm performed on a single slice. • The user will be able to load and save the following for every slice of the image • { Seed point { Contrast settings { Thresholds used for segmentation algorithm 2.3 Extended specification Allow the user to block particular regions within a 2D slice from being filled when the region • filling algorithm is being applied. The user should be able to draw the block regions on to the slice. It should be possible for the block regions to be saved and loaded. Allow the generation of 3D volume from a set of segmented 2D image slices which the user can • view. Perform an image segmentation algorithm in 3D by working on multiple slices at once from a • single seed point. From this a 3D volume can be rendered. 2.4 Revision on specification The major change to the original specification is to remove the reliance on the ITK library to perform image segmentation. As the VTK library and its integration with other program components had a steep learning curve and was the contributing factor to the overall project delay. Given this delay, it is not feasible to learn another large library such as ITK library. As the program will essentially use only one type of algorithm to segment the region of interest, it has been decided that a custom version of the flood fill algorithm should be implemented instead. 3 Design When it came to designing our program we went for a modular approach so that. It would be possible for each member to work on a component of the project as independently • as possible. The code is easier to understand • Testing is straight forward • Our modules are implemented as C++ classes which are detailed in section 3.2. 3.1 Initial design decisions Platform One of the first important choices we made was which platform to target. We chose to primarily target Linux based machines as there are many available for development in the Department of Computing laboratories. However our choice of libraries and build system mean in principle that other platforms are supported as well. Programming language Our language of choice was C++ because all members of group were expe- rienced in using it and because the libraries we were thinking of using supported it. However it would have also been possible to use Java, TCL and python. 4 M.Sc. Group Project Report 16th March, 2012 Libraries Since our program is interactive it is important we chose a good GUI tool kit. Our tool kit of choice is Qt because it is cross platform, well documented, the VTK library supports using it and it is written using C++. We also needed a way to load, display and process medical images. There were two options available to us. Use openGL to do the rendering directly. This would have meant writing a lot of \low • level" code for rendering which would be quite tedious. We also need to provide a way to load medical images so we would have to write our own image loading and saving code as well. Use a library to manage the loading, processing and displaying of the medical images. The • Visualisation toolkit (VTK) is one such library with most of the emphasis on rendering rather than processing. Other libraries exist such as the Insight toolkit (ITK) which provide a selection of segmentation and registration algorithms as well as image loading and saving classes. Another library that combines both VTK and ITK that exists is the Medical Imaging tool kit (MITK) along with an additional API. We chose to use VTK for visualising, loading and saving image data because it meant we do not need to implement a lot of \low level" code. We were going to use ITK to provide us with a means to perform image segmentation and load and save image data as well however due to problems (see section 4.4 ) we chose not to use ITK. Build system We wanted to use a cross platform build system that integrated well with an IDE. We considered the following build systems. QMake This is Qt's build system. It is well integrated into the Qt Creator IDE; however it's support for external libraries is not quite as good as CMake's. Autotools This isn't really very cross platform because it requires a UNIX shell script envi- ronment which isn't available in Windows without installing a lot additional software. It's also horribly complicated. CMake This is build system written by the authors of VTK and ITK. It is highly modular and extensible, has special support for Qt's intermediate compilation stage and makes it incredibly easy to work with external libraries.
Recommended publications
  • Documentation of Northern Alta: Grammar, Texts and Glossary
    Documentation of Northern Alta: grammar, texts and glossary Alexandro-Xavier García Laguía ADVERTIMENT. La consulta d’aquesta tesi queda condicionada a l’acceptació de les següents condicions d'ús: La difusió d’aquesta tesi per mitjà del servei TDX (www.tdx.cat) i a través del Dipòsit Digital de la UB (diposit.ub.edu) ha estat autoritzada pels titulars dels drets de propietat intel·lectual únicament per a usos privats emmarcats en activitats d’investigació i docència. No s’autoritza la seva reproducció amb finalitats de lucre ni la seva difusió i posada a disposició des d’un lloc aliè al servei TDX ni al Dipòsit Digital de la UB. No s’autoritza la presentació del seu contingut en una finestra o marc aliè a TDX o al Dipòsit Digital de la UB (framing). Aquesta reserva de drets afecta tant al resum de presentació de la tesi com als seus continguts. En la utilització o cita de parts de la tesi és obligat indicar el nom de la persona autora. ADVERTENCIA. La consulta de esta tesis queda condicionada a la aceptación de las siguientes condiciones de uso: La difusión de esta tesis por medio del servicio TDR (www.tdx.cat) y a través del Repositorio Digital de la UB (diposit.ub.edu) ha sido autorizada por los titulares de los derechos de propiedad intelectual únicamente para usos privados enmarcados en actividades de investigación y docencia. No se autoriza su reproducción con finalidades de lucro ni su difusión y puesta a disposición desde un sitio ajeno al servicio TDR o al Repositorio Digital de la UB.
    [Show full text]
  • A Live Linux Based on KNOPPIX/DEBIAN with Special Emphasis on Scientific Packages Including ROOT Motivation (Students)
    ● Debian ROOT packages by ROOT team and Chr. H. Christensen ● Collaboration of Helmut Wolters (german), Vinc. Vangoni (Italian), Pedro Ferreia (French), Oscar Diaz Fouces (Spanish) ... PAIPIX: a live linux based on KNOPPIX/DEBIAN with special emphasis on scientific packages including ROOT Motivation (students) ● A live system requiring no installation ● Including latex to be able to undestand the source arXiv scientific papers. ● Including code development environments ● It should also support portuguese State of the art Several live systems available based either on Debian: KNOPPIX...or Gentoo. The major Linux releases like REDHAT or SUSE include a live DVD. While KNOPPIX was by far the best and most used, it did not met our goals Motivation (Supplement) The informatics people at my University discouraged me to do anything.... Choices ● Compressed file system of KNOPPIX seemed the best ● There was information around on how to extend modify the CD images ● It was based on the powerful and free Debian system ● Including only full Latex implied already to go from CD to DVD ● Once we opted for DVD the road was open to include: ●Scientific applications available in Debian ●New scientific applications by creating Debian packages ●Also the SERVER tools like web, database and Content M. Systems ●Nice things to help interesting the students like ... games ● Once installed on disk it becomes normal DEBIAN Scientific Packages Selected from Debian Development/ Prog. Visual Studio e .net gcc; g++; g77; .. Kdevelop Development Debuger and profiler Visual Studio e .net ddd valgrind Development Development (test) Visual Fortran and .net gcc-4.0; g++-4.0; gfortran-4.0; g95 Development fortran Java JDK Sun ..
    [Show full text]
  • Linux Box — Rev
    Linux Box | Rev Howard Gibson 2021/03/28 Contents 1 Introduction 1 1.1 Objective . 1 1.2 Copyright . 1 1.3 Why Linux? . 1 1.4 Summary . 2 1.4.1 Installation . 2 1.4.2 DVDs . 2 1.4.3 Gnome 3 . 3 1.4.4 SElinux . 4 1.4.5 MBR and GPT Formatted Disks . 4 2 Hardware 4 2.1 Motherboard . 5 2.2 CPU . 6 2.3 Memory . 6 2.4 Networking . 6 2.5 Video Card . 6 2.6 Hard Drives . 6 2.7 External Drives . 6 2.8 Interfaces . 7 2.9 Case . 7 2.10 Power Supply . 7 2.11 CD DVD and Blu-ray . 7 2.12 SATA Controller . 7 i 2.13 Sound Card . 8 2.14 Modem . 8 2.15 Keyboard and Mouse . 8 2.16 Monitor . 8 2.17 Scanner . 8 3 Installation 8 3.1 Planning . 8 3.1.1 Partitioning . 9 3.1.2 Security . 9 3.1.3 Backups . 11 3.2 /usr/local . 11 3.3 Text Editing . 11 3.4 Upgrading Fedora . 12 3.5 Root Access . 13 3.6 Installation . 13 3.7 Booting . 13 3.8 Installation . 14 3.9 Booting for the first time . 17 3.10 Logging in for the first time . 17 3.11 Updates . 18 3.12 Firewall . 18 3.13 sshd . 18 3.14 Extra Software . 19 3.15 Not Free Software . 21 3.16 /opt . 22 3.17 Interesting stuff I have selected in the past . 22 3.18 Window Managers . 23 3.18.1 Gnome 3 .
    [Show full text]
  • Complete Issue 25:0 As One
    TEX Users Group PREPRINTS for the 2004 Annual Meeting TEX Users Group Board of Directors These preprints for the 2004 annual meeting are Donald Knuth, Grand Wizard of TEX-arcana † ∗ published by the TEX Users Group. Karl Berry, President Kaja Christiansen∗, Vice President Periodical-class postage paid at Portland, OR, and ∗ Sam Rhoads , Treasurer additional mailing offices. Postmaster: Send address ∗ Susan DeMeritt , Secretary changes to T X Users Group, 1466 NW Naito E Barbara Beeton Parkway Suite 3141, Portland, OR 97209-2820, Jim Hefferon U.S.A. Ross Moore Memberships Arthur Ogawa 2004 dues for individual members are as follows: Gerree Pecht Ordinary members: $75. Steve Peter Students/Seniors: $45. Cheryl Ponchin The discounted rate of $45 is also available to Michael Sofka citizens of countries with modest economies, as Philip Taylor detailed on our web site. Raymond Goucher, Founding Executive Director † Membership in the TEX Users Group is for the Hermann Zapf, Wizard of Fonts † calendar year, and includes all issues of TUGboat ∗member of executive committee for the year in which membership begins or is †honorary renewed, as well as software distributions and other benefits. Individual membership is open only to Addresses Electronic Mail named individuals, and carries with it such rights General correspondence, (Internet) and responsibilities as voting in TUG elections. For payments, etc. General correspondence, membership information, visit the TUG web site: TEX Users Group membership, subscriptions: http://www.tug.org. P. O. Box 2311 [email protected] Portland, OR 97208-2311 Institutional Membership U.S.A. Submissions to TUGboat, Institutional Membership is a means of showing Delivery services, letters to the Editor: continuing interest in and support for both TEX parcels, visitors [email protected] and the TEX Users Group.
    [Show full text]
  • The Kile Handbook
    The Kile Handbook Jonathan Pechta, Federico Zenith, Holger Danielsson, Thomas Braun, and Michel Ludwig The Kile Handbook 2 Contents 1 Preface1 1.1 Requirements . .1 1.2 Intended Audience . .1 2 Introduction3 2.1 Basic facts . .3 2.1.1 About Kile . .3 2.1.2 Kile and Kate . .3 A 2.1.3 What is L TEX........................3 2.1.4 How do you pronounce it? Why that strange typesetting?4 A 2.2 L TEX101...............................4 2.3 Kile’s Main Features . .5 2.3.1 QuickStart Wizard . .5 2.3.2 Predefined Templates . .5 2.3.3 Syntax Highlighting . .6 2.3.4 Auto-Completion of Environments . .6 2.3.5 Jump to Structure Element . .6 2.3.6 Inverse Search . .7 2.3.7 Forward Search . .7 2.4 The Toolbar . .7 3 Quickstart 11 A 3.1 Writing a L TEX Document with Kile for Beginners . 11 3.2 Environments . 12 3.3 Using Kile . 12 3.4 DVI Files . 13 3.4.1 Viewing a DVI . 13 The Kile Handbook 3.4.2 Printing a DVI . 13 3.4.3 Converting DVI files . 14 3.5 Forward Search between Kile and Okular . 14 3.6 Inverse Search between Kile and Okular . 14 3.7 Resolving Errors . 15 4 Starting a New Document 16 4.1 Templates . 17 4.1.1 Create a New Template . 17 4.1.2 Configuring Automatic Substitutions . 17 4.1.3 Create a Template from the Wizard . 17 4.1.4 Creating a Template from any File . 18 4.1.5 Removing a Template .
    [Show full text]
  • 1. Why POCS.Key
    Symptoms of Complexity Prof. George Candea School of Computer & Communication Sciences Building Bridges A RTlClES A COMPUTER SCIENCE PERSPECTIVE OF BRIDGE DESIGN What kinds of lessonsdoes a classical engineering discipline like bridge design have for an emerging engineering discipline like computer systems Observation design?Case-study editors Alfred Spector and David Gifford consider the • insight and experienceof bridge designer Gerard Fox to find out how strong the parallels are. • bridges are normally on-time, on-budget, and don’t fall ALFRED SPECTORand DAVID GIFFORD • software projects rarely ship on-time, are often over- AS Gerry, let’s begin with an overview of THE DESIGN PROCESS bridges. AS What is the procedure for designing and con- GF In the United States, most highway bridges are budget, and rarely work exactly as specified structing a bridge? mandated by a government agency. The great major- GF It breaks down into three phases: the prelimi- ity are small bridges (with spans of less than 150 nay design phase, the main design phase, and the feet) and are part of the public highway system. construction phase. For larger bridges, several alter- There are fewer large bridges, having spans of 600 native designs are usually considered during the Blueprints for bridges must be approved... feet or more, that carry roads over bodies of water, preliminary design phase, whereas simple calcula- • gorges, or other large obstacles. There are also a tions or experience usually suffices in determining small number of superlarge bridges with spans ap- the appropriate design for small bridges. There are a proaching a mile, like the Verrazzano Narrows lot more factors to take into account with a large Bridge in New Yor:k.
    [Show full text]
  • Managing Bibliographies with LATEX Lapo F
    36 TUGboat, Volume 30 (2009), No. 1 Multiple citations can be added by separating Bibliographies with a comma the bibliographic keys inside the same \cite command; for example \cite{Goossens1995,Kopka1995} Managing bibliographies with LATEX Lapo F. Mori gives Abstract (Goossens et al., 1995; Kopka and Daly, 1995) The bibliography is a fundamental part of most scien- Bibliographic entries that are not cited in the tific publications. This article presents and analyzes text can be added to the bibliography with the the main tools that LATEX offers to create, manage, \nocite{key} command. The \nocite{*} com- and customize both the references in the text and mand adds all entries to the bibliography. the list of references at the end of the document. 2.2 Automatic creation with BibTEX A 1 Introduction BibTEX is a separate program from LTEX that allows creating a bibliography from an external database Bibliographic references are an important, sometimes (.bib file). These databases can be conveniently fundamental, part of academic documents. In the shared by different LATEX documents. BibTEX, which past, preparation of a bibliography was difficult and will be described in the following paragraphs, has tedious mainly because the entries were numbered many advantages over the thebibliography envi- and ordered by hand. LATEX, which was developed ronment; in particular, automatic formatting and with this kind of document in mind, provides many ordering of the bibliographic entries. tools to automatically manage the bibliography and make the authors’ work easier. How to create a 2.2.1 How BibTEX works A bibliography with LTEX is described in section2, BibTEX requires: starting from the basics and arriving at advanced 1.
    [Show full text]
  • Building a Custom Linux with the Nimblex Live CD Generator
    COVER STORY Custom NimbleX EASYBuilding a custom Linux with BUILDER the NimbleX Live CD Generator If you want customization without CD image on the basis of your specifica- Linux systems. It presents the user with tions. By simply selecting applications a series of choices defining the charac- all the fuss, then try building your from a series of menus, the Live CD teristics of the system and generates an Generator resolves own custom ISO image with the any dependencies behind the scenes. web-based Custom NimbleX Live Getting CD Generator. Started BY THOMAS PELKMANN Because the Live CD Generator is designed for speed imbleX [1] is a minimal Linux and ease of use, it distribution based on Slackware. does not offer the NThe compact NimbleX system full range of op- is used primarily for Live CDs and USB tions available if sticks, and according to the website, you are building a NimbleX also runs well from the hard complete system drive or even over the network. But per- from scratch. The haps the most interesting feature of Nim- tool resembles the bleX is the custom CD generation service graphical installa- Figure 1: The Live CD Generator starts with a simple welcome screen. available through the project website tion wizard in- The green progress indicator shows how much disk space your distri- [2]. The Custom NimbleX Live CD Gen- cluded with many bution needs. erator lets you select the components conventional and applications you want to include in the system, then it generates a Live www,sxc.hu 36 ISSUE 88 MARCH 2008 036-038_nimblx.indd 36 17.01.2008 14:54:06 Uhr Custom NimbleX COVER STORY Figure 2: The Custom and Recommended customization levels let Figure 3: Select wallpaper for your desktop or upload your own back- you add applications to the minimal system.
    [Show full text]
  • [MS-KILE]: Kerberos Protocol Extensions
    [MS-KILE]: Kerberos Protocol Extensions Intellectual Property Rights Notice for Open Specifications Documentation . Technical Documentation. Microsoft publishes Open Specifications documentation (“this documentation”) for protocols, file formats, data portability, computer languages, and standards support. Additionally, overview documents cover inter-protocol relationships and interactions. Copyrights. This documentation is covered by Microsoft copyrights. Regardless of any other terms that are contained in the terms of use for the Microsoft website that hosts this documentation, you can make copies of it in order to develop implementations of the technologies that are described in this documentation and can distribute portions of it in your implementations that use these technologies or in your documentation as necessary to properly document the implementation. You can also distribute in your implementation, with or without modification, any schemas, IDLs, or code samples that are included in the documentation. This permission also applies to any documents that are referenced in the Open Specifications documentation. No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. Patents. Microsoft has patents that might cover your implementations of the technologies described in the Open Specifications documentation. Neither this notice nor Microsoft's delivery of this documentation grants any licenses under those patents or any other Microsoft patents. However, a given Open Specifications document might be covered by the Microsoft Open Specifications Promise or the Microsoft Community Promise. If you would prefer a written license, or if the technologies described in this documentation are not covered by the Open Specifications Promise or Community Promise, as applicable, patent licenses are available by contacting [email protected].
    [Show full text]
  • The Kile Handbook
    The Kile Handbook Jonathan Pechta Federico Zenith Holger Danielsson Thomas Braun Michel Ludwig Felix Mauch The Kile Handbook 2 Contents 1 Preface 9 1.1 Requirements . .9 1.2 Intended Audience . .9 2 Introduction 10 2.1 Basic facts . 10 2.1.1 About Kile . 10 2.1.2 Kile and the Kate Editor Component . 10 A 2.1.3 What is L TEX?................................... 10 2.1.4 How do you pronounce it? Why that strange typesetting? . 10 A 2.2 L TEX101.......................................... 11 2.3 Kile’s Main Features . 11 2.3.1 QuickStart Wizard . 11 2.3.2 Predefined Templates . 12 2.3.3 Syntax Highlighting . 12 2.3.4 Auto-Completion of Environments . 12 2.3.5 Jump to Structure Element . 13 2.3.6 Inverse Search . 13 2.3.7 Forward Search . 13 2.4 The Toolbar . 13 3 Quickstart 17 A 3.1 Writing a L TEX Document with Kile for Beginners . 17 3.2 Environments . 18 3.3 Using Kile . 18 3.4 DVI Files . 19 3.4.1 Viewing a DVI . 19 3.4.2 Printing a DVI . 19 3.4.3 Converting DVI files . 19 3.5 Forward Search between Kile and Okular . 19 3.6 Inverse Search between Kile and Okular . 19 3.7 Resolving Errors . 20 The Kile Handbook 4 Starting a New Document 21 4.1 Templates . 21 4.1.1 Create a New Template . 21 4.1.2 Configuring Automatic Substitutions . 22 4.1.3 Create a Template from the Wizard . 22 4.1.4 Creating a Template from any File .
    [Show full text]
  • TROGUARD: Context-Aware ProtecOn Against Web-Based Socially Engineered Trojans
    TROGUARD: Context-Aware Protec6on Against Web-Based Socially Engineered Trojans Rui Han, Alejandro Mesa, University of Miami Mihai Christodorescu, QualComm Research Saman Zonouz, Rutgers University Mo#va#on • Waterfall screen saver Trojan 2 Mac OS threats Rank Name Percentage 1 Trojan.OSX.FakeCo.a 52% 2 Trojan-DownloaDer.OSX.Jahlav.d 8% 3 Trojan-DownloaDer.OSX.Flashfake.aI 7% 4 Trojan-DownloaDer.OSX.FavDonw.c 5% 5 Trojan-DownloaDer.OSX.FavDonw.a 2% 6 Trojan-DownloaDer.OSX.Flashfake.ab 2% 7 Trojan-FakeAV.OSX.Defma.gen 2% 8 Trojan-FakeAV.OSX.Defma.f 1% 9 Exploit.OSX.Smid.b 1% 10 Trojan-DownloaDer.OSX.Flashfake.af 1% McAfee an6virus solu6on: hVp:www.securelist.com 3 Example Malwares Malware Descripons Plaorm TrojanClicker.VB Trojan socially Windows engineered as adobe .395 flash update and Mac OS X Trojan or Adware socially Windows, Mac Faked An6-Virus engineered as an6-virus so]ware OS X, and Linux Malware socially Android Opfake Browser engineered as Opera Browser Legi6mate applicaons Mac OS X and WireLuker socially engineered with ad-wares and Trojan iOS 4 ContribUons • Answer the ques6on: “Is this program doing what I expected it to do?” • Bridge the seman6c gap between func6onality classes and low level behaviors • Built on 100 Linux app profiles • High detec6on rate on 50 Trojan apps 5 TROGUARD ArchItectUre TROGUARD Offline Dynamic Application Functionality Application Functionality Functionality Class Profile Database Feature Tracing Generation Extraction Application Functionality Profile Database Online Inference of Download Perceived
    [Show full text]
  • Migration from Windows to Linux for a Small Engineering Firm "A&G Associates"
    Rochester Institute of Technology RIT Scholar Works Theses 2004 Migration from Windows to Linux for a small engineering firm "A&G Associates" Trimbak Vohra Follow this and additional works at: https://scholarworks.rit.edu/theses Recommended Citation Vohra, Trimbak, "Migration from Windows to Linux for a small engineering firm A&G" Associates"" (2004). Thesis. Rochester Institute of Technology. Accessed from This Thesis is brought to you for free and open access by RIT Scholar Works. It has been accepted for inclusion in Theses by an authorized administrator of RIT Scholar Works. For more information, please contact [email protected]. Migration from Windows to Linux for a Small Engineering Firm "A&G Associates" (H ' _T ^^L. WBBmBmBBBBmb- Windows Linux by Trimbak Vohra Thesis submitted in partial fulfillment of the requirements for the degree of Master of Science in Information Technology Rochester Institute of Technology B. Thomas Golisano College of Computing and Information Sciences Date: December 2, 2004 12/B2/28B2 14:46 5854752181 RIT INFORMATION TECH PAGE 02 Rochester Institute of Teehnology B. Thomas Golisano College of Computing and Information Sciences Master of Science in Information Technology Thesis Approval Form Student Name: Trimbak Vohra Thesis Title: Migration from Windows to Unux for a Small Engineeriog Firm "A&G Associates" Thesis Committee Name Signature Date Luther Troell luther IrQell, Ph.D ttL ",j7/Uy Chair G. L. Barido Prof. ~~orge Barido ? - Dec:. -cl7' Committee Member Thomas Oxford Mr. Thomas OxfocQ \ 2. L~( Q~ Committee Member Thesis Reproduction Permission Form Rochester Institute of Technology B. Thomas Golisano College of Computing and Information Sciences Master of Science in Information Technology Migration from Windows to Linux for a Small Engineering Firm "A&G Associates" I,Trimbak Vohra, hereby grant permission to the Wallace Library of the Rochester Institute of Technology to reproduce my thesis in whole or in part.
    [Show full text]