American Journal of Intelligent Systems

p-ISSN: 2165-8978    e-ISSN: 2165-8994

2016;  6(2): 48-58

doi:10.5923/j.ajis.20160602.03

 

Convex Hulls in Image Processing: A Scoping Review

M. A. Jayaram1, Hasan Fleyeh2

1Department of Master of Computer Applications, Siddaganga Institute of Technology, Tumkur, India

2Comuter Engineering Department, School of Technology and Business Studies, Dalarna University, Borlänge, Sweden

Correspondence to: Hasan Fleyeh, Comuter Engineering Department, School of Technology and Business Studies, Dalarna University, Borlänge, Sweden.

Email:

Copyright © 2016 Scientific & Academic Publishing. All Rights Reserved.

This work is licensed under the Creative Commons Attribution International License (CC BY).
http://creativecommons.org/licenses/by/4.0/

Abstract

The demands of image processing related systems are robustness, high recognition rates, capability to handle incomplete digital information, and magnanimous flexibility in capturing shape of an object in an image. It is exactly here that, the role of convex hulls comes to play. The objective of this paper is twofold. First, we summarize the state of the art in computational convex hull development for researchers interested in using convex hull image processing to build their intuition, or generate nontrivial models. Secondly, we present several applications involving convex hulls in image processing related tasks. By this, we have striven to show researchers the rich and varied set of applications they can contribute to. This paper also makes a humble effort to enthuse prospective researchers in this area. We hope that the resulting awareness will result in new advances for specific image recognition applications.

Keywords: Convex hull, Image processing, Image Classification, Image retrieval, Shape detection

Cite this paper: M. A. Jayaram, Hasan Fleyeh, Convex Hulls in Image Processing: A Scoping Review, American Journal of Intelligent Systems, Vol. 6 No. 2, 2016, pp. 48-58. doi: 10.5923/j.ajis.20160602.03.

1. Introduction

Convex hull (CH) is basically an important geometrical problem that could be solved computationally. The problem is all about constructing, developing, articulating, circumscribing or encompassing a given set of points in plane by a polygonal capsule called convex polygon. Justifiably, convex hull problem is combinatorial in general and an optimization problem in particular. Here, convexity refers to the property of the polygon that surrounds the given points making a capsule. A convex polygon is a simple polygon without any self-intersection in which any line segment between two points on the edges ever goes outside the polygon. Lucidly stated, a convex polygon houses a convex set which is a region such that every pair of points is within the region and the line that joins such pair is also within the region. With this definition, a cube, rectangle, regular polygon and the like are convex in nature. Any polygon which has hollowness, dent or extended vertices cannot be convex. A convex curve forms the boundary of a convex set.
Convexity of a polygon is measurable trait that is amenable to the analysis of its shape. Shape is crucial in many areas of scientific analysis such as, object classification and identification [1], biology [2], geomorphology, and powder particle characterization [3]. A vast literature survey revealed that the use of convexity measure for variety of applications such as shape decomposition [4], shape similarity measures, and object indexing [5]. The determination of convex hull of a point set has successfully been applied in application domains such as data mining [6], geographical information systems, pattern recognition [7], artificial intelligence, image processing [8] and medical simulations [9]. Apart from this, convex hull’s applications has spread in to allied areas like ray tracing, path finding, computer visualization, game theory, phase diagrams, static code analysis, verification methods, geometry, detection of outliers in statistics, rotating calipers for computing the width and diameter of a point set, digital terrain model (DTM) generation, triangulated irregular network (TIN) and area dynamic calculation [10]. Interesting enough, a special kind of application of societal interest using this wonderful concept has been in characterizing the spatial extent of animal epidemics outbreak. In this context, the spatial extent of an epidemic is assessed by computing the convex hull enclosing the infected individuals at a given time. The exact evolution equations for the mean perimeter and the mean area of the convex hull have been deduced, and the method is compared with Monte Carlo simulations [11].
At the backdrop of applications of convex hulls in various allied domains, this paper is focused to its vivid applications in the realm of image processing and pattern recognition. The objective of this paper is two folded:
• To explore the intricate applications of convex hulls in the areas mentioned.
• To enthuse the prospective research community to exploit the expanse of convex polygons as tools for newer upcoming applications.
The presentation is organized as follows; Section 2 gives an overall view of traditional approaches to the generation of convex hull. Recent methods of convex hull construction has been brought to fore in section 3,Convex hull aided image registration tasks are presented in Section 4, image classification related applications are presented in Section 5, shape decomposition shape detection, and space partitioning is the essence of Section 6. Section 7 sets the scope of the future applications of this fascinating concept, and the paper concludes in Section 8.

2. Approaches for Generation of Convex Hull

The well-known understanding about convex hull is that it is
Minimal perimeter problem for sets containing a fixed set and Convex hull Co(E) of E is the bounded connected set constituting a minimization problem [12].
Convex hull algorithms are broadly divided into two categories [13]:
i) Graph traversal
ii) Incremental.
The graph traversal algorithms construct CHs by identifying some initial vertices of CH and later finding the remaining points and edges by traversing it in some order. The Gift Wrapping, Graham scan, and Monotone chain are such algorithms. On the other hand, incremental algorithms first find an initial CH and then insert or merge the remaining points, edges or even sub CHs as they are discovered, into current CH sequentially or recursively to obtain the final CH. Quick hull and Divide-and-Conquer algorithms belong to this class.
The following subsections present briefly the classical algorithms mentioned above under the two categories. However, many researchers have developed various minimum convex hull development algorithms [14, 15] as an aside to the traditional algorithms.

2.1. Gift Wrapping Algorithm

The first, and the conceptually simplest convex hull algorithm is due to R. A. Jarvis [16], who published it in 1973, it has O(nh) time complexity, where n is the number of points available in the set and h is the number of points on the convex hull. This algorithm is favorable when n is small or h is expected to be very small with respect to n. In general cases, the algorithm is outperformed by many others. The algorithm gets its name owing to the way the points are processed, very similar to wrapping a string around a bundle.
The algorithm starts with a point which is on the hull, say the left most point and is the current point pi. At each step, all other points in the set are considered and polar angles (Zenith angle or colatitudes) of the segments formed are found. Using these angles, the point pi+1 is picked such that all the other points are to the right of the segment. Figure 1 shows the pseudo code and the graphic illustration of the algorithm.

2.2. Graham Scan Algorithm

Graham’s algorithm [17] is a sequential algorithm used to determine convex hull of a set of n points in the plane (n≥ 3). This algorithm has the complexity of O (n log n). The algorithm selects an interior point x and without loss of generality assumes that no three points of the set including x are collinear. The first step of Graham’s algorithm is to construct a sequence of the points in polar coordinates ordered about x in terms of increasing angle. It designates a point as reflex if the interior angle made by it and its adjacent points is greater than π . Figure 2 depicts the graphical illustration of the algorithm. In this figure, p1 is non reflex and p2 is reflex, p2 do not entitled to be in the perimeter of convex hull. Progressively, the algorithm examines the points in the sequence in some order (clockwise/counter clockwise) and excludes those that are reflex. Upon termination, only non-reflex points remain on the periphery and remaining points will be pushed inside the hull.
Graham’s algorithm suffers a bottleneck, that when a point is abandoned for being reflex the chances are for its neighbor getting changed from non-reflex to reflex. To obviate this, modifications for this algorithm have been recommended [18].

2.3. Monotone Chain Algorithm

This algorithm is credited to A. M. Andrew [19]. As such, the algorithm is similar to that of Graham’s but with two key differences. Firstly, the algorithm sorts the points lexicographically (first by x-coordinate, and in case of a tie, by y-coordinate), and then secondly, constructs the upper and lower hulls of the points in O(n log n) time.
Iterating from left to right, the points are selected similar to Graham’s while eliminating points that contribute clockwise turns. For the upper hull iteration is carried from right to left and does the same thing. Finally, repeated left most and rightmost points are removed. The pseudo code and graphic illustrations of the algorithm are given in Figure 3.

2.4. Quick Hull Algorithm

This algorithm is based on divide-and-conquer strategy and very similar to quick sort, which divides the problem into two sub-problems and discards some of the points in the given set as interior points, on concentrating on remaining points. Under average circumstances the algorithm works quite well, but processing usually becomes slow in cases of high symmetry or points lying on the circumference of a circle. The pseudocode of the algorithm and its graphical illustration is presented in Figure 4. More detailed information may be found in [20].

2.5. Divide and Conquer Algorithm

This algorithm goes on a premise that, finding the convex hull of small sets is easier than finding the hull of large ones. Therefore, the crux of the matter here is to find a fast way to merge the small hulls that were recursively generated. While merging two small hulls, tangent algorithm is used. The tangent algorithm and its graphical illustration is shown in Figure 5. A detailed elaboration on the algorithm may be found in [21].
Figure 1. Gift Wrapping Algorithm a. Pseudo code b. Graphic illustration
Figure 2. The first step of Graham’s algorithm constructs a sequence of P= {p1, p2, …pn} of the points in polar coordinates ordered about x
Figure 3. Monotone Chain Algorithm and graphic illustration
Figure 4. Quick Hull Algorithm and its graphical illustration
Figure 5. Divide and conquer algorithm & its graphical illustration

2.6. Marriage before Conquest Algorithm

Also named as Kirkpatrick–Seidel algorithm, called by its authors the ultimate planar convex hull algorithm is an algorithm for computing the convex hull of a set of points in the plane, with O (n log h) time complexity, where n is the number of input points and h is the number of points in the hull. Thus, the algorithm is output-sensitive: its running time depends on both the input size and the output size. Although the algorithm is asymptotically very efficient, it is not very practical for moderate-sized problems. The Kirkpatrick– Seidel algorithm splits the input as before, by finding the median of the x-coordinates of the input points. However, the algorithm reverses the order of the subsequent steps: its next step is to find the edges of the convex hull that intersect the vertical line defined by this median x-coordinate, which turns out to require linear time.
The points on the left and right sides of the splitting line that cannot contribute to the eventual hull are discarded, and the algorithm proceeds recursively on the remaining points. In more detail, the algorithm performs a separate recursion for the upper and lower parts of the convex hull; in the recursion for the upper hull, the noncontributing points to be discarded are those below the bridge edge vertically, while in the recursion for the lower hull the points above the bridge edge vertically are discarded. Interested readers may go through the reference [22].

3. Recent Methods

Recent methods of computing the convex hull are directed towards accelerating the whole procedure. A recent method reported will precondition 2D data with integer coordinates bounded by a box of size p × q before building a 2D convex hull. The researchers have claimed three distinct advantages. First, they have proved that under the condition min(p, q)≤n , the algorithm executes in time within O(n). Second, no explicit sorting of data is required. Third, the reduced set of points forms a simple polygonal chain and thus can be directly pipelined into an O(n) time convex hull algorithm. They have also empirically evaluated and quantified that the speed up factor of at least four is gained by preconditioning a set of points by a method based on the proposed algorithm before using common convex hull algorithms to build the final hull [23].
The determination of the samples in the convex-hull of a set of high dimensions, however, is a time-complex task. To simplify this, a simple algorithm to compute an approximate convex hull is proposed [24]. The algorithm proposed enjoys following advantages: it uses only one threshold; it is a deterministic algorithm, independent of the vertices initially considered; it ensures that samples which correspond to maximum and minimum points for each dimension are present in the generated convex hull; and, more important, it achieves a better approximation to the real convex-hull. To apply this algorithm, the data is to be normalized in each dimension to the range [-1, 1]. All samples that have at least a minimum or maximum value for a particular dimension are selected. As a second step, a d-simplex is formed based on the first d+1 samples which are found in the first step. Afterwards, the remaining samples from the first step are incrementally appended to the convex-hull. Finally, among all samples which are located outside the current convex hull, the furthest sample to the current convex hull is selected as a new vertex and the current convex hull is updated based on the new vertex. This step is performed as long as the distance of the furthest sample to the current convex hull is greater than a pre-defined threshold.

4. Image Registration and Retrieval

Image Registration is the process of aligning two or more images of the same scene taken from different viewpoints, from different sensors, may be at different times. The purpose of image registration is to geometrically align sensed image and reference image. Registration removes or suppresses the geometric distortions between reference and sensed images. Quite a good number of applications using convex hulls has been reported in literature.
Yang et al. [25] solved the image registration and scene recognition problems in affine transformation by convex hull of corner set. This method has put forward a new idea for correspondence match of discrete features, but it is still restricted by its limitations in the field of image registration applications. It is just suit for simple scene which is easy to extract the feature contour. It requires convex hull set can reflect the feature contours of target. This requirement is clearly unrealistic for general image registration problem. But convex hull has very good properties -uniqueness for each image, affine invariant, and local controllability to occlusion or noise, which makes us have to reconsider the application of convex hull.
An improved algorithm based on convex hull vertices is proposed by Litao et al [26]. After extracting feature points by Harris corner detector, for searching the same regions of reference images, correlation method is used to match these points firstly, which gains two initial pairing sets. Then convex hull vertices of the pairing sets are used to establish the transformation parameters that can match most points of the two pairing sets, which use a convex hull using random sample consensus (RANSAC) like algorithm. Computational experiments have demonstrated the accuracy, efficiency and robust of this approach.
A novel approach to recover the parametric deformation that optimally registers one image to another has been reported [27]. The method proceeds by constructing a global convex approximation to the match function which can be optimized using interior point methods. The method used also explains how one can exploit the structure of the resulting optimization problem to develop efficient and effective matching algorithms. Results obtained by applying the proposed scheme to a variety of images are presented. The gist of the methodology used lies in recovering the deformation that maps a given base image onto a given target image can be phrased as an optimization problem. For every pixel in the target image one can construct an objective function, which captures how similar the target pixel is to its correspondent in the base image as a function of the displacement applied at that pixel.
A robust approach called convex hull matching (CHM) technique is proposed for registration of medical images that differ from each other with Euclidean transformation. The method involves two steps, in the first step, point sets on the surface of the medical image are extracted, and then the 3-D convex hull is constructed from the point sets and triangle patches on the surface of convex hulls are specified by predefining their normal vectors. Subsequently in the second step, each edge of the referenced triangle is compared with all the edges of the triangle in other point set to find the congruent pair set and also to obtain the scaling factor. Thereafter, the transformation parameters of each triangle pairs including rotation and translation are optimized by minimizing the Euclidian distance between the corresponding vertex pairs. Hence, rigid transformation of the two point sets is obtained by iteratively enumerating and evaluating similarity measures of the triangle patches chosen. Global optimization is achieved through RANSAC optimization by removing the correspondence pairs that may lead to large matching errors of the whole point sets. The real clinical data experiments have confirmed the proposed algorithm is a strong performer in medical image registration [28].
Applications of convex hull for optimized image retrieval have been scanty. In a significant effort, a new image retrieval method based on region of interest determined by interest points has been cited [29]. The method is about detecting interest points by tracking wavelet coefficients of different scales and computing convex hull of interest points to extract the region of interest in the image. The weighted feature distance was used to define the similarity between two images. With robustness to image rotation, translation and scale, the method makes the retrieval implementation at the object level and avoids the shortcoming of traditional methods. Quite a good number of experiments based on an image database containing 1100 images has showed improvement in the average retrieval precision over 11.1%, compared with other interest points based retrieval methods.
In the recent years, convex hulls have been immensely used for content based image retrieval. Considering the complex objects and information present in the image development of automated retrieval system is very difficult if not impossible. Such systems should cater to browsing, searching and retrieving images from a large image database. A new approach that could mitigate the above said difficulties has been reported [30]. The method involves comparing convex hull geometry of the query image to that of the database image in terms of a relative metric which is denoted as the Convex Hull Area Ratio (CHAR). The metric CHAR is the ratio of the area of the intersection of the two convex hulls to the area of their union. A polygon in the shape of the convex hull is extracted from the database images and the coordinate values are stored in the feature library. When query image is presented, the convex hull values are extracted and the ratio of the intersected area to union area of the two convex hulls (CHAR) are found and stored. Then, similarity measurement is performed and the closest match is associated with the highest value of CHAR.
Another interesting direction in computer vision related tasks has been detection of object level saliency detection. In this direction, salient features of an object are garnered by exploiting contrast, center and smoothness priors. In such an application, convex hull is applied to elicit the center of the salient object rather than directly using the image center. This strategy has shown to be more robust when compared with the method of location of objects [31]. Added to this, the method is refined by developing the initial saliency map through minimizing a continuous pair wise saliency energy function with graph regularization. This method has also enabled uniformity in highlighting the salient object and simultaneously suppresses the background effectively. Extensive experiments on a large dataset demonstrated that the method proposed by the researchers performs favorably against the state-of-the-art methods in terms of accuracy and efficiency.

5. Image Classification

Convex hulls have large potential to realize regions as a large margin classifier. Indeed, the closest point pair on the convex hulls each of which encloses all the samples of a single class gives the same liner classifier as Support Vector Machine. A practical way is proposed to find a set of approximate convex hulls in each class as an estimate of the class region. In the algorithm, training samples are perfectly separated by those convex hulls. Model selection is being made for avoiding overfitting. A model is specified by the number of facets, the number of convex hulls, and the number of irregular (too thin or too small) convex hulls. Further the concept of an expanded convex hull which produces a classifier with large margin has also been introduced [32].
A new algorithm to search the border points, called convex-concave hull has been presented [33]. For this, the convex hulls of the data set were first found. Then concave hulls are formed using the vertices of the convex hull. In this way, the misleading points in the intersection were identified to be the vertices of the concave hulls. By this algorithm, the classification accuracy is reported to have increased considerably when compared with the geometric methods also the training time is decreased substantially. The experimental results of this work showed that the accuracy obtained by new convex-concave hull approach is very close to classic SVM methods, while the training time is significantly shorter. Convex hulls have been expeditiously implemented along with Support vector machine (SVM). SVM being a statistical learning theory, capable of avoiding over-training, and weak normalization capability. However, the black-box characteristic of SVM has limited its application. In order to open the black-box, a new rule extraction algorithm based on convex hull theory is proposed [34]. In this work, all the vectors were clustered to be some clusters on the decision hyper-plane; then, the convex hull is extracted for every cluster; finally, the region of each convex hull covered were transferred to corresponding interval-type rule. Rule extraction has been experimented on two public datasets of Iris and Breast-cancer images, results have showed that the proposed method can improve the accuracy of rule covering and fidelity.
An attempt to classify the Single Proton Emission Computer Tomography (SPECT) brain images into Alzheimer disease inflicted and non- inflicted has been attempted [35]. Set of descriptors such as brain area, maximum internal sphere, its diameter, digital volume and surface was determined using the convex hull. The methodology was based on the variation of relative threshold together with relative pre-erosion. The descriptors were converted to the relative logarithmic form and the linear model of single neuron was used for the classification of brain disease.
It is prudent to mention application of convex hulls in generating the receiver operating characteristic (ROC) graph. It is well known that ROC is used for visualizing, organizing, and selecting classifiers based on their performance. It is therefore common to generate ROC curves for varying discriminative thresholds over the output of the classifier. There is spurt in use of ROC graphs in the machine learning community, thus ROC analysis has become a central technique for tackling classification problems. In this context, recently, attention has also been drawn toward the ROC convex hull (ROCCH) [36]. Consequently, there are many works on ROCCH maximization problems, most of which are geometric-based methods for maximizing the ROCCH [36]. Particularly, since ROCCH maximization means to find a group of classifiers whose location (performance) is as close to the top-left corner in the ROC space as possible, i.e., that have a high true-positive rate (tpr) and low false-positive rate (fpr), multi objective optimization techniques have been widely acknowledged as promising approaches to it. There are several works proposing different multi objective optimization frameworks based on pair-wise dominance relationships to maximize the ROCCH [37].
A new convex hull-based multi objective genetic programming (CH-MOGP) is proposed to solve ROCCH maximization problems [38]. Specifically, convex hull-based without redundancy sorting (CWR-sorting) is introduced, which is an indicator-based selection scheme that aims to maximize the area under the convex hull. A novel selection procedure is also proposed based on the proposed sorting scheme. It is hypothesized that by using a tailored indicator-based selection, CH-MOGP becomes more efficient for ROC convex hull approximation than algorithms that compute all Pareto optimal points. Empirical studies are conducted to compare CH-MOGP to both existing machine learning approaches and multi objective genetic programming (MOGP) methods with classical selection schemes. Experimental results show that CH-MOGP outperforms the other approaches significantly.

6. Shape Detection, Extraction, and Space Partition

Physiological researchers have emphasized the fact that the human visual system tends to segment complex objects at the region of deep concavities thus highlighting importance of concavities in shape detection [39]. Taking a cue from this fact, a method is proposed for measuring concavities and segmenting 2D shape without holes by convex hulls. The said method is intended to grasp variations of the polygon boundaries and to determine vertexes before computing interior angles for representing local attributes [40]. To deal with excessive segmentation, a decomposition method is introduced avoiding connection of vertices in the same pocket generated by convex hull the author has claimed good performance by the approach in shape detection. Finding optimal convex hulls for shape extraction using genetic algorithms has been presented [41]. The method proposed in this work gets shape in wrapping from convex hull. After obtaining approximate convex hulls, crossover, a local search method, and a modified fitness function are applied to get the shape in the wrapping. It is shown by the authors that the proposed method succeeds in extracting the shape from the point sets in the plane. The results of this work have shown success in acquisition of the convex hull and the shape of objects. The time involved in obtain each problem’s convex hull is reported to be within half of a second.
A method for partitioning an image database by classifying and indexing the convex hull shapes and the concavity features of regions is reported [42]. This approach has resulted in significant increase in image search and retrieval speed. In this work, the convex hull is established using a novel and efficient method based on the geometrical heat differential equation. The so obtained convex hull is represented by a triad of boundary shapes and other parameters as viewed from three viewpoints. The information about the boundary shapes has enabled the researchers to categorize the regions in image database to be captured by 344 convex hull classes. Both theoretical background and practical results are presented. Extending further, the information about concavity of the region has also been elicited using boundary support parameterization which helped the researchers for further partitions of the database. This has also resulted in comparing shapes of the same class thus reducing the searching operations.
In another practical application of convex hulls, a prototypic model for leaf and fruit classification with specific reference to Tomato has been attempted [43]. In this work, convex hulls are used to capture morphological shape based features. Later, supervised filter and wrapper based feature selection techniques were adopted to choose the optimal feature set which lead to small within-class variance and large among-class distance. This information was used as a yardstick by the recognition system. Yet another significant application of convex hull has been detection of leukemia by determining abnormal white blood cell (WBC) count [44]. In this work, convex hull of blood cells is computed to determine number of cells in an image. While traditional methods which involve manual counting of the cells under a microscope which obviously lead to errors in counts, the method developed in this work has shown better results for counting number of WBC and computing Blood Cell Ratio. Convex hull is used for detection of Glaucoma [45]. Glaucoma detection involves measurement of neuro-retinal optic cup-to-disc ratio (CDR). Automatic calculation of CDR is challenging due to the interweavement of blood vessels running in the surrounding tissues around the cup. The authors have developed convex Hull based Neuro-Retinal Optic Cup Ellipse Optimization algorithm. This algorithm has improved the accuracy of the boundary estimation by around 43% when compared with the traditional method. Around 70 clinical patients’ data base is used in the research.
Convex hull algorithm has made inroads to handwritten character detection also. Hand written texts poses at most difficulty while tracing when compared to machine written text because of their non uniformity in sizes and strokes. In a recent work, convex hull algorithm has been used to collect 125 features Bangla basic characters and digits [46]. On experimentation with database of 10000 samples, a maximum recognition rate of 77.8% in case of characters and 99.5% in case of digits has been reported. This work has validated the usefulness of new feature set availed through convex hull.
In a very innovative and interesting work, a new approach for controlling mouse movement using image processing technique. The research work makes use of image processing via Convex Hull Method and captures human hand gestures to replace mouse functions. (i.e. left click, right click, and cursor movement). For this, convex hull algorithm is used to replace the actual mouse with human hand. The shape of the hand while holding the mouse has been captured using convex hulls. To recognize that a finger is inside of the palm area or not, convex hull algorithm are once again used. The method suggested has shown excellent results while identifying finger tips on the hand and also to detect whether the fingers are folded or not [47].

7. Scoping View

The predominant task in an image processing work is shape based feature extraction. The delineable shape based features must possess following properties [48]:
Ÿ Shapes that are recognized by human beings to be perpetually similar have the same features that are remarkably different from other shapes.
Ÿ Some of the rendered transformations such as translation, rotation and scaling should not alter the extracted feature values.
Ÿ Affine transformations of the shape in different coordinate systems should preserve the straightness and parallelism of lines.
Ÿ The features must be the same whichever be the strength of the noise in a given range that affects the pattern.
Ÿ When some parts of a shape are occulted by other objects, the feature of the remaining part must not change compared to the original shape.
Ÿ Two features that are retrieved out of a shape must be statistically independent.
In order to safeguard the properties cited above, a robust shape holder or shape capturing method is needed. Though copious research has shown extensive use of convex hull for shape extraction, it is neither prudent nor equitable to affirm a property of an approach by hard qualifiers as good or bad. Because certain approaches have great different performances under different conditions. A comparative analysis of various shape capturing techniques with special reference to fulfillment of above listed properties is presented in Table 1.
Table 1. A Comparative presentation of shape extraction techniques
The impact of convex analysis in optimization is well-known and the rich and varied set of applications of convex hulls in areas such as finite convex, integration, network flow, phase transition, electrical networks, and robot navigation is very well documented in literature. Its application in image processing is rather intrinsic. Maragos [49] has established the connection between convex analysis, image processing, differential calculus and dynamical systems and conjointly named it as differential morphology. The operators used in image processing such as distance transform, dilation and regularization are closely connected to convex analysis [50]. Considering the wide applications that have happened in recent years, the future scope for convex hull applications in image processing may be listed below.
Ÿ The proposed algorithms used for classification have shown lower margin between approximate convex hulls of classes, therefore, efforts should be directed to expand the margin space preferably with user specified value.
Ÿ It is discerned from the literature that, convex hulls have shown very low classification errors mostly if small data sets are involved. However, in the case of larger data sets, the classification accuracy are not very much better than other classification methods. This suggests a scope for development of methods applicable to large datasets.
Ÿ In classification tasks associated online noised data, convex hulls are not able to adapt and it is seen in some works that the updated classifier showing deviations from the true classifier. How to eliminate the heavily noised data points in the online processes is still an intractable issue demanding future attention.
Ÿ The affine variant features garnered using convex hulls have shown low recognition rates. Researchers are of the opinion that combination of affine invariant features may improve overall recognition performance of pattern class.
Ÿ Convex hulls are prone to errors when the images are not exactly same. It is required to develop algorithms that use the affine invariant and noise insensitive convex hulls involving correlation criteria to concentrate feature points to the same region of image contents.
Ÿ There seems to be a huge scope for convex hulls in the area of content-based image retrieval. Efforts are anticipated in the direction of developing similarity metrics particularly with reference to medical images.
Ÿ Another promising scope in foreseeable future is the development of 3D-convex hulls. The research in this direction is still in gestation stage and has to take a long leap forward. It is strongly opined that such 3-D convex hulls are of immense use spatial analysis in 3D geographical Information systems [51].

8. Conclusions

In this article we have underlined the importance and significance of Convex hulls in image processing tasks. This article is also driven by the renewed demands from image processing applications such as robustness, higher recognition rates, and clear interpretations of images. Convex hull assisted image processing has been successful in image registration, image classification, shape extraction, content based image retrieval, feature selection, and space partitioning. It is felt that the prospective researchers in the area of image processing are encouraged by this article and further explore convex hull based algorithms in the future development of image processing technologies.

References

[1]  L. Da F. Costa, R.M. Cesar Jr., Shape Analysis and Classification, CRC Press, 2001.
[2]  F. Bookstein, Morphometric Tools for Landmark Data: Geometry and Biology, Cambridge University Press, 1991.
[3]  A.E. Hawkins, The shape of Powder-Particle Outlines, J Wiley and Sons, 1993.
[4]  P.L. Rosin, Shape partitioning by convexity, IEEE Transactions on Systms, Man and Cybernetics, part A, 30(2), 2000, 244-256.
[5]  L.J. Latecki and R. Lakamper, Shape Similarity measure based on correspondence of visual parts. IEEE Transactions on Pattern Analysis and Machine Intelligence, 22(10), 2000, 1185-1190.
[6]  J. Bai, X.C. feng, Image denoising and decomposition using non-convex functional, Chinese Journal of Electronics, 21(1), 2012, pp102-106.
[7]  M.I. Karavelas, R. Seidel, E. Tzanki, Convex hulls of spheres and convex hull of disjoint convex polytopes, Computtaional Geometry theory and Applications, 46(6), 2013, pp 615-630.
[8]  L.Y. Ma and J. Yu, A convex approach to local statistics based region sdegmentation, Chinese Journal of Electronics, 21(4), 2012, pp623-626.
[9]  Dunder M M, Fung G, Krishnapuram B, Rao R.B, Multiple Instance learning algorithms for computer –Aided detection, IEEE Transactions on Biomedical Engineering, 2008, pp 1015-1021.
[10]  Zhongliang Fu and Yuefeng Lu, An efficient algorithm for the convex hull of planar scattered point set, International Archieves of the Photogrammetry, Remote sensing and Spatial Information Sciences, XXII ISPRS Congress, Melbourne, Australia, 2012, pp 63-66.
[11]  Eric Domonteil, Sathya N Majumdar, Alberto Rosso, Andrea Zoia, Spatial Extent of an outbreak in animal epidemics, Proceedings of the National Academy of Sciences, Vol 110, No. 11, 2013, pp 4239-4244.
[12]  Alessandro Ferriero, Nicola Fusco, A Note on the Convex Hull of Sets of Finite Perimeter in the Plane, Discrete and Continuous Dynamical Systems Series B, Vol 11 (1), 2009, pp 1-6
[13]  D. Avis, D. Bremner and R. Seidel, How good are convex hull algorithms?, Computational Geometry, vol. 7, 1997, pp. 265-301.
[14]  W.M. Cao, L.J. Ding, Cancer Subtypes recognition and its gene expression profiles analysis based on geometrical learning, Chinese Jounal of Electronics, Vol 15, No. 4, 2006, pp 891-894.
[15]  Y. Davydov, C. Dombry, Asymptotic behavior of the convex hull of a stationary Gaussian process, Lithunian Mathematical Journal, Vol 52, No.4, 2012, pp 363-368.
[16]  Jarvis, R. A. On the identification of the convex hull of a finite set of points in the plane. Information Processing Letters, 2, 1973, pp 18–21.
[17]  Graham R.L., An efficient algorithm for determining the convex hull of a finite planar set, Information Processing Letters, 26, 1972, pp 132-133.
[18]  Phan Thanh An, A modification of Graham’s algorithm for determining the convex hull of a finite planar set, Annales Mathematicae et Informaticae, 34, 2007, pp 3-8.
[19]  A. M. Andrew, Another Efficient Algorithm for Convex Hulls in Two Dimension", Information Processing Letters, 9, 1979, pp216-219.
[20]  C. Bradford Barber, David P. Dobkin, Hannu Huhdanpaa, The Quick Hull Algorithm for Convex Hulls, Journal of ACM Transactions on Mathematical Software, Vol 22, Issue 4, 1996, pp 469-483.
[21]  Sunitha Ramaswamy, Convex Hulls: Complexity and Applications, Theory and Algorithms Commons, Technical report, available at: http://repository.upenn.edu/cis_reports.
[22]  David G. Kirkpatric, Seidel Raimund, Marriage before Conquest: A Variation on the Divide & Conquer Algorithm, Report, ACM Digital Library, University of British Columbia Vancouver, BC, Canada, 1983.
[23]  José Oswaldo Cadenas, Graham M. Megson, Cris L. Luengo Hendriks, Preconditioning 2D Integer Data for Fast Convex Hull Computations, Plos|One, Vol 11(3), 2016, pp 1-11.
[24]  Hamid R. Khosravani, António E Ruano, Pedro M. Ferreira, A Simple Algorithm for Convex Hull Determination in High Dimensions,8th IEEE Symposium on Intelligent Signal Processing, Sept 16-18, 2013,Funchal,pp 109-114.
[25]  Yang Zhengwei and F. S. Cohen, Image registration and object recognition using affine invariants and convex hulls, IEEE Transactions on Image Processing, vol. 8, No. 7, 1999. pp. 934-946.
[26]  Litao Ma, Runhua Zhao, Dan Yang, Image Registration Based on Convex Hull RANSAC like, International Symposium on Computer Network and Multimedia Technology, Jan 18-20, 2009, Wuhan, China.
[27]  Camillo Jose Taylor, Arvind Bhusnurmath, Solving Image Registration Problems Using Interior Point Methods, Proceedings of 10th European Conference on Computer Vision, 2008, pp 638-651.
[28]  Jingfan Fan, Jian Yang, Mahima Goyal, Yongtian Wang, Rigid Registration of 3-D Medical Image Using Convex Hull Matching, IEEE International Conference on Bioinformatics and Biomedicine, December 18-21, 2013, Shanghai, pp 338-341.
[29]  Fanjie Meng and Baolong Guo, Yiqi Fang, Novel Image Retrieval Method Based on Interest Points, 3rd International Congress on Image and Signal Processing, October 16-18, 2010, Yantai, pp 1582-1585.
[30]  Santhosh P. Mathew1, Valentina E. Balas2, Zachariah K. P. A content Based Image Retrieval System based on Convex Hull Geometry, Acta Polytechnica Hungerica, Vol 12, No 1, 2015, pp 103-116.
[31]  Chuan Yang, Lihe Zhang, Huchuan Lu, Graph Regularized Salency Detection with Convex Hull Based Center prior, IEEE Signal Processing Letters, Vol 20, No 7, 2013, pp 637-640.
[32]  Tetsuji Takahashi, Mineichi Kudo, Margin Preserved Approximate Convex Hulls for Classification, International Conference on Pattern Recognition, 2010.
[33]  Asdrubal Lopez-Chau, Xiouoou lie, Wen Yu, Convex-Concave Hull for Classification with Support Vector Machine, 12th IEEE International Conference on Data Mining Workshops, 2012, pp 431-438.
[34]  Jianguo Wang, Bin Yang, Wenxing Zhang, Bo Qin, Convex Hull-based Support Vector Machine Rule Extraction, 9th International Conference on Fuzzy Systems and Knowledge Discovery, May 29-31, 2012, Chongqing, Sichuan, China, 689-692.
[35]  R. Helm, J.Kukal, A. Prochazka, Morphological analysis and classification via Convex hull of 3d SPECT image, Praha: Vydavatelství, CVUT, 2002, pp 1-4.
[36]  M. Barreno, A. A. Cárdenas, and J. D. Tygar, “Optimal ROC curve for a combination of classifiers,” Adv. Neural Inf. Process. Syst., vol. 20, no. 20, pp. 57–64, 2008.
[37]  P. Wang, K. Tang, T. Weise, E. Tsang, and X. Yao, “Multiobjective genetic programming for maximizing ROC performance,” Neurocomputing, vol. 125, pp. 102–118, Feb. 2014.
[38]  Pu Wang, Michael Emmerich, Rui Li, Ke Tang, Thomas Bäck, and Xin Yao, Convex Hull-Based Multiobjective Genetic Programming for Maximizing Receiver Operating Characteristic performance, IEEE Transaction on Evolutionary Computation, Vol 19, No 2, April 2015
[39]  Biederman I, Recognition by components: A Theory of human image understanding, Psychological Review, 94(2), 1987, pp 115-147.
[40]  Lili Wan, Parts-based 2D shape decomposition by convex hull, IEEE International Conference on Shape Modeling and Applications, Beijing, China, June 26-28, 2009, pp 89-95.
[41]  Mitsukuni Matayoshi, Shape Extraction Method using Search for Convex Hull by Genetic Algorithm, IEEE International Conference on Systems, Man, and Cybernetics, Oct 13-16, 2013, Manchester, UK, pp1677-1683.
[42]  Nikolay M. Sirakov1, Phillip A. Mlsna, Search space partitioning using convex hull and concavity features for fast medical image retrieval, IEEE International Symposium on Biomedical Imaging, Arlington, USA, April 15-18, 2004, pp796-799.
[43]  A Hazra, S. Deb, S. Kundu, P. Hazra, Shape Oriented Feature Selection for Tomato Plant Identification, International Journal of Computer Application Technology and Research, Vol. 2, Issue 4, 2013, pp 449-454.
[44]  Gaganjit Singh, Swarnalatha P., Tripathy B.K., Swetha Kakani, Convex Hull Based WBC Computation for Leukaemia Detection, International Journal of Advanced Research in Electrical, Electronics and Instrumentation Engineering, Vol. 2, Issue 5, 2013, pp 1843-1847.
[45]  Zhuo Zhang, Jiang Liu, Neetu Sara Cherian, Ying Sun, Joo Hwee Lim, Wing Kee Wong, Ngan Meng Tan, Shijian Lu, Huiqi Li, Tien Ying Wong, Convex Hull Based Neuro-Retinal Optic Cup Ellipse Optimization in Glaucoma Diagnosis, 31st Annual International Conference of the IEEE EMBS, Minnesota, USA, September 2-6, 2009, pp1441-1444.
[46]  Nibaran Das, Sandeep Pramanik, Subadeep Basu, Punam Kumar Saha, Ram Sarkar, Mahantaps Kundu, Mita Nasipuri, Recognition of Hand Written Bangla Characters and Digits using Convex Hull based Feature set, International Conference on Artificial Intelligence and pattern Recognition, 2009, pp 380-386.
[47]  Ahemad Siddique, Abhishek Kommera, Divya Varma, Simulation of Mouse using Image Processing Via Convex Hull Method, International Journal of Innovative Research in Computer and Communication Engineering, Vol 4, Issue 3, 2016, pp 4014-4018.
[48]  Yang Mingqiang, Kpalma Kidiyo, Ronsin Joseph, A Survey of Shape features Extraction, Pattern Recognition Techniques, Technology and Applications, I-Tech, Vienna, Austria, pp 44-90.
[49]  P. Maragos, Slope transforms: theory and application to nonlinear signal processing, IEEE Transactions on Signal Processing, 43, 1995, pp 864-877.
[50]  A. Ghafoor, R, N. Iqbal, S. Khan, Image Analysis- Image Matching using Distance transforms, Vol 2749, Springer Berlin, 2003, pp 212-229.
[51]  Yongzhi Wang, Yehua Sheng, Liangchen Zhou, Fei Guo, Yu Hu, An Algorithm on Discrimination of Point-set in Polyhedron Based on Three-Dimensional Convex Hulls, 18th International Conference on Geoinformatics, June 18-20, 2010, Beijing, pp 1-5.