Next Article in Journal
Laser Welding on Cerclage Wire Joining in Femur Surgery
Next Article in Special Issue
An Approach to Knowledge Base Completion by a Committee-Based Knowledge Graph Embedding
Previous Article in Journal
Air Quality Prediction in Smart Cities Using Machine Learning Technologies Based on Sensor Data: A Review
Previous Article in Special Issue
A Noval Weighted Meta Graph Method for Classification in Heterogeneous Information Networks
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Automatic Classification of Web Images as UML Static Diagrams Using Machine Learning Techniques

Knowledge Reuse Group, Departamento de Informática, Universidad Carlos III de Madrid. Av. Universidad 30, 28911 Leganés (Madrid), Spain
*
Author to whom correspondence should be addressed.
Appl. Sci. 2020, 10(7), 2406; https://doi.org/10.3390/app10072406
Submission received: 14 February 2020 / Revised: 25 March 2020 / Accepted: 30 March 2020 / Published: 1 April 2020
(This article belongs to the Special Issue Knowledge Retrieval and Reuse)

Abstract

:

Featured Application

The tool presented in this paper is useful in improving the effectiveness of common web search engines like Google Images. The tool is also useful for searching private repositories in an organization, when metadata are not available. The development of a UML-oriented information retrieval tool can easily be expanded to applications in different domains.

Abstract

Our purpose in this research is to develop a method to automatically and efficiently classify web images as Unified Modeling Language (UML) static diagrams, and to produce a computer tool that implements this function. The tool receives a bitmap file (in different formats) as an input and communicates whether the image corresponds to a diagram. For pragmatic reasons, we restricted ourselves to the simplest kinds of diagrams that are more useful for automated software reuse: computer-edited 2D representations of static diagrams. The tool does not require that the images are explicitly or implicitly tagged as UML diagrams. The tool extracts graphical characteristics from each image (such as grayscale histogram, color histogram and elementary geometric forms) and uses a combination of rules to classify it. The rules are obtained with machine learning techniques (rule induction) from a sample of 19,000 web images manually classified by experts. In this work, we do not consider the textual contents of the images. Our tool reaches nearly 95% of agreement with manually classified instances, improving the effectiveness of related research works. Moreover, using a training dataset 15 times bigger, the time required to process each image and extract its graphical features (0.680 s) is seven times lower.

1. Introduction

The Unified Modeling Language (UML) was born in the early 1990s with the intent of merging various traditions of software modeling into a single graphical, general-purpose language. As its three original authors posed it, the purpose of the UML was to provide a standard way to specify, visualize, document, modify and construct the design of a (software) system [1]. The Object Management Group (OMG) soon started a standardization process that produced the first versions of the language specification in the late 1990s (UML 1.1 in 1997). After several minor revisions, UML 1.x was replaced by UML 2.x in 2005; the latest versions are UML 2.5 (released in May 2015) and 2.5.1 (released in December 2017 [2]). During the past two decades, the UML has been progressively adopted by the software industry, so that it has become a de facto standard, usually taught in undergraduate university courses in software engineering, and with a plethora of scientific journals and conferences around it.
Model Driven Engineering (MDE) (also called Model Driven Development, MDD) was a subsequent OMG initiative, whose central idea was to shift the emphasis in the software development process from source code to software models [3,4]: planning, estimating, reuse, maintenance, production, simulation and so on. This initiative is of great importance for a software development process based on model transformations to be truly iterative: integration and coherence of all phases of development, models synchronized at all levels, etc. The application of MDE is growing in the development of software systems (or hardware–software combinations), as long as new methodologies and tools are available to manipulate software models. In particular, MDE has also moved the center of interest in the area of software reuse towards models and associated modeling artifacts, instead of sheer code. However, a practical adoption of fruitful reuse practices demands specific tools to classify and retrieve software models, which is not a simple task, due to the fact that models and diagrams are not sequential text-structures, but multidimensional artifacts made of a combination of text and logical relationships [5,6].
UML defines a variety of diagram types that inherit and develop different notations that have existed for years, such as entity–relationship diagrams and statecharts. Diagrams are graphs made up of nodes of various forms (rectangles, ellipses, etc.), typically with some structured text inside, and labeled arcs with terminators such as arrowheads. Diagrams may be static or dynamic (with several subtypes each), representing different aspects or views of a software system. Essentially, static diagrams represent the structure of the system and its parts, and dynamic diagrams represent its temporal evolution and behavior. There are different kinds of models in software engineering: analysis and design models, structural and behavioral models and others, so it is of major importance to understand the meaning of each kind of model, how they are related and how they evolve [7]. A system’s model is usually represented by a combination of various diagram types that provide different architectural views to achieve a comprehensive understanding of the system. The most widely used diagram type in software development is the class diagram, which is a kind of static diagram. It is typically used at different levels of abstraction to represent, for example, the information model or logical view of the system (high level) or the structure of the implementation code (low level).
UML diagrams can be produced through a variety of means, from simple drawing tools to fully developed computer assisted software engineering (CASE) tools that can check the syntax and coherence between diagrams, and even produce executable code. Models can then be stored in public or proprietary repositories that are conformant to the UML metamodel and can offer their own classification and retrieval facilities to manage them and, in particular, reuse their contents. These repositories are useful both for academic research and for industrial developments. However, even if there exists an OMG standard format to store models (XMI, XML Metadata Interchange [8]), the compatibility of many commercial tools is not assured. Moreover, it is very common to insert the diagrams in software documentation in a purely graphical format (bitmap images), where explicit compliance with the UML metamodel is lost. The large amount of these kinds of images on the web makes the possibility to retrieve their modeling information for reuse purposes very interesting. However, this task presents notable difficulties broadly pertaining to these two categories:
  • Image retrieval. In order to achieve an effective retrieval, images should be conveniently tagged so that web crawlers can classify and index them, but this rarely happens. Therefore, images must be located based on their surrounding text, which can refer (or not refer) to the image contents, and can provide (or not provide) the necessary or desired search arguments. This implies that a lot of noise (lack of precision) or a lot of silence (lack of recall) is usually obtained.
  • Information extraction. Once the bitmap image is retrieved, it must be converted to a UML-compliant format in order to extract its modeling information. This task requires the use of artificial vision techniques, whose effectiveness is highly dependent on the quality of the image and embedded text, its level of compliance to the UML specification (very often informally followed), and so on.
In this work we focus on the first category of problems, leaving the second category for future research. Our approach to improve the precision and recall of the retrieval of images representing UML diagrams is based on well-known machine learning techniques, as explained later: we had a computer tool learn from a previous human-made classification of images. Therefore, our work’s intent is not to improve machine learning techniques, but rather to devise a novel application to the field of web image retrieval, with huge potential for software reuse.
The rest of the paper is structured as follows. Section 2 further develops the motivation and expected benefits from this research, and gives an outline of the method we have developed. Section 3 reviews the related work on automatic recognition of UML diagrams, either using machine learning techniques or not. Section 4 reports the main graphical characteristics of images that can be effectively used to classify them as diagrams, and describes our method to identify straight lines and rectangles, which is key to obtain results with computational efficiency. Section 5 shows that a simple combination of metrics is insufficient to discriminate between diagrams and non-diagrams, thus justifying the use of machine learning techniques to build an easily computable discrimination function. Section 6 explains the construction of the automatic rule-based classifier that solves the problem of computing the concrete intervals for each metric and the combination of metrics, using well-known machine learning techniques (rule induction). Section 7 describes the experiments and results we obtained in precision, recall and accuracy, also showing some examples of individual rules that build up the automatic classifier. Section 8 presents the i2m classification tool and how we plan to develop it in the future. Finally, Section 9 offers some concluding remarks.
This paper is an extended version of a previous paper presented at the 4th Spanish Conference in Information Retrieval [9]. That version was constrained due to its rather short length, and the authors could not explain in sufficient detail the grounds of our contribution. In this version, we display a richer context about UML, MDD, class diagrams and model repositories (Section 1), as well as a much more thorough exposition of the results of previous works from other researchers (Section 3). We also give a new in-depth explanation of the principles of rectangle identification (Section 4) and an explanation of classification functions in a hyperspace of features that justifies the reasonableness of the rule induction approach (Section 5). The description of the rule induction process was enriched with the mathematical formulation of the problem in terms of search-based software engineering, and with a fully detailed textual and graphical explanation of the two stages of the process, namely rule inference and rule application (Section 6). Finally, a comparison with previous research was completed with detailed numerical data that support our claim about the better performance of our work (Section 9).

2. Motivation and Outline of Method

Our purpose in this research is to develop a method for the automatic and efficient classification of web images as UML static diagrams, and to produce a computer tool that implements this function. The tool receives a bitmap file (in different formats) as an input and indicates whether the image corresponds to a diagram.
This tool is useful as long as it improves the effectiveness of common image search engines (measured as accuracy, i.e., percentage of agreement between automatic and manual classification). For example, Google currently offers the possibility of an advanced search of images with a filter set to “line drawing”. Using this filter, a generic search argument such as “control system” provides nearly no results that can be recognized as software engineering diagrams. Simply adding “uml” to the search argument dramatically increases the success of the search in the first obtained results with Google Images (nearly 100%), but after the first dozens of results the precision drops to around 90%. This is not that bad, but we can improve it. In fact, adding “uml” to the search argument is a lot more relevant to the results than using the line drawing filter.
However, adding “uml” (or a similar term) to the search argument will detect only those images that either have been manually labeled with this tag, or that are surrounded by text that contains it. Our tool, instead, does not require that the images are explicitly or implicitly tagged as UML diagrams, therefore offering the additional advantage that the search argument can be more specific of the problem at hand; a search argument like “control system”, without “uml” or similar tags, will produce results where images that are not UML diagrams are filtered out, with a higher degree of precision.
The tool can be used, then, in several ways. First, it can be connected to the output of a generic search engine (such as Google), without using the line “drawing filter” or the “uml” tag. The initial result set is provided by the search engine, therefore using the tool will not improve its recall; however, the precision of the results will improve (as our experiments show), since more false positives will be discarded. In other words, using this tool will avoid noise (higher precision), but avoiding silence will still depend on the search engine used (equal recall).
Second, the tool can be integrated in a specific UML-oriented search engine. In fact, we are developing such a search engine, including a web crawler that indexes UML diagrams with the potential to improve not only precision, but also recall. In this paper we present the classification tool in isolation, but it is, in fact, part of a larger information retrieval project whose developments will be published in the future.
The tool is also useful when employed to search private repositories in an organization. In general, the utility of such a tool is manifested in a context of software reuse, where the capability to correctly identify software engineering artifacts such as analysis or design diagrams is most beneficial. Once the artifact is located, the next step in a reuse context would be extracting the information it contains in a format that is directly conformant to the UML metamodel, so that the output can be further processed to develop new software. Moreover, other related artifacts that are linked to the identified diagram through traceability links in the private repository (such as code implementations) can also be retrieved and reused. However, in this paper, we consider neither the problem of information extraction from the diagram, nor that of retrieving related artifacts, focusing only on the correct classification of images as diagrams. Of course, if the local repository were made up with files produced with modeling CASE tools, the classification, retrieval and extraction of relevant information would be a lot easier, and a tool to classify images and extract information from them would not be necessary. However, we believe that the local repository could also include bitmap images, or even diagrams produced with general drawing tools (perhaps prior to the adoption of a specific CASE tool by the organization). It could be the case, also, that the organization’s policy for information dissemination among its departments does not consider the automatic sharing of information, but only considers sharing documents in generic human readable formats such as PDF or HTML; in those cases metadata will not be enough for effective retrieval and our tool will be most useful.
Our work is limited to bitmap images (or, more specifically, pixmap images, i.e., spatially mapped arrays of colored pixels), either uncompressed bitmaps such as BMP or compressed formats such as GIF, JPG/JPEG, PNG or TIFF, with a typical resolution for web images of 72–96 dots per inch. We do not consider, instead, vector graphics. The work is also limited to UML static diagrams (classes, components) which are mainly made of straight lines and rectangles, leaving diagrams that use rounded forms (such as use case diagrams, activity diagrams and statecharts) for future research and development. Since the tool is tuned to detect static diagrams, other diagrams that use mainly straight lines and rectangles (such as sequence diagrams) will produce a certain number of false positives.
More specifically, our hypothesis is that an automatic rule-based classifier obtained through machine learning algorithms can emulate the experts’ classification of images as static UML diagrams. The method we have followed can be roughly described as follows. First, we obtained a sample of nearly 19,000 images from the web (exactly 18,899 items) that resulted from queries in Google Images involving the terms “uml diagram”; then a team of experts manually classified the images as UML static diagrams (Yes/No). The reader is referred to our previous conference paper [9] for the details regarding the criteria followed in this manual classification. Second, we analyzed the main graphical characteristics of images that represent diagrams, such as grayscale histogram, color histogram, elementary geometric forms detected with image recognition techniques (especially rectangles), and so on. Third, using machine learning techniques (rule induction), we selected a combination of characteristics that maximize the effectiveness of the automatic classification. Fourth, we implemented the rules in a tool that is freely available for the public and that can be used to classify new images. The rest of this article explains these steps in detail.

3. Related Work

As we have argued, the existence of large public model repositories would greatly ease model reuse. However, to this day, there are few such repositories available [10]. Some tool vendors (such as Sparx Enterprise Architect and Visual Paradigm) offer their own private repositories on a commercial basis, with two main drawbacks: these repositories only support the native file format of their own CASE tools, and there is no open access for models created by others tools. On the public side, a pioneering repository for model-driven development, called ReMoDD, was proposed and developed by France et al. [11,12]. However, those models are stored as files that have to be downloaded and opened with a compatible CASE tool, or else they are pure PDF files. Consequently, those models are not easily retrievable; users have to search manually for UML diagrams among hundreds of files, with limited search capabilities. In general, there are few examples of good online model repositories that people can consult, and efforts toward repositories of such models have achieved limited success [13]. Therefore, even though several initiatives have been promoted to support the adoption of model repositories in MDE, we are still far from a concrete adoption of them [14].
Keyword-based and content-based retrieval of models from repositories was studied by Bislimovska et al. [15,16]. This is a good testimony of the importance of repositories and retrieval techniques in model-driven engineering. However, this same research is focused only on textual elements of models, i.e., it requires that models are stored in various textual formats, basically XML or its derivations (such as XMI). They do not consider the interpretation of models stored as images.
A recent and extensive study of models stored in various formats in GitHub, combining automatic processing and a lot of manual work, identified 93,596 UML models from 24,717 different repositories, of which 57,822 (61.8%) are images, the rest being files with extensions .xmi or .uml [17]. This confirms the existence of potentially useful and interesting information in repositories that is still difficult to access and reuse; and it also confirms that a large proportion of models is stored as images.
The interest in automatic UML diagram recognition in repositories goes back to the times of appearance of the UML, with an initial emphasis on sketch recognition early in the software design cycle, in order to make the information they contain available to CASE tools [18]. The need of the MDE/MDD community to manage large repositories supporting the effective reuse of modeling artifacts has increased the need for the recognition of tool-made diagrams [14]. However, to our knowledge, the research in this field has been rather scarce up to now, even less using machine learning techniques. Most of the approaches use image processing and pattern recognition methods adapted to particular domains, such as architectural diagrams [19] or finite state automata diagrams [20].
In the domain of UML diagrams, Karasneh and Chaudron have published research on the same problem [21], although they do not use an automatic learning approach, but a fixed set of classification criteria. Their Img2UML tool [22] uses the Aforge.NET framework (an open source C# framework designed for developers and researchers in the fields of computer vision and artificial intelligence, including image processing, neural networks, genetic algorithms, fuzzy logic, machine learning, robotics, etc.). The tool extracts UML class models from pixmap images and exports them into XMI files that can be read by a commercial CASE tool (StarUML). They created a private repository with images collected from the internet together with their corresponding XMI extraction [23]. In this sense, their work covers nearly all the steps we envision for future versions of our tool. However, their tool does not currently solve all the problems they have identified (in particular, OCR recognition of text, recognition of relationships and lack of XMI standardization in tools). Moreover, they use a small number of images to validate the tool (respectively 10 and 200 images in [21] and [22]), reaching 89% accuracy.
A machine learning approach is introduced in the work of Hjaltason and Samúelsson [24], who use 23 image features to train an automatic classifier of class diagrams (CD) using the Support Vector Machine (SVM) algorithm, in this case based on computer vision techniques implemented with aid of the open source image-processing libraries OpenCV and Magick++. They use a training set of 1,300 images downloaded from various online sources, equally divided in CD and non-CD, with an average time of 10 s to process each image and extract the graphical features used by the classification algorithm, reaching a 91.2% accuracy of correct classifications.
The previous two works were continued in Ho-Quang et al. [25], who further investigated image features that can be effectively used to classify images as class diagrams and to train an automatic classifier. They were able to reduce the number of image features from 23 to 19, and the processing time from 10 to 5.84 s, using six different learning algorithms with the same training set of 1,300 images. Each algorithm reaches slightly different results, ranging from 90.7% to 93.2% in accuracy. However, the authors consider specificity followed by sensitivity as the most important measures of effectiveness, thus they point to Logistic Regression and Random Forest as their best candidates.
Finally, Hebig et al. [26] use the same automatic tool developed by [25] with a new set of 19,506 images collected from GitHub and manually classified as CD and non-CD. They do not train the tool again, but they use it as-is to automatically classify the new set of images and compare the accuracy obtained with previous results. Among the six learning algorithms developed by [25] they choose Random Forest because of its best performance. The authors report 98.6% precision and 86.6% recall in positive detections, but from these data alone accuracy cannot be computed (they do not explicitly give the count of true and false positives/negatives). Moreover, these two values are too unbalanced to be considered a good result. They also report 26.5 h of automatic processing time for the 19,506 images, which equates 4.89 s per image. All of these aspects essentially confirm the results obtained by [25].
Table 1 summarizes the results of the examined related works, and Table 2 gives more details about the different algorithms experimented in [25]. As we will show in Section 7, our approach improves these results: we reach a better accuracy (average 94.4%), using less graphical features to automatically classify images (8 features), and with a much lower processing time (less than 1 s per image).

4. Analysis of Graphical Characteristics of Diagrammatic Images

UML diagrams always contain textual information that is most relevant for their interpretation. However, analyzing the textual content of an image is computationally very time-consuming, especially when compared with graphical features that are a lot easier to compute and provide enough information to classify the image as a diagram. Therefore, in this work we do not consider the textual contents of the images.
In our previous conference paper [9], we explained with many examples how a small set of simple graphical features that are very easy to compute can be effectively and efficiently used to classify a given image as a diagram, so that we can avoid the more time consuming identification of other features, such as text or complex geometrical forms. These simple features include the number of different gray tones and colors (histograms), as well as the number of vertical and horizontal straight polylines (solid or dashed), a special case of which is the rectangle, by far the most common geometrical form in UML diagrams. However, the concrete values and combination of rules involving these features, that should be used to discriminate diagrams, is not so easily found by intuition. Therefore we used machine learning techniques to find an optimal combination, as explained in Section 6.
Among the various traditional techniques used in artificial vision to identify straight lines, the most important ones are the following:
  • Radon transform, introduced in 1917 by Johann Radon [27], and widely applicable to tomography.
  • Hough transform, patented by Paul Hough in 1962 and universally used today for identification of lines and other shapes in image analysis in the form that was generalized by Richard Duda and Peter Hart in 1972 [28].
  • Random Sample Consensus (RANSAC) method, published by Fischler and Bolles in 1981 [29], which is an iterative method able to fit a line to a set of points in the presence of noise.
  • Accumulation method and Shift Detection by Restoration (SDR) method by Voss, Suesse and Ortmann [30]. Inspired by the Hough transform, it combines the advantages of Radon and RANSAC methods.
Voss et al. [30] demonstrate that their method improves the computational cost of the previous methods, while retaining the good properties of the Hough transform, such as noise resistance, the ability to detect occluded shapes and the ease of representing a figure with a one-pixel thick edge. N being the number of points (i.e., black or significant pixels) in the image, this method has an order of complexity O(N2) when N random pairs of pixels are searched for straight lines, and an order of complexity O(N3) when all possible pairs are exhaustively searched for.
Our own algorithm takes advantage of the fact that UML class diagrams contain a majority of vertical and horizontal lines. This enables us to achieve a linear order of complexity O(N), which is manifested in the fact that our average processing time is seven times lower than other methods that use standard libraries such as OpenCV and Magick++ (see Section 9), which are based on the Hough transform.
In the rest of this section, we explain in detail the procedure to identify straight lines and rectangles in a computationally efficient way. The first step is to identify the pixels that belong to a vertical or horizontal straight line (a ‘segment’) that is part of a relationship polyline or a rectangle border. The basic image processing procedure is described with greater detail by Moreno et al. [31]. We then identify segments consisting of series of horizontally or vertically contiguous black pixels, allowing for short discontinuities in dashed lines. Each detected segment receives a unique identifier within the diagram. Four cyclically connected segments form a rectangle, which also receives a unique identifier.

4.1. Detection of Line Pixels Against the Background

A pixel belongs to a line if it has a horizontally or vertically adjacent pixel with a gray intensity at least 80 levels above, in a scale from 0 (black) to 255 (white), and diagonal lines are not considered for efficiency [31]. Note that this rule does not classify pixels into two categories: there is not a unique threshold for the whole image that distinguishes black/white pixels. Instead, it only identifies line pixels by comparison with their immediate environment. That means that a given gray level could be interpreted as a ‘line pixel’ in a certain area of the image, and as a ‘background pixel’ in a different area. In this context, ‘background’ means light pixels either outside or inside the UML shapes.
Let us consider the example in Figure 1. It contains a fragment of a rectangle border in dark gray (four pixels wide), surrounded by background in light gray, with a difference of more than 80 gray levels between dark and light gray. The leftmost dark pixels are identified as border pixels because they have adjacent light pixels on the left. This is the same for the uppermost dark pixels, and also for the pixels belonging to the inner border. On the contrary, those dark pixels inside the dark gray area are not identified as border pixels because they do not have light adjacent pixels, that is, a dark line that is wide enough (more than two pixels wide) can produce more than one line of border pixels. We will observe what happens with the “inner borders” later in Section 4.3.
Our work presents a novel approach, with respect to the traditional way, of identifying thresholds and borders, which are not identified in two separate steps (see Section 4.2), but simultaneously in a single processing of the image in order to improve efficiency. Therefore, we do not use a fixed threshold for the whole image, but a dynamic comparison depending on the environment of each pixel. After analyzing the gray histograms in the set of images, a heuristic value of 80 levels was chosen as a good discriminator; adjacent pixels with a difference less than 80 belong to the same area, otherwise, the darker pixel is identified as a line pixel.

4.2. Vertical and Horizontal Segment Identification

The next step is the identification of vertical and horizontal segments that are candidates to be either edges of UML shapes (rectangles) or else relationships between shapes, such as associations or generalizations (remember that we disregard oblique lines for the sake of computational efficiency). Here, we consider only the pixels that have passed the ‘line pixel’ detection filter in the previous step. As mentioned, the detection of line pixels and the identification of segments is actually performed in a single pass on the image to improve efficiency, even if we explain them as two consecutive steps for clarity.
The method consists of scanning the image pixel-by-pixel, downwards and rightwards. When a line pixel is found, the scanning continues first downwards to check whether it belongs to a vertical segment, and then rightwards to check for a horizontal segment. The scanning of a segment stops when it reaches the limits of the image or when more than five consecutive background pixels are found, that is, gaps up to five pixels (a heuristic value) are allowed in order to identify dashed lines and small defects in continuous lines. When an end-pixel is found to belong simultaneously to a vertical and a horizontal segment (with either ‘L’ or ‘T’ connection), then the connection between both segments is identified. Two segment ends that are close enough (less than five pixels apart, heuristic value) are considered as connected, too, in order to avoid false negatives in images with defects and other special cases (see the two inner segments in Figure 1).
Moreover, each segment is stored with the following attributes that will be useful for later processing:
  • Unique sequential ID within the image. The comparison of identifiers of two segments provides information about their relative position within the image. For two vertical segments, the one with lower ID must be to the left of the other, or above. For two horizontal segments, the one with lower ID must be above, or to the left of the other.
  • Position. Cartesian coordinates of the two ends of the segment. The length and orientation (vertical/horizontal) are derived attributes.
  • Density. It is the ratio between the number of line pixels and the total number of pixels. A density of pixels lower than 80% tells the segment is discontinuous.
  • Connected segments. When one of the two end pixels of a segment simultaneously belongs to another segment, then those two segments are connected. This does not include crossing segments, but it does include ‘T’ connections (see Figure 6 at the end of this section).
Figure 2 illustrates four segments that form a rectangle. Since the scanning of pixels is first undertaken downwards and then rightwards, the first segment identified is the left one, then the upper one, then the right one, then the lower one; IDs are assigned accordingly.

4.3. Rectangle Identification

Rectangles are used to represent classes and objects in UML static diagrams, in addition to being part of other more complex shapes such as packages, components and so on. The identification of rectangles is achieved using the vertical and horizontal segments identified according to the previous subsection. The objective is to find four cyclically connected segments whose identifiers go in ascending order (possibly with gaps among them). This last restriction is aimed at obtaining a unique representation of each rectangle as a sequence of its edges, starting with a vertical one. In addition, it is required that the segments are not discontinuous and have a minimum length of 10 pixels (another heuristic value; shorter segments usually are false positives).
A programmed automaton Ap = (Q, I, O, M, δ, q0) [32,33] is used to recognize those sequences of segments that satisfy the mentioned restrictions, where:
Q 
The set of states.
I 
Input, the sequence of vertical and horizontal segments detected.
O 
Output, the sequence of vertical and horizontal segments forming a rectangle.
M 
Adjacency lists (segment connections) and other segment attributes.
δ 
Q × I × Π → Q × O: transition function.
Π 
AI ∪ AM → {TRUE, FALSE}: transition predicate.
AI 
Set of attributes of I.
AM 
Set of attributes of M.
q0 
∈ Q initial state.
Figure 3 represents the programmed automaton, where qi is the state where i consecutive segments are recognized as potential edges of a rectangle, qb is the break state (i.e., the sequence of segments does not complete a rectangle) and Boolean expressions a, b and c are computed on the successive input segments as follows:
a
= currentSegment.continuous
  • AND (currentSegment.length ≥ 10)
  • If current segment is continuous and long enough,
  • then jump to q1, else qb.
  • Left vertical edge.
b
= a
  • AND (previousSegment.id < currentSegment.id)
  • AND currentSegment.connected(previousSegment)
  • If current segment is continuous, long and connected to the previous one,
  • then q2 (or q3) else qb.
  • Upper horizontal edge and right vertical edge.
c
= b
  • AND currentSegment.connected(firstSegment)
  • If current segment is continuous, long, connected to the previous one, and to the first one,
  • then q4 else qb.
  • Lower horizontal edge, completing the four required edges to form a rectangle.
Figure 4 illustrates the process of rectangle recognition with the defined automaton, with an example. In state q1, the automaton found a continuous vertical segment. In state q2, the automaton found a continuous horizontal segment, connected to the first segment and with a greater ID. In state q3, the automaton found a continuous vertical segment, connected to the second segment and with a greater ID. In state q4, the automaton found a continuous horizontal segment, connected to the third segment and with a greater ID, and connected to the first segment.
Once all rectangles present in the image are recognized, we distinguish primary and secondary rectangles. Primary rectangles are not contained by other rectangles; secondary rectangles are contained within other (primary or secondary) rectangles, i.e., their four vertices are enclosed within the limits of another rectangle.
This process is efficient thanks to the way segments are assigned their IDs. A typical UML class symbol contains three compartments (see Figure 5); however, the combination of segments can produce up to five different contained rectangles. The rule, used to assign segment IDs, automatically discards three of them without the need of checking containment (see Figure 6), so that the distinction between primary and secondary rectangles is more efficient.
Figure 6 shows three contained rectangles that are automatically discarded by the automaton, since their third edge belongs to a segment whose ID (No. 3) is lower than its preceding upper segment (respectively No. 4, 5 and 4). This simplification in the number of cases of included rectangles to be examined improves the efficiency in the identification of primary rectangles. This also solves the problem of spurious or duplicate rectangles that can result of the “inner borders” problem (examined in Section 4.1) in a reduced computational time.
Summing up, the feature extraction stage described in this section assumes the following heuristic values for the parameters:
  • Gray difference between line pixels and surrounding pixels: 80 gray levels. Adjacent pixels with a difference less than 80 belong to the same area, otherwise the darker pixel is identified as a line pixel. In other words, a pixel belongs to a line if it has a horizontally or vertically adjacent pixel with a gray intensity at least 80 levels above, in a scale from 0 (black) to 255 (white).
  • Gaps in dashed lines: five pixels. Gaps up to five pixels are allowed in order to identify dashed lines and small defects in continuous lines. Equally, when two segment ends are less than five pixels apart, then these two segments are considered as connected, in order to avoid false negatives in images with defects and other special cases.
  • Density of line pixels in continuous segments: at least 80%. A density of pixels lower than 80% tells the segment is discontinuous. Rectangles identified by the automaton must have all segments continuous.
  • Minimum length for rectangle segments: 10 pixels. In addition to being continuous, it is required by the automaton that the segments belonging to a rectangle have a minimum length of 10 pixels.
  • Minimum length for vertical/horizontal segments: 30 pixels. This parameter is not used in the feature extraction stage, but in the learning algorithm (see Section 6), which distinguishes short and long segments present in the image.
These values are grounded in previous research about image processing in traffic signals [31]. We considered that they are sufficiently well established and that is why we did not include them within the learning approach. On the other hand, allowing the algorithm to learn these values together with the classification rules would make the learning process computationally inefficient. We do not think that the robustness of the system is compromised, as our experimental results show.

5. Classification Functions in the Hyperspace of Graphical Characteristics

Suppose we classify images by their graphical characteristics based on a single variable or metric, for example the number straight lines (NSL) present in the image. We can then formulate a simple rule to transform the metric into a classification, such as “if NSL ≤ 10 then Negative, else Positive”. The rule can be easily refined to account for more classifications, using more intervals in the value of the metric, such as “if NSL ≤ 10 then Negative, else if NSL ≤ 16 then Dubious, else Positive” (see Figure 7). For simplicity, since the argument is easily generalizable to any number of classifications, we will assume in the rest of the paper that the number of levels is only two: Negative or Positive.
Now, suppose we want to combine two different metrics to assign a classification, such as number of rectangles (NR) and number of gray tones (NG). We can represent both variables on the X–Y plane, where each point is an image and the point color is the classification. The simplest way to classify the cloud of points is by a linear combination of the variables, i.e., the traditional method of weighted average of metrics: “if (a*NR + b*NG) ≤ L, then Negative, else Positive”, where a, b and L are convenient values. When the cloud of points is naturally split into two regions separated by a straight line, the values of a, b and L can be easily obtained with simple mathematical methods (see Figure 8). The method generalizes to any number of dimensions (metrics) that define a hyperspace of graphical characteristics split in two regions by a hyperplane.
However, this simplicity is not usually found when the variables present a more complex relationship with the classification, which can be very difficult to estimate a priori (see Figure 9). In these situations, a more convenient yet simple way to combine the metrics is by means of a rectangular region: the classification is Positive inside the region, otherwise it is Negative (or vice versa). Note that the region could be open in one or more sides: “if NR between [10, –] and NG between [2, 40] then Positive, else Negative”. The method is also rather simple and generalizes to hyper-rectangular regions in the hyperspace of graphical characteristics.
The most common case in the combination of metrics, however, is not so simple, and the cloud of points is not easily discriminated by a single (hyper-) rectangle. In these situations, we can still generalize the procedure to a combination of regions that can be better adjusted to the cloud of points (see Figure 10), such as: “if NR between [10, 20] and NG between [2, 40] then Positive, else if NR between [20, –] and NG between [2, 15] then Positive, else Negative”. Note, the regions could be overlapping (requiring that they do not overlap could produce a worse adjustment of the rule, or a more complex rule with more rectangles).
Summing up, the discrimination of regions by means of hyperplanes (Figure 8) is generally very inadequate, and the use of simple rectangular regions (Figure 9) is still insufficient. Instead, a combination of rectangular regions (Figure 10) is a versatile method when the different metrics employed present complex relationships manifested in the clustering of points. The higher the number of regions, the better the adjustment of the discriminating rule to the dataset (avoiding of course an excessive number of regions, which would compromise generality). However, computing the concrete intervals for each metric becomes a difficult problem. This is where machine learning techniques prove particularly useful to generate the rules.

6. Selection of Graphical Characteristics and Rule Induction by Machine Learning Techniques

The discrimination of images representing UML static diagrams is achieved in this project by an automatic classifier that uses data mining techniques of supervised learning. Machine learning techniques are mechanisms used to obtain patterns through the analysis of data. This is a well-known subfield of computer science that evolved from the study of pattern recognition and computational learning theory in artificial intelligence, therefore we provide only a brief explanation. Machine learning explores the construction and study of algorithms that can learn from data, by building a model from example inputs in order to make data-driven predictions or decisions, rather than following strictly static program instructions [34]. On the other hand, Search-Based Software Engineering is an approach in which search-based optimization is applied to software engineering [35]. Machine learning, then, is one of the techniques that can be used to perform search-based software engineering.
Machine learning techniques can be supervised or unsupervised [36,37]:
  • Supervised learning: the algorithm is presented with example inputs and their desired outputs, and the goal is to learn a general function that maps inputs to outputs.
  • Unsupervised learning: the inputs to the learning algorithm are given no output labels, leaving the algorithm on its own to find structure in the inputs.
More specifically, supervised learning is the task of inferring a function from labeled training data, where each input is described by a vector of common attributes (see Figure 11).
The training data consist of a set of training examples, each example consisting of an input object (in our case, the vector of graphical characteristics obtained from an image downloaded from the web) and a desired output value (in our case, the manual classification as a UML static diagram, or not, judged by the expert). The input attributes we have used in this project are:
(1)
Number of gray tones.
(2)
Number of color hues.
(3)
Number of vertical/horizontal segments.
(4)
Number of vertical/horizontal segments at least 30 pixels long.
(5)
Number of horizontal segments at least 30 pixels long.
(6)
Number of vertical segments at least 30 pixels long.
(7)
Number of rectangles.
(8)
Number of main rectangles (not included in other rectangles).
Note, we use the number of vertical/horizontal segments in four different ways, in order to increase their discriminatory power.
A supervised learning algorithm analyzes the training data and infers a generalized function, which can be used for classifying new inputs. The effectiveness of the automatic classifier obtained is then measured against the testing set, which was previously segregated from the initial data, so that training and testing are performed with different datasets.
In terms of search-based software engineering, the optimization problem consists in finding a function of the graphical characteristics (a piecewise function defined by a set of rules), such that it minimizes the distance with the experts’ classification over the set of all images. This can receive the following mathematical formulation:
  • Let P be a set of images, or pictures,   P = { p 1 ,   , p n } .
  • Let C be the classifications over the set of pictures, C = { c 1 , , c n } such that c i   { 0 ,   1 } is the class provided by the experts to picture p i , where 0 represents “not a static diagram” and 1 represents “a static diagram”.
  • Let G be a set of graphical characteristics obtained from pictures,   G = { g 1 , ,   g k } , such that g j : P   ( 1 j k ) .
Goal:
Find a function f :   k { 0 ,   1 } such that it minimizes
i = 1 n |   f ( g 1 ( p i ) , , g k ( p i ) ) c i |
There are several kinds of machine learning techniques. Among them, neural networks are the most widely used today as a de facto standard tool in computer vision. However, as is well known, one of the main drawbacks of neural networks is that they provide black boxes whose only justification for the functions obtained is the effectiveness they reach. Therefore, we selected a different machine learning technique, namely rule induction, because it provides a human-readable decision algorithm that improves the explainability and modifiability of the classification model obtained by a good amount. Even if the neural networks approach could reach better effectiveness, it would be at the price of losing all expressiveness and interpretability of the classification model. In any case, we provide a comparison of experimental results obtained with both approaches in the next section.
Rule induction (or rule inference) techniques are a kind of supervised learning that process input training data and produce a set of IF-THEN rules used to classify the new examples [38,39]. Two main strategies are commonly used:
  • Produce a decision tree and then extract its rules.
  • Generate the rules covering all the examples in a given class, exclude the covered examples and proceed with the next given class, until all classes are covered.
The first strategy is implemented in the C4.5 system [40], which extends the previous ID3 [41]. Other algorithms such as PRISM [42] are based only on covering, whilst PART [43] combines both strategies. These strategies present the following advantages to minimize the impact of unintentional errors in the expert’s classification of the images used as training examples:
  • Robustness against noise due to errors, omissions or insufficient data.
  • Identification of irrelevant attributes.
  • Detection of absent attributes or knowledge gaps.
  • Extraction of expressive and easy to understand rules.
  • Possibility to interpret or modify the produced rules with aid of expert knowledge, or even to incorporate new rules inferred by the experts themselves [44].
In order to improve the effectiveness of the individual classifiers obtained by means of rule induction, ensemble methods construct a set of classifiers and then classify new instances by taking a vote of their decisions (it can be a weighted vote, the mode of the votes, etc.) [45]. The technique has two main variants:
  • Homogeneous classifiers are generated with the same learning algorithm [46]. The main methods are Bagging [47] and Boosting [48].
  • Heterogeneous classifiers, instead, are generated with different learning algorithms. The most used method is Stacking (Stacked Generalization) [49].
We finally chose the Bagging method of homogeneous classifiers on the basis of the rule induction PART algorithm [43] to perform the experiments and obtain the classifiers. We explain the experiments in detail in the next section.
The whole process consists of two main stages: rule inference and rule application. The inference stage can be summarized in the following steps (see Figure 12):
  • Obtain the initial set of images downloaded from the web.
  • Classify the images according to the criteria explained in our previous conference paper [9] (done by human experts).
  • Extract the graphical features described in Section 4 (number of gray and color tones, and number of straight lines and rectangles) (done by the i2m tool extractor).
  • Build the training and testing data for the supervised machine learning algorithm, combining the two previous outputs: each image is represented as a vector of graphical features and human-assigned classification.
  • Launch the rule inference learning algorithm (in our case, run in the Weka tool) to obtain as output the automatic classifier, i.e., the function made of rules that classifies images as UML static diagrams or otherwise, thus emulating the human experts.
Once we have built a validated rule-based classifier, we implement the rules in our tool (see Section 8) and use it in the application stage to automatically classify new images as the emulated human experts would do (see Figure 13):

7. Experiments and Results Obtained

As explained, we applied the rule induction PART algorithm combined with the Bagging approach of homogeneous classifiers. The experiments were implemented in the popular Weka suite [50], keeping its standard default parameter configuration. We used the set of 18,899 images downloaded from the web as training examples, manually classified by the experts as explained in our previous conference paper [9]. From this initial dataset, a combination of rules was extracted with the PART algorithm that can be extrapolated to classify new images.
Some examples of the individual rules automatically obtained are:
IF (number-of-primary-rectangles ≤ 0) AND (number-of-segments ≤ 11)
THEN Negative (it is not a diagram)
This rule classified 9,445 of our 18,899 examples as non-diagrams,
with 55 false negatives (0.6%).
IF (number-of-primary-rectangles > 2) AND (number-of-hues ≤ 6)
THEN Positive (it is a diagram)
This rule classified 176 examples out of 18,899 as diagrams,
with 7 false positives (4%).
As explained, the algorithm provides not only individual rules, but also a function that combines the rules and maximizes the overall results. We performed 10 experiments with the available dataset. In each experiment we used the 794 positive instances (manually classified as UML static diagrams, see our previous conference paper [9]) together with other 794 negative instances (other non-UML static diagrams and non-diagrammatic pictures), randomly chosen, without replacement, from the total set of negative instances. We performed the usual 10-fold cross validation [51], obtaining the classifiers shown in Table 3.
For the purpose of comparison, we repeated the experiments with the neural networks approach, i.e., using the same Bagging method of homogeneous classifiers, this time on a multilayer perceptron (the Weka tool has default options to automatically build the network). The results are shown in Table 4. As can be observed, there is no statistically significant difference between both approaches, that is, both methods are completely equivalent regarding the effectiveness of the classification.

8. The i2m Classification Tool

We developed the experimental i2m (image-to-model) tool according to the principles exposed in this research (see Figure 14). The current version of the tool (i2m v1.0, image-to-model tool: http://i2m.kr.inf.uc3m.es) accepts a bitmap file (in different formats) as the input and deduces whether the image corresponds to a UML static diagram in less than 1 s. More precisely, according to the data of four years working, the average time to extract the graphical features is 715 milliseconds, whilst the time to automatically classify the image is only a few milliseconds, which is negligible by comparison. The tool is freely accessible on the web.

9. Conclusions and Future Work

Even though the usage of machine learning techniques for the emulation of human judgment have been numerous in widely differing contexts, there are scarce references in literature, to our knowledge, that describe their application for image classification as diagrams in the field of software engineering, which is why we consider our research to be a manifestation of a high degree of novelty.
We developed a method and a tool (i2m, image-to-model v1.0, http://i2m.kr.inf.uc3m.es) to classify web images in different formats (BMP, GIF, JPEG, PNG and TIFF) as UML static diagrams, without requiring the images to be explicitly or implicitly tagged as UML diagrams. The tool uses a combination of rules acquired through machine learning techniques on a dataset of nearly 19,000 instances; the rules consider graphical characteristics of images, such as grayscale histogram, color histogram, number of straight lines and rectangles and so on.
Table 5 repeats the information in Table 1 and compares it with our own results. We can observe that our method produces better results in all the items considered:
  • It uses less than half of the graphical attributes to classify diagrams.
  • The training dataset is nearly 15 times bigger (remember, [26] does not use a new dataset to train their classifier, but only to validate the one they borrow from [25]).
  • Accuracy (the percentage of agreement with the manual classification) is higher.
  • Very notably, the time required to process each image and extract its graphical features is seven times lower, due to the fact that we use ad-hoc instead of standard computer vision techniques and libraries.
In Table 6 we compare our average performance with the results of the six algorithms of Ho-Quang et al. already shown in Table 2. We can observe again that our results are generally better in the five metrics exposed. If we compare our results with their best algorithm from the points of view of accuracy or sensitivity, Random Forest, we are still around 5% better in two items (precision for positives, recall for negatives), even if they are 2% better in other two items (recall for positives, precision for negatives). Considered as a single measure, our accuracy is 1% better than theirs, which is not too significant, but nevertheless better. Compared with their favorite algorithm, Logistic Regression (because its highest specificity), we are better in the five metrics, including specificity.
Moreover, we compared the effectiveness achieved by our machine learning approach (rule induction) with a neural network approach (multilayer perceptron) used as a baseline, finding that there is no statistically significant difference (see Table 4 in Section 7). In other words, our approach improves explainability and processing time without losing effectiveness.
With nearly 95% accuracy (percentage of agreement with manually classified instances), this tool is useful for the improvement of the effectiveness of common web image search engines like Google Images. The tool is useful also for searching private repositories in an organization, when metadata are not available.
This research project is focused on the development of a UML-oriented information retrieval tool. However, once the technology has been fully developed, it could easily be expanded to be applied in different and promising domains, such as building plans, electrical circuitry and so on.
We plan to develop future versions of the tool that will implement the following features:
  • Classify a set of images, instead of one-by-one images.
  • Classify other kinds of diagrams (use case diagrams, state transition diagrams and so on).
  • Desktop version with the capability to explore private repositories.
  • Use the output of a generic search engine (such as Google) as an input to the tool, so that the tool is used to further filter the output of the generic search engine and improve its precision.
  • Integrate the image classification tool in a specific UML-oriented search engine, including a web crawler that indexes UML diagrams, with the potential to improve not only precision, but also recall.
  • Extract textual information from the diagram with the aid of OCR technologies. Combine with the previous feature to search the web for specific diagrams containing a given text.
  • Interpret the diagram according to the UML metamodel, producing its output as a model in XMI format.
  • Generate a graphical UML representation of the extracted model.
All these ongoing developments, each one with different degree of completion, form part of a larger UML-oriented information retrieval project.

Author Contributions

Conceptualization, V.M. and G.G.; methodology, V.M., G.G. and A.F.; software, V.M. and M.A.; validation, G.G. and A.F.; formal analysis, V.M. and G.G.; investigation, V.M., M.A. and A.F.; data curation, V.M. and M.A.; writing—original draft preparation, G.G.; writing—review and editing, G.G.; supervision, A.F.; project administration, M.A.; funding acquisition, V.M., M.A. and A.F. All authors have read and agreed to the published version of the manuscript.

Funding

This research has received funding from the CRYSTAL project – Critical System Engineering Acceleration (European Union’s Seventh Framework Program, FP7/2007-2013, ARTEMIS Joint Undertaking grant agreement n° 332830); and from the AMASS project – Architecture-driven, Multi-concern and Seamless Assurance and Certification of Cyber-Physical Systems (H2020-ECSEL grant agreement nº 692474; Spain’s MINECO ref. PCIN-2015-262).

Acknowledgments

We are grateful to the members of the Knowledge Reuse Group who acted as experts to classify the initial set of images downloaded from the web.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Booch, G.; Rumbaugh, J.; Jacobson, I. The Unified Modeling Language User Guide, 2nd ed.; Addison-Wesley: Boston, MA, USA, 2005. [Google Scholar]
  2. Object Management Group. Unified Modeling Language Specification, Version 2.5.1. December 2017. Available online: https://www.omg.org/spec/UML/2.5.1/ (accessed on 5 December 2019).
  3. Booch, G. Growing the UML. Softw. Syst. Model. 2002, 1, 157–160. [Google Scholar] [CrossRef]
  4. Bézivin, J. On the Unification Power of Models. Softw. Syst. Model. 2005, 4, 171–188. [Google Scholar] [CrossRef]
  5. Llorens, J.; Morato, J.; Génova, G. RSHP: An Information Representation Model Based on Relationships. In Soft Computing in Software Engineering (Studies in Fuzziness and Soft Computing Series, Vol. 159); Ernesto, D., Lakhmi, C.J., Mauro, M., Eds.; Springer: Berlin, Heidelberg, 2004; pp. 221–253. [Google Scholar]
  6. Robles, K.; Fraga, A.; Morato, J.; Llorens, J. Towards an Ontology-based Retrieval of UML Class Diagrams. Inf. Softw. Technol. 2012, 54, 72–86. [Google Scholar] [CrossRef]
  7. Génova, G.; Valiente, M.C.; Marrero, M. On the Difference between Analysis and Design, and Why It Is Relevant for the Interpretation of Models in Model Driven Engineering. J. Object Technol. 2009, 8, 107–127. [Google Scholar] [CrossRef] [Green Version]
  8. Object Management Group. XML Metadata Interchange Specification, Version 2.5.1. June 2015. Available online: https://www.omg.org/spec/XMI/2.5.1/ (accessed on 5 December 2019).
  9. Moreno, V.; Génova, G.; Alejandres, M.; Fraga, A. Automatic classification of web images as UML diagrams. In Proceedings of the 4th Spanish Conference in Information Retrieval, Granada, Spain, 14–16 June 2016. [Google Scholar]
  10. Karasneh, B.H.A. An Online Corpus of UML Design Models: Construction and Empirical Studies. Ph.D. Thesis, Leiden University, Leiden, The Netherlands, July 2016. [Google Scholar]
  11. France, R.; Bieman, J.; Cheng, B.H. Repository for Model Driven Development (ReMoDD). In Proceedings of the ACM/IEEE 19th International Conference on Model Driven Engineering Languages and Systems (MoDELS’06), Genoa, Italy, 1–6 October 2006; pp. 311–317. [Google Scholar]
  12. France, R.; Bieman, J.M.; Mandalaparty, S.P.; Cheng, B.H.; Jensen, A.C. Repository for Model Driven Development (ReMoDD). In Proceedings of the 34th International Conference on Software Engineering (ICSE’12), Zurich, Switzerland, 2–9 June 2012; pp. 1471–1472. [Google Scholar]
  13. Whittle, J.; Hutchinson, J.; Rouncefield, M.; Burden, H.; Heldal, R. A taxonomy of tool-related issues affecting the adoption of model-driven engineering. Softw. Syst. Model. 2017, 16, 313–331. [Google Scholar] [CrossRef] [Green Version]
  14. Basciani, F.; Di Rocco, J.; Di Ruscio, D.; Pierantonio, A.; Iovino, L. Model Repositories: Will they become reality? A Position Statement. In Proceedings of the 3rd International Workshop on Model-Driven Engineering on and for the Cloud (CloudMDE’2015). Held in Conjunction with the 18th International Conference on Model Driven Engineering Languages and Systems (MoDELS’2015), Ottawa, Canada, 29 September 2015. [Google Scholar]
  15. Bislimovska, B. Textual and Content Based Search in Software Model Repositories. Ph.D. Thesis, Politecnico di Milano, Milano, Italy, 2014. [Google Scholar]
  16. Bislimovska, B.; Bozzon, A.; Brambilla, M.; Fraternali, P. Textual and Content-Based Search in Repositories of Web Application Models. ACM Trans. Web TWEB 2014, 8, 11. [Google Scholar] [CrossRef]
  17. Robles, G.; Ho-Quang, T.; Hebig, R.; Chaudron, M.R.V.; Fernández, M.A. An extensive dataset of UML models in GitHub. In Proceedings of the 14th International Conference on Mining Software Repositories (MSR’2017), Buenos Aires, Argentina, 20–21 May 2017; pp. 519–522. [Google Scholar]
  18. Lank, E.; Thorley, J.; Chen, S.; Blostein, D. On-line recognition of UML diagrams. In Proceedings of the Sixth International Conference on Document Analysis and Recognition, Seattle, WA, USA, 13 September 2001; pp. 356–360. [Google Scholar]
  19. Maggiori, E.; Gervasoni, L.; Antúnez, M.; Rago, A.; Díaz Pace, J.A. Towards recovering architectural information from images of architectural diagrams. In Proceedings of the XV Simposio Argentino de Ingeniería de Software, Buenos Aires, Argentina, 4–5 September 2014. [Google Scholar]
  20. Babalola, O.T. Automatic Recognition and Interpretation of Finite State Automata Diagrams. Master’s Thesis, Faculty of Science at Stellenbosch University, Stellenbosch, South Africa, December 2015. [Google Scholar]
  21. Karasneh, B.; Chaudron, M.R.V. Extracting UML models from images. In Proceedings of the 5th International Conference on Computer Science and Information Technology CSIT–2013, Amman, Jordan, 27–28 March 2013; pp. 169–178. [Google Scholar]
  22. Karasneh, B.; Chaudron, M.R.V. Img2UML: A system for extracting UML models from images. In Proceedings of the 39th Euromicro Conf. on Software Engineering and Advanced Applications SEAA 2013, Santander, Spain, 4–6 September 2013; pp. 134–137. [Google Scholar]
  23. Karasneh, B.; Chaudron, M.R.V. Online Img2UML repository: An online repository for UML models. In Proceedings of the 3rd International Workshop on Experiences and Empirical Studies in Software Modeling EESSMOD 2013, Miami, FL, USA, 1 October 2013; pp. 61–66. [Google Scholar]
  24. Hjaltason, J.; Samúelsson, I. Automatic Classification of UML Class Diagrams through Image Feature Extraction and Machine Learning. Bachelor Thesis, Department of Computer Science and Engineering, University of Gothenburg, Chalmers University of Technology, Gothenburg, Sweden, June 2014. [Google Scholar]
  25. Ho-Quang, T.; Chaudron, M.R.V.; Samúelsson, I.; Hjaltason, J.; Karasneh, B.; Osman, H. Automatic classification of UML class diagrams from images. In Proceedings of the 21st Asia-Pacific Software Engineering Conference APSEC 2014, Jeju, Korea, 1–4 December 2014; pp. 399–406. [Google Scholar]
  26. Hebig, R.; Ho-Quang, T.; Chaudron, M.R.V.; Robles, G.; Fernández, M.A. The quest for open source projects that use UML: Mining GitHub. In Proceedings of the ACM/IEEE 19th International Conference on Model Driven Engineering Languages and Systems (MoDELS’16), Saint-Malo, France, 2–7 October 2016; pp. 173–183. [Google Scholar]
  27. Deans, S.R. The Radon Transform and Some of Its Applications; John Wiley & Sons: Hoboken, NJ, USA, 1983. [Google Scholar]
  28. Duda, R.O.; Hart, P.E. Use of the Hough Transformation to Detect Lines and Curves in Pictures. Commun. ACM 1972, 15, 11–15. [Google Scholar] [CrossRef]
  29. Fischler, M.A.; Bolles, R.C. Random sample consensus—A paradigm for model fitting with applications to image analysis and automated cartography. Commun. ACM 1981, 24, 381–395. [Google Scholar] [CrossRef]
  30. Voss, K.; Suesse, H.; Ortmann, W. Radon, Hough, Acumulación y el método SDR. Comunicación Técnica No I-04-05. CC/CIMAT; Centro de Investigación en Matemáticas: Guanajuato, Mexico, 2004. [Google Scholar]
  31. Moreno, V.; Ledezma, A.; Sanchis, A. A static images based-system for traffic signs detection. In Proceedings of the 24th IASTED International Multi-Conference on Applied Informatics, Innsbruck, Austria, 13–16 February 2006; pp. 445–450. [Google Scholar]
  32. Flasiński, M. The programmed grammars and automata as tools for a construction of analytic expert systems. Arch. Control Sci. 1995, 40, 5–35. [Google Scholar]
  33. Flasiński, M. Automata-based multi-agent model as a tool for constructing real-time intelligent control systems. In From Theory to Practice in Multi-Agent Systems; Springer: Berlin/Heidelberg, Germany, 2002; pp. 103–110. [Google Scholar]
  34. Bishop, C.M. Pattern Recognition and Machine Learning; Springer: New York, NY, USA, 2006. [Google Scholar]
  35. Harman, M.; Jones, B.F. Search-based software engineering. Inf. Softw. Technol. 2001, 43, 833–839. [Google Scholar] [CrossRef] [Green Version]
  36. Russell, S.; Norvig, P. Artificial Intelligence: A Modern Approach, 2nd ed.; Prentice Hall: Upper Saddle River, NJ, USA, 2003. [Google Scholar]
  37. Weiss, S.M.; Indurkhya, N. Predictive Data Mining: A Practical Guide; Morgan Kaufmann: Burlington, MA, USA, 1998. [Google Scholar]
  38. Clark, P.; Niblett, T. The CN2 induction algorithm. Mach. Learn. 1989, 3, 261–283. [Google Scholar] [CrossRef]
  39. Hong, J.; Mozetic, I.; Michalski, R.S. AQ15: Incremental Learning of Attribute-Based Descriptions from Examples, the Method and User’s Guide, Report ISG 85-5, UIUCDCS-F-86-949; Department of Computer Science, University of Illinois at Urbana-Champaign: Champaign, IL, USA, 1986. [Google Scholar]
  40. Quinlan, J.R. C4.5: Programs for Machine Learning; Morgan Kaufmann: Burlington, MA, USA, 1993. [Google Scholar]
  41. Quinlan, J.R. Induction of Decision Trees (ID3 algorithm). Mach. Learn. 1986, 1, 81–106. [Google Scholar] [CrossRef] [Green Version]
  42. Cendrowska, J. PRISM: An algorithm for inducing modular rules. Int. J. Man Mach. Stud. 1987, 27, 349–370. [Google Scholar] [CrossRef] [Green Version]
  43. Frank, E.; Witten, I.H. Generating accurate rule sets without global optimization. In Proceedings of the 15th International Conference on Machine Learning ICML-98, Madison, WI, USA, 24–27 July 1998; pp. 144–151. [Google Scholar]
  44. Major, J.A.; Mangano, J.J. Selecting among rules induced from a hurricane database. J. Intell. Inf. Syst. 1995, 4, 39–52. [Google Scholar] [CrossRef] [Green Version]
  45. Dietterich, T.G. Machine learning research: Four current directions. Artif. Intell. Mag. 1997, 18, 97–136. [Google Scholar]
  46. Dietterich, T.G. An experimental comparison of three methods for constructing ensembles of decision trees: Bagging, boosting, and randomization. Mach. Learn. 2000, 40, 139–157. [Google Scholar] [CrossRef]
  47. Breiman, L. Bagging predictors. Mach. Learn. 1996, 24, 123–140. [Google Scholar] [CrossRef] [Green Version]
  48. Schapire, R.E. The strength of weak learnability. Mach. Learn. 1990, 5, 197–227. [Google Scholar]
  49. Wolpert, D.H. Stacked generalization. Neural Netw 1992, 5, 241–259. [Google Scholar] [CrossRef]
  50. Witten, I.H.; Frank, E. Data Mining: Practical Machine Learning Tools and Techniques with Java Implementations; Morgan Kaufmann: Burlington, MA, USA, 2000. [Google Scholar]
  51. Kohavi, R. A study of cross-validation and bootstrap for accuracy estimation and model selection. In Proceedings of the 14th International Joint Conference on Artificial Intelligence IJCAI-95, Montreal, QC, Canada, 20–25 August 1995; Volume 2, pp. 1137–1143. [Google Scholar]
Figure 1. Detection of border pixels by comparison with their immediate environment.
Figure 1. Detection of border pixels by comparison with their immediate environment.
Applsci 10 02406 g001
Figure 2. An example of assignment of IDs to segments (IDs between square brackets indicate the IDs of the connected segments).
Figure 2. An example of assignment of IDs to segments (IDs between square brackets indicate the IDs of the connected segments).
Applsci 10 02406 g002
Figure 3. Programmed automaton used to recognize rectangles.
Figure 3. Programmed automaton used to recognize rectangles.
Applsci 10 02406 g003
Figure 4. Example of recognition of a rectangle with the programmed automaton.
Figure 4. Example of recognition of a rectangle with the programmed automaton.
Applsci 10 02406 g004
Figure 5. Identification of primary and secondary (contained) rectangles: two secondary rectangles are discarded.
Figure 5. Identification of primary and secondary (contained) rectangles: two secondary rectangles are discarded.
Applsci 10 02406 g005
Figure 6. Automatic exclusion of contained rectangles: the three rectangles in red do not satisfy the rule for growing IDs of their segments, therefore they are discarded by the automaton.
Figure 6. Automatic exclusion of contained rectangles: the three rectangles in red do not satisfy the rule for growing IDs of their segments, therefore they are discarded by the automaton.
Applsci 10 02406 g006
Figure 7. A simple rule to transform a metric such as the number of straight lines (NSL) into an image classification as static diagram.
Figure 7. A simple rule to transform a metric such as the number of straight lines (NSL) into an image classification as static diagram.
Applsci 10 02406 g007
Figure 8. Combination of two arbitrary metrics using a straight line to discriminate an image in the simplest case (white: Positive, black: Negative).
Figure 8. Combination of two arbitrary metrics using a straight line to discriminate an image in the simplest case (white: Positive, black: Negative).
Applsci 10 02406 g008
Figure 9. Combination of two metrics using a single (open) rectangle to discriminate between Positive (white) and Negative (black) classification.
Figure 9. Combination of two metrics using a single (open) rectangle to discriminate between Positive (white) and Negative (black) classification.
Applsci 10 02406 g009
Figure 10. Combination of two metrics using a combination of rectangular regions to discriminate between Positive (white) and Negative (black) classification.
Figure 10. Combination of two metrics using a combination of rectangular regions to discriminate between Positive (white) and Negative (black) classification.
Applsci 10 02406 g010
Figure 11. Format of the training instances used as input to the learning algorithm. Testing instances have the same format.
Figure 11. Format of the training instances used as input to the learning algorithm. Testing instances have the same format.
Applsci 10 02406 g011
Figure 12. Inference stage: emulating the expert’s classification through machine learning.
Figure 12. Inference stage: emulating the expert’s classification through machine learning.
Applsci 10 02406 g012
Figure 13. Application stage: classifying new images with the generated rule-based classifier.
Figure 13. Application stage: classifying new images with the generated rule-based classifier.
Applsci 10 02406 g013
Figure 14. The i2m (image-to-model) tool.
Figure 14. The i2m (image-to-model) tool.
Applsci 10 02406 g014
Table 1. Comparison of the examined methods to classify images as Unified Modeling Language (UML) static diagrams: number of image attributes used in the classification, number of images used to train/validate the classifier, average time required to process each image, and accuracy (percentage of agreement with the manual classification).
Table 1. Comparison of the examined methods to classify images as Unified Modeling Language (UML) static diagrams: number of image attributes used in the classification, number of images used to train/validate the classifier, average time required to process each image, and accuracy (percentage of agreement with the manual classification).
ResearchNumber of Attributes Number of Images Processing Time/Img. Accuracy
Karasneh and
Chaudron [22]
(not a machine
learning approach)
N/A200N/A89.0%
Hjaltason and Samúelsson [24]231,30010 s91.2%
Ho-Quang
et al. [25]
191,3005.84 s90.7%–93.2%
Hebig et al., 2016 [26]
(same classifier as [25])
1919,5064.89 sN/A
Table 2. Results obtained by Ho-Quang et al. [25] with six different algorithms: precision, recall and accuracy in classifying images as UML static diagrams1. Their best results in boldface. The authors report only sensitivity and specificity (in italics). We backward-computed the rest of values to better compare with our own results.
Table 2. Results obtained by Ho-Quang et al. [25] with six different algorithms: precision, recall and accuracy in classifying images as UML static diagrams1. Their best results in boldface. The authors report only sensitivity and specificity (in italics). We backward-computed the rest of values to better compare with our own results.
AlgorithmPrecision for PositivesRecall for Positives (Sensitivity)Precision for NegativesRecall for Negatives (Specificity)Accuracy
Support Vector Machine0.8940.9240.9210.89090.7%
Random Forest0.9090.9590.9570.90493.2%
J48 Decision Tree0.9030.9250.9230.90191.3%
Logistic Regression0.9130.9020.9030.91490.8%
REP-Tree0.9030.9200.9180.90191.1%
Decision Table0.8970.9190.9170.89590.7%
1Reminder: Precision for positives is the ratio of true positive detections to all positive detections (the complement is the ratio of false positive detections). Recall is the ratio of true positive detections to all existing positives in the dataset (the complement is the ratio of false negative detections). The corresponding calculations can be performed also on the ratio of true negative detections, as shown in the table. Sensitivity is the recall of positives and Specificity is the recall of negatives. Accuracy (or percentage of agreement) is the ratio of true positives plus true negatives to all existing instances.
Table 3. Summary of the results of the classifiers obtained with the 10 experiments: precision, recall and percentage of agreement in classifying images as UML static diagrams.
Table 3. Summary of the results of the classifiers obtained with the 10 experiments: precision, recall and percentage of agreement in classifying images as UML static diagrams.
ExperimentPrecision for Positives Recall for Positives Precision for Negatives Recall for Negatives Percentage of Agreement
10.9560.9280.9300.95794.3%
20.9500.9330.9340.95194.2%
30.9450.9430.9430.94594.4%
40.9650.9360.9380.96695.1%
50.9630.9420.9430.96395.3%
60.9560.9310.9330.95794.4%
70.9360.9230.9240.93793.0%
80.9550.9400.9410.95694.8%
90.9520.9230.9250.95393.8%
100.9530.9290.9310.95594.2%
Average0.9530.9330.9340.95494.4%
Table 4. Results of the classifiers obtained with a multilayer perceptron.
Table 4. Results of the classifiers obtained with a multilayer perceptron.
ExperimentPrecision for PositivesRecall for PositivesPrecision for NegativesRecall for NegativesPercentage of Agreement
10.9530.9270.9290.95594.1%
20.9560.9270.9290.95794.2%
30.9600.9410.9420.96195.1%
40.9610.9230.9260.96294.3%
50.9670.9310.9330.96995.0%
60.9650.9280.9310.96694.7%
70.9370.9240.9250.93893.1%
80.9620.9350.9360.96394.9%
90.9510.9280.9300.95294.0%
100.9600.9320.9340.96194.6%
Average0.9570.9300.9320.95894.4%
Table 5. Comparison of the results of our method with those of related work.
Table 5. Comparison of the results of our method with those of related work.
ResearchNumber of Attributes Number of Images Processing Time/Img. Accuracy
Karasneh and
Chaudron [22]
(not a machine
learning approach)
N/A200N/A89.0%
Hjaltason and Samúelsson [24]231,30010 s91.2%
Ho-Quang
et al. [25]
191,3005.84 s90.7%–93.2%
Hebig et al., 2016 [26]
(same classifier as [25])
1919,5064.89 sN/A
This research818,8990.68 s94.4%
Table 6. Comparison of the results of our method with those of Ho-Quang et al. [25].
Table 6. Comparison of the results of our method with those of Ho-Quang et al. [25].
AlgorithmPrecision for PositivesRecall for Positives (Sensitivity)Precision for NegativesRecall for Negatives (Specificity)Accuracy
Support Vector Machine0.8940.9240.9210.89090.7%
Random Forest0.9090.9590.9570.90493.2%
J48 Decision Tree0.9030.9250.9230.90191.3%
Logistic Regression0.9130.9020.9030.91490.8%
REP-Tree0.9030.9200.9180.90191.1%
Decision Table0.8970.9190.9170.89590.7%
This research0.9530.9330.9340.95494.4%

Share and Cite

MDPI and ACS Style

Moreno, V.; Génova, G.; Alejandres, M.; Fraga, A. Automatic Classification of Web Images as UML Static Diagrams Using Machine Learning Techniques. Appl. Sci. 2020, 10, 2406. https://doi.org/10.3390/app10072406

AMA Style

Moreno V, Génova G, Alejandres M, Fraga A. Automatic Classification of Web Images as UML Static Diagrams Using Machine Learning Techniques. Applied Sciences. 2020; 10(7):2406. https://doi.org/10.3390/app10072406

Chicago/Turabian Style

Moreno, Valentín, Gonzalo Génova, Manuela Alejandres, and Anabel Fraga. 2020. "Automatic Classification of Web Images as UML Static Diagrams Using Machine Learning Techniques" Applied Sciences 10, no. 7: 2406. https://doi.org/10.3390/app10072406

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop