Skip to main content

A user-friendly software to easily count Anopheles egg batches

Abstract

Background

Studies on malaria vector ecology and development/evaluation of vector control strategies often require measures of mosquito life history traits. Assessing the fecundity of malaria vectors can be carried out by counting eggs laid by Anopheles females. However, manually counting the eggs is time consuming, tedious, and error prone.

Methods

In this paper we present a newly developed software for high precision automatic egg counting. The software written in the Java programming language proposes a user-friendly interface and a complete online manual. It allows the inspection of results by the operator and includes proper tools for manual corrections. The user can in fact correct any details on the acquired results by a mouse click. Time saving is significant and errors due to loss of concentration are avoided.

Results

The software was tested over 16 randomly chosen images from 2 different experiments. The results show that the proposed automatic method produces results that are close to the ground truth.

Conclusions

The proposed approaches demonstrated a very high level of robustness. The adoption of the proposed software package will save many hours of labor to the bench scientist. The software needs no particular configuration and is freely available for download on: http://w3.ualg.pt/hshah/eggcounter/.

Background

Understanding the ecology and evolution of malaria vector species and populations is a key factor in controlling the disease they carry [1]. In several contexts, the estimation of the fitness of Anopheles mosquitoes is required. For instance, this may help to understand adaptation of different populations to given environmental conditions [24] or the opposite [57], interactions between the vectors and the parasites [812] or the vertebrate hosts [13]. More directly related to vector control, fitness measures can help deciphering the effect of insecticides [14], including new classes of insect growth regulators [15], effect of insecticide resistance [16, 17], genetic manipulation of vector populations to make them resistant to parasites [18, 19], or to impede their reproductive success. The fecundity is a key variable to assess the fitness of populations. In mosquitoes, it can be measured at several stages, but the number of eggs laid by females is often considered as a good estimate. Depending on the case study, the experiments may involve hundreds of females, possibly over many gonotrophic cycles and generations. As female Anopheles can lay over one hundred eggs every 2-3 days, one experiment only, often involves counting thousands of eggs [20, 21]. Such a task is obviously tedious, time-consuming and prone to errors. These facts make the identification and counting of eggs a natural task for automation.

As software capable of correctly counting Anopheles eggs laid on filter paper was not available, we developed a fully automatic software together with its own user-friendly interface. Egg-Counter v1.0 has the capacity of counting individual eggs as well as eggs laid in piles. At first, it counts the eggs laid on the paper, excluding the debris. Then, the user is able to modify any details of the presented result by means of a provided user-friendly interface. The software was tested by comparing the automatic and manually corrected results with the number of manually counted eggs, and a precision of 98% was obtained. Egg-Counter is fully written in Java and, therefore, completely platform-independent; it can be downloaded, installed and used within a couple of minutes.

The rest of this paper is organized as follows: In Methods, the proposed method for processing the images is elaborated. A brief description of the software provided and its features are introduced in Software. Experimental results on 16 different images, taken in different experiments are presented in Results and Discussion.

Methods

Figure 1 shows the diagram of the proposed algorithm for counting the eggs of an image. First the color image is converted to a grayscale by flattening the image. A binary map is extracted from the grayscale version of the image by means of image thresholding. Then, each connected component in the map is extracted as an object. To make the software as independent as possible from image resolutions and the camera settings, objects containing just one egg are detected and the size of one egg is estimated. Debris objects are detected and removed based on the original color image. Finally noise is removed and the number of eggs inside each of the remaining objects is calculated according to the estimated size of one egg.

Figure 1
figure 1

Proposed approach.

Grayscale Conversion

Color images are converted to grayscale images. Luminance is typically computed as a weighed sum of the color components. The most often used weights were originally developed for encoding analog color television signals as:

I i =0.299× R i +0.587× G i +0.144× B i ,
(1)

where R i , G i and B i are the intensity levels of the red, green, and blue channels of the ithpixel respectively. Figures 2(a) and 2(b) show a sample color image of the mosquitoes’ eggs and its resulting grayscale version.

Figure 2
figure 2

Sample image of the Anopheles eggs and resulting processed images.

Image Thresholding

As shown in Figure 2(b), the eggs and debris are the dark objects on the white paper. Therefore, a proper binary map of the image can be used to distinguish them from the background. This binary map is defined as:

B i = 1 , if I i T auto 0 , otherwise.
(2)

Where B i and I i are the binary value and intensity of the ithpixel respectively and T autois the automatic threshold value based on an entropic thresholding method proposed in [22] as:

arg max T C B (T)+ C F (T),
(3)

with

C B (T)=log g = 0 T p ( g ) p ( T ) 2 ,
(4)

and

C F (T)=log g = T + 1 T p ( g ) 1 p ( T ) 2 .
(5)

Where T auto is the value of T that makes C B (T) + C F (T) maximum, p(g) is the probability of intensity level g and p(T) is the cumulative probability function. Unlike the original method [22], here T controls the maximum value of threshold in order to remove high exposure in the images caused by flash where empirically T [160,180]. Figure 2(c) shows the resulting binary map of the sample image. As it is shown eggs and debris are properly extracted, after the automatic threshold is found.

Object Extraction

In this step eggs and debris are detected by extracting eight-connected neighborhood components. Putting it simply, connected component labeling is the process of assigning labels to the foreground elements in such a way that adjacent foreground elements are assigned to the same label [23]. Here, adjacent means 8-adjacent pixels neighborhood.

Egg Size Estimation

Usually, a single mosquito egg has an elongated ellipse shape, while a pile of eggs looks more circular (see Figure 2(b)). Therefore, the eccentricity of the object is used to distinguish single eggs from the piles of eggs. Eccentricity measures how much an object deviates from being circular. It is the ratio of the distance between the foci and its major axis length [24], defined as:

e= 1 λ 1 λ 2 ,
(6)
λ i = μ 20 + μ 02 2 ± 4 μ 11 + ( μ 20 μ 02 ) 2 2 .
(7)

Where μ mn is the central moment of order (m n), defined as:

μ mn = u , v R u x ̄ p v x ̄ q ,
(8)

where x ̄ , y ̄ is the centroid of the object and u , v R represents whole set of pixel coordinates inside the object. The value of the eccentricity falls in the interval [0,1]. A value of one indicates a perfect circle and zero indicates a line segment. In this step, the objects with high eccentricity, e 1<e<e 2, are selected as eggs. Values of e 1e 2can be set from 0.95 up to 0.99. Experimental results show that more than 80% of the components containing one egg are in this range. Finally, the mode of the size of the candidate objects is chosen as the estimated size for one egg.

Debris Detection

Debris are black regions extracted on the binary map (see Figure 2(b) and 2(c)) that could be assessed as eggs on the binary map. Nevertheless, a yellow brownish area often presents around the regions of debris (see Figure 2(a)) that can be used to detect debris. For extracting the brownish area near the debris, a chroma value for each pixel is defined as:

C i =max( R i , G i , B i )min( R i , G i , B i ).
(9)

In this step, the objects that have at least X pixels with C> C E in their radii r are considered as debris. Parameter C E is 0.15 by default, but the application allows the user to tune it, resulting in a change of the detection sensitivity. Because eggs have a dark color and the paper is white, the rate of true negatives (considering non-debris areas as debris) is negligible and it only happens for the eggs that are inside the yellow brownish area.

Egg Count and Noise Removal

The number of the eggs N inside the object i, is estimated as:

N(i)= A ( i ) S , A ( i ) 2 × S A ( i ) × C S , otherwise,
(10)

where A(i) is the area of the object, S is the estimated size of one egg, . is the round function and C is the accumulative ratio which should be less than one. The accumulative ratio is necessary due to the fact that regions in the intersection of the eggs inside a pile are shadowed by the eggs and are usually considered as a connected object in the binary map. Therefore, multiplying by this ratio allows better estimation of the number of eggs.

It should be mentioned that thresholding may produce noise, especially in the grid lines of the paper. There are many methods for noise reduction such as low-pass filters and other smoothing operators. However, these methods highly depend on the size of the filter. Here components smaller than half of the estimated size of one egg, are considered as noise in the Equation (10), and are removed.

Software

The algorithm explained above, has been implemented in Java as open source software. After the user opens an image, the software automatically computes the threshold value, detects and removes areas of debris, estimates the number of eggs inside each pile of the eggs and removes the noise. After that, the user is able to remove, add, and edit the automatically detected features by means of a user-friendly graphical interface. Figure 3 shows the basic graphical user interface of the software. The user can zoom, select single and/or multiple objects, modify their properties etc. and after each modification the total number of eggs is recalculated.

Figure 3
figure 3

Basic graphical user interface. Zoom utility signaled by ‘a’, and egg count by ‘b’.

Figure 4 shows advanced options of the software, which allows the user to change the sensitivity of the thresholding as well as the sensitivity of the debris detection process. Finally, the user can save the results as an image indicating the number of eggs beside each object as well as the total number of eggs. Figure 2(d) shows a sample output of the software, and Figure 2(e) shows the result after a small manually modification. The application estimated 103 eggs and, after manual modification, it showed 92 eggs. Corrections are mainly required on the debris areas without enough colorful pixels beside them, and eggs that fall in the neighborhood of debris areas.

Figure 4
figure 4

Advanced graphical user interface. ‘c’ signals the advanced features for changing the automatic threshold and chroma value. ‘b’ signals a manually corrected egg.

Results and Discussion

The software was tested over 16 randomly chosen images from 2 different experiments. Table 1 shows the number of the eggs estimated by the software; the result after manually correction; the ground truth; the time that the application took in seconds; and the average time for manually counting in minutes.

Table 1 Results of 16 different images

As it is shown in the error rate column, the precision of the software after a first correction is on average more than 98%, whereas the time saved is enormous. For image number 3, the automatic processing was very poor and the user had to manually set the sensitivity parameters. It should be mentioned that a proper sensitivity can be easily found by just adjusting a sliding bar. Manually counting all eggs of an image containing more than 500 eggs can take up to 30 minutes but, the same image, can be processed by Egg-Counter v1.0 in only a few seconds.

The results show that the proposed automatic method produces results that are close to the ground truth, and by making a few adjustments, mainly in the regions of debris and the paper’s grid lines, these results get even closer to the ground truth. Multiplying the time gained by the number of images and experiments, results in economizing an extremely large amount of time. The sensitivity value of the test results for assessing the eggs is around 0.945 in the fully automatic use of the software and is higher after a few mouse clicks. The specificity value, in this case, makes no sense since the true negatives are not actually known. Elimination of thousands of noise pixels during different stages of the analysis does not allow a reliable calculation of the specificity of the software. Positive predictive value of the test is set around 0.921 for the full automatic version.

The proposed algorithm works well, if eggs are clearly darker than the background paper, even if they are brown or another dark color. To introduce better and higher contrast and a wider color difference between the paper and laid eggs, we suggest using white or semi-white paper. In addition, it is highly recommended to take images with a camera of at least 5M pixels, using the lowest ISO and maximum shutter speed and avoiding re-sizing the images afterwards. Depending on your Laboratory lightning conditions, you might need to use a flash.

Conclusion

In this article, a promising new software package for automatically counting Anopheles eggs was presented. A very intuitive graphical user interface is available, that allows correction of the detection results, if needed. Additionally, in the parameters section of the interface it is possible to control the sensitivity to egg detection. Nevertheless, the proposed approaches involved in the processing of such images demonstrated a very high level of robustness, as it was shown by the results. The adoption of the proposed software package will save many hours of labor for the bench scientist.

Author’s contributions

Ali Mollahosseini, António dos Anjos and Hamid Reza Shahbazkia contributed with the proposed methods and software and Marie Rossignol, Cédric Pennetier, Anna Cohuet and Fabrice Chandre for testing and providing the necessary material. All authors read and approved the final version of the manuscript.

References

  1. Ferguson HM, Dornhaus A, Beeche A, Borgemeister C, Gottlieb M, Mulla MS, Gimnig JE, Fish D, Killeen GF: Ecology: A prerequisite for malaria elimination and eradication. PLoS Med. 2010, 7 (8): e1000303-10.1371/journal.pmed.1000303.

    Article  PubMed Central  PubMed  Google Scholar 

  2. Yaro AS, Dao A, Adamou A, Crawford JE, Traoré SF, Touré AM, Gwadz R, Lehmann T: Reproductive output of female Anopheles gambiae (Diptera: Culicidae): comparison of molecular forms. J Med Entomol. 2006, 43 (5): 833-839. 10.1603/0022-2585(2006)43[833:ROOFAG]2.0.CO;2.

    Article  CAS  PubMed  Google Scholar 

  3. Sharma A, Parasher H, Singh OP, Adak T: Species B of Anopheles culicifacies (Diptera: Culicidae) is reproductively less fit than species A and C of the complex. Acta Tropica. 2009, 112 (3): 316-319. 10.1016/j.actatropica.2009.08.006.

    Article  PubMed  Google Scholar 

  4. Hogg JC, Thomson MC, Hurd H: Comparative fecundity and associated factors for two sibling species of the Anopheles gambiae complex occurring sympatrically in The Gambia. Med Vet Entomol. 1996, 10 (4): 385-391. 10.1111/j.1365-2915.1996.tb00761.x.

    Article  CAS  PubMed  Google Scholar 

  5. Manda H, Gouagna LC, Foster WA, Jackson RR, Beier JC, Githure JI, Hassanali A: Effect of discriminative plant-sugar feeding on the survival and fecundity of Anopheles gambiae. Malaria Journal. 2007, 6: 113-124. 10.1186/1475-2875-6-113.

    Article  PubMed Central  PubMed  Google Scholar 

  6. Gary RE, Foster WA: Effects of available sugar on the reproductive fitness and vectorial capacity of the malaria vector Anopheles gambiae (Diptera: Culicidae). J Med Entomol. 2001, 38: 22-28. 10.1603/0022-2585-38.1.22.

    Article  PubMed  Google Scholar 

  7. Pfaehler O, Oulo DO, Gouagna LC, Githure J, Guerin PM: Influence of soil quality in the larval habitat on development of Anopheles gambiae Giles. J Vector Ecol. 2006, 31 (2): 400-405. 10.3376/1081-1710(2006)31[400:IOSQIT]2.0.CO;2.

    Article  CAS  PubMed  Google Scholar 

  8. Yaro AS, Touré AM, Guindo A, Coulibaly MB, Dao A, Diallo M, Traoré SF: Reproductive success in Anopheles arabiensis and the M and S molecular forms of Anopheles gambiae: Do natural sporozoite infection and body size matter?. Acta Tropica. 2012, 122: 87-93. 10.1016/j.actatropica.2011.12.005.

    Article  PubMed  Google Scholar 

  9. Hogg JC, Hurd H: The effects of natural Plasmodium falciparum infection on the fecundity and mortality of Anopheles gambiae s. l. in north east Tanzania. Parasitology. 1997, 114 (Pt4): 325-331.

    Article  PubMed  Google Scholar 

  10. Hogg JC, Hurd H: Malaria-induced reduction of fecundity during the first gonotrophic cycle of Anopheles stephensi mosquitoes. Med Vet Entomol. 1995, 9 (2): 176-180. 10.1111/j.1365-2915.1995.tb00175.x.

    Article  CAS  PubMed  Google Scholar 

  11. Ferguson HM, Read AF: Why is the effect of malaria parasites on mosquito survival still unresolved?. Trends in Parasitology. 2002, 18 (6): 256-261. 10.1016/S1471-4922(02)02281-X.

    Article  PubMed  Google Scholar 

  12. Ahmed AM, Hurd H: Immune stimulation and malaria infection impose reproductive costs in Anopheles gambiae via follicular apoptosis. Microbes and Infection. 2006, 8 (2): 308-315. 10.1016/j.micinf.2005.06.026.

    Article  CAS  PubMed  Google Scholar 

  13. Lyimo IN, Keegan SP, Ranford-Cartwright LC, Ferguson HM: The impact of uniform and mixed species blood meals on the fitness of the mosquito vector Anopheles gambiae s.s: does a specialist pay for diversifying its host species diet?. Journal of Evolutionary Biology. 2012, 25 (3): 452-460. 10.1111/j.1420-9101.2011.02442.x.

    Article  CAS  PubMed  Google Scholar 

  14. Mosqueira B, Duchon S, Chandre F, Hougard JM, Carnevale P, Mas-Coma S: Efficacy of an insecticide paint against insecticide-susceptible and resistant mosquitoes - part 1: laboratory evaluation. Malaria Journal. 2010, 9: 340-346. 10.1186/1475-2875-9-340.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  15. Dhadialla TS, Carlson GR, Le DP: New insecticides with ecdysteroidal and juvenile hormone activity. Annu Rev Entomol. 1998, 43: 545-569. 10.1146/annurev.ento.43.1.545.

    Article  CAS  PubMed  Google Scholar 

  16. Okoye PN, Brooke BD, Hunt RH, Coetzee M: Relative developmental and reproductive fitness associated with pyrethroid resistance in the major southern African malaria vector, Anopheles funestus. Bulletin of Entomological Research. 2007, 97 (6): 599-605.

    Article  CAS  PubMed  Google Scholar 

  17. Djogbénou L, Labbé P, Chandre F, Pasteur N, Weill M: Ace-1 duplication in Anopheles gambiae: a challenge for malaria control. Malaria Journal. 2009, 8: 70-76. 10.1186/1475-2875-8-70.

    Article  PubMed Central  PubMed  Google Scholar 

  18. Li C, Marrelli MT, Yan G, Jacobs-Lorena M: Fitness of transgenic Anopheles stephensi mosquitoes expressing the SM1 peptide under the control of a vitellogenin promoter. J Hered. 2008, 99 (3): 275-282. 10.1093/jhered/esn004.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  19. Lambrechts L, Koella JC, Boëte C: Can transgenic mosquitoes afford the fitness cost?. Trends in Parasitology. 2008, 24: 4-7. 10.1016/j.pt.2007.09.009.

    Article  PubMed  Google Scholar 

  20. Munhenga G, Brooke BD, Chirwa TF, Hunt RH, Coetzee M, Govender D, Koekemoer LL: Evaluating the potential of the sterile insect technique for malaria control: relative fitness and mating compatibility between laboratory colonized and a wild population of Anopheles arabiensis from the Kruger National Park, South Africa. Parasites & Vectors. 2011, 4: 208-11. 10.1186/1756-3305-4-208.

    Article  Google Scholar 

  21. Kweka EJ, Owino EA, Mwang’onde BJ, Mahande AM, Nyindo M, Mosha F: The role of cow urine in the oviposition site preference of culicine and Anopheles mosquitoes. Parasites & Vectors. 2011, 4: 184-190. 10.1186/1756-3305-4-184.

    Article  Google Scholar 

  22. Yen JC, Chang FJ, Chang S: A new criterion for automatic multilevel thresholding. Image Processing, IEEE Transactions on. 1995, 4 (3): 370-378. 10.1109/83.366472.

    Article  CAS  Google Scholar 

  23. González R, Woods R: 2001, Addison-Wesley Longman Publishing Co., Inc., Boston, MA, USA

  24. Burger W, Burge MJ: Digital Image Processing: an algorithmic introduction using Java. 2008, Springer, New York

    Book  Google Scholar 

Download references

Acknowledgements

We would like to acknowledge IRD MIVEGEC Montpellier and DEEI UALG for having provided the necessary backup. We would like to thank Prof. Chris Arme, the editor of Parasites & Vectors, and the anonymous reviewers for their insightful and constructive comments.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Hamid Reza Shahbazkia.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors’ original submitted files for images

Rights and permissions

Open Access This article is published under license to BioMed Central Ltd. This is an Open Access article is distributed under the terms of the Creative Commons Attribution License ( https://creativecommons.org/licenses/by/2.0 ), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Reprints and permissions

About this article

Cite this article

Mollahosseini, A., Rossignol, M., Pennetier, C. et al. A user-friendly software to easily count Anopheles egg batches. Parasites Vectors 5, 122 (2012). https://doi.org/10.1186/1756-3305-5-122

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1756-3305-5-122

Keywords