METHODS article

Front. Neuroinform., 20 March 2018

Volume 12 - 2018 | https://doi.org/10.3389/fninf.2018.00012

A Density-Driven Method for the Placement of Biological Cells Over Two-Dimensional Manifolds

  • 1. UMR5293 Institut des Maladies Neurodégénératives (IMN), Bordeaux, France

  • 2. UMR5800 Laboratoire Bordelais de Recherche en Informatique (LaBRI), Talence, France

  • 3. Inria Bordeaux - Sud-Ouest Research Centre, Talence, France

Abstract

We introduce a graphical method originating from the computer graphics domain that is used for the arbitrary placement of cells over a two-dimensional manifold. Using a bitmap image whose luminance provides cell density, this method guarantees a discrete distribution of the positions of the cells respecting the local density. This method scales to any number of cells, allows one to specify arbitrary enclosing shapes and provides a scalable and versatile alternative to the more classical assumption of a uniform spatial distribution. The method is illustrated on a discrete homogeneous neural field, on the distribution of cones and rods in the retina and on the neural density of a flattened piece of cortex.

1. Introduction

The spatial localization of neurons in the brain plays a critical role since their connectivity patterns may depend on their type and their position relatively to nearby neurons and areas (Ivenshitz and Segal, 2010). In the cortex, the probability of a connection existing between any two given areas declines sharply with distance (Markov et al., 2013), following an exponential decay with distance according to (Ercsey-Ravasz et al., 2013). For more local connections, such as interneurons, they generally have localized axonal arbors and interact mostly with close neighbors, depending on the distance (Jiang et al., 2015) from which a Gaussian probability of connection as a function of lateral distance can be derived (Potjans and Diesmann, 2012). Interestingly enough, whereas the neuroscience literature provides many data about the spatial distribution of neurons in different areas and species [e.g., Pasternak and Woolsey, 1975 about the spatial distribution of neurons in the mouse barrel cortex (McCormick et al., 2000) about the neuron spatial distribution and morphology in the human cortex (Blazquez-Llorca et al., 2014) about the spatial distribution of neurons innervated by chandelier cells], the computational literature exploiting such data is rather scarce and the spatial localization is hardly taken into account in most neural network models (be it computational, cognitive or machine learning models). One reason may be the inherent difficulty in describing the precise topography of a population such that most of the time, only the overall topology is described in terms of layers, structures or groups with their associated connectivity patterns (random, one to one, one to all, receptive fields, etc.). One can also argue that such precise localization is not necessary because for some models, it is not relevant (machine learning) while for some others, it may be subsumed into the notion of cell assemblies (Hebb, 1949) that represent the spatiotemporal structure of a group of neurons wired and acting together. Considering cell assemblies as the basic computational unit, one can consider local interactions to be subsumed into such assemblies and consequently, the exact spatial position of the neurons is not relevant. However, if cell assemblies allow to greatly simplify models, they also bring implicit limitations of which some have been highlighted in (Nallapu et al., 2017), such as for example the impossibility of having ambiguous representations (if such representations are identified with a single cell assembly) or to have topographic projections between two different groups. To overcome such potential limitations, we think the spatial localization of neurons is an important criterion worth to be studied because it could induce original connectivity schemes from which new computational properties can be derived as illustrated in Figure 1. However, before studying the influence of the spatial localization of neurons, it is necessary to first design a method for the arbitrary placement of neurons. This article introduces a graphical and scalable method for the automatic placement of neurons (or any other type of cells actually) enforcing a user-provided density map. This graphical method is based on a stippling technique originating from the computer graphics domain for non-photorealistic rendering as illustrated in Figure 2.

Figure 1

Figure 2

2. Methods

Blue noise (Ulichney, 1987) is an even, isotropic yet unstructured distribution of points (Mehta et al., 2012) and has minimal low frequency components and no concentrated spikes in the power spectrum energy (Zhang et al., 2016). Said differently, blue noise (in the spatial domain) is a type of noise with intuitively good properties: points are evenly spread without visible structure (see Figure 3 for the comparison of a uniform distribution and a blue noise distribution). This kind of noise has been extensively studied in the computer graphics domain and image processing because it can be used for object distribution, sampling, printing, half-toning, etc. One specific type of spatial blue noise is the Poisson disc distribution that is a 2D uniform point distribution in which all points are separated from each other by a minimum radius (see right part of Figure 3). Several methods have been proposed for the generation of such noise, from the best in quality (dart throwing, Cook, 1986) to faster ones (rejection sampling, Bridson, 2007), see (Lagae and Dutré, 2008) for a review. An interesting variant of the Poisson disk distribution is an anisotropic distribution where local variations follow a given density function as illustrated in Figure 2 where the density function has been specified using the image gray levels. On the stippled image on the right, darker areas have a high concentration of dots (e.g., soles of the boots) while lighter areas such as the background display a sparse distribution of dots. There exist several techniques for computing such stippling density-driven patterns (optimal transport, Mehta et al., 2012, variational approach, Chen et al., 2012, least squares quantization, Lloyd, 1982, etc.) but the method proposed by (Secord, 2002) is probably the most straightforward and simple and has been replicated in (Rougier, 2017).

Figure 3

2.1. Centroidal voronoi tesselation

Considering a set of n points P = {Pi}i∈[1, n] on a finite domain D ∈ ℝ2, the Voronoi tesselation V(P) = {Vi}i∈[1, n] of P is defined as:

Reciprocally, the (unique) Delaunay triangulation T(P) = {Ti}i∈[1, n] of P is the dual graph of the Voronoi diagram and defined such that no point in P is inside the circumcircle of any triangles in T(P). The centers of the circumcircles are equivalent to the Voronoi diagram, i.e., a partition of D into Voronoi cells. For each of the cell Vi, we can compute its centroid Ci which is the center of mass of the cell. A Voronoi tesselation is said to be centroidal when we have ∀i ∈ [1, n], Ci = Pi (see Figure 3).

For an arbitrary set of points, there is no guarantee that the corresponding Voronoi tesselation is centroidal but different methods can be used to generate a centroidal tesselation from an arbitrary set of points. One of the most straightforward and iterative methods is the Lloyd relaxation scheme (Lloyd,

1982

):

  • The Voronoi diagram of the n points is computed

  • The centroid of each of the n Voronoi cell is computed.

  • Each point is moved to the corresponding centroid of its Voronoi cell.

  • The method terminates if criterion is met (see below), else go to 1.

The algorithm finishes when the maximum distance between points and centroids is less than a given threshold as illustrated in Figure 3. It is to be noted that because of numerical imprecisions, there is no guarantee that an arbitrary small threshold can be reached.

2.2. Weighted centroidal voronoi tesselation

The weighted centroidal Voronoi tesselation, as illustrated in Figure

4

, has been proposed in (Secord,

2002

) and replicated in (Rougier,

2018

). It is based on the Lloyd relaxation scheme with the notable difference that the centroids are now weighted according to the local density. This density information is provided using a bitmap image that represents the domain

D

∈ ℝ

2

. Any of the RGB channels of the image can be used to provide the density information at a specific integer coordinate position. By arbitrary convention, we'll consider the darker color (e.g., black) to have the the higher density. The method is then as follows:

  • The density image is resized if necessary (no interpolation)

  • The Voronoi diagram of the n points is computed

  • Each Voronoi cell is rasterized as a set of pixels

  • The weighted centroid is computed over each of the rasterized cell

  • Each point is moved to the corresponding centroid of its Voronoi cell

  • The method terminates if criterion is met, else go to 2

Figure 4

A different criterion for the termination is to use a fixed number of iterations as we did for all the examples introduced in this article (n = 25).

Figure 4 illustrates the main difficulty in the method, that is, the rasterization of the cells and the computation of the weighted centroids. Since we use a bitmap image providing the density information and because the weighted centroids are computed over rasterized cells, it is quite obvious that the precision of the method is heavily dependent on the number of points and the size of the image. We estimated that a good precision can be reached if the mean number of pixels of a rasterized Voronoi cell is around 100 pixels (see Figure 5). For example, if we have initially 1,000 points to distribute and use a 100 × 100 input image, we would have only 10 pixels (100*100/1, 000) to compute the weighted centroid. Resizing first the image to 400 × 400 (without interpolation) makes this number to grow to 160 (400*400/1, 000). To obtain this 100 pixels estimation, we generated several polygons at different resolutions and compared the actual centroid (using its geometric definition) with the estimated centroid, considering a uniform density (whose center of mass is equal to the geometric centroid in such case).

Figure 5

Figure 6 shows the distribution of four populations with respective size 1,000, 2,500, 5,000 and 10,000 cells, using the same linear gradient as input. The local density is approximately independent of the total number of cells.

Figure 6

3. Results

We'll now illustrate the use of the proposed method on three different cases.

3.1. Case 1: retina cells

The human retina counts two main types of photoreceptors, namely rods and cones (L-cones, M-cones and S-cones). They are distributed over the retinal surface in a non-uniform way, with a high concentration of cones (L-cones and M-cones) in the foveal region while the rods are to be found mostly in the peripheral region with a peak density at around 18–20° of foveal eccentricity. Furthermore, the respective size of those cells is different, rods being much smaller than cones. The distribution of rods and cones in the human retina has been extensively studied in the literature and is described precisely in a number of works (Curcio et al., 1990; Ahnelt and Kolb, 2000). Our goal here is not to fit the precise distribution of cones and rods but rather to give a generic procedure that can be eventually used to fit those figures, for a specific region of the retina or the whole retina. The main difficulty is the presence of two types of cells having different sizes. Even though there exist blue-noise sampling procedures taking different sizes into account (Zhang et al., 2016), we'll use instead the aforementioned method using a two stages procedure as illustrated in Figure 7.

Figure 7

A first radial density map is created for the placement of 25 cones and the stippling procedure is applied for 15 steps to get the final positions of the 25 cones. A linear rod density map is created where discs of varying (random) sizes of null density are created at the positions of the cones. These discs will prevent the rods from spreading over these areas. Finally, the stippling procedure is applied a second time over the newly built density map for 25 iterations. The final result can be seen in Figure 7C where rods are tightly packed on the left, loosely packed on the right and nicely circumvent the cones.

3.2. Case 2: neural field

Dynamic neural fields (DNF) describe the dynamics of a large population of neurons by taking the continuum limit in space, using coarse-grained properties of single neurons to describe the activity (Wilson and Cowan, 1972, 1973; Amari, 1977; Coombes et al., 2014). In this example, we consider a neural field with activity u that is governed by an equation of the type:

The lateral connection kernel w is a difference of Gaussians (DoG) with short range excitation and long range inhibition that reads:

The input I(x) is a scaled white noise that reads:

and the function f is a clamped linear function between 0 and 1 such that:

In order to solve the neural field equation, the spatial domain was discretized into a 40 × 40 grid, the temporal resolution was set to dt = 100ms and the simulation was run for t = 10 s. Relevant parameters are given in Table 1. In Figure 8A, one can see the characteristic Turing patterns that have formed within the field. The number and size of clusters depend on the lateral connection kernel. Figure 8B shows the discretized and homogeneous version of the DNF where each cell has been assigned a position on the field, the connection kernel function and the parameters being the same as in the continuous version. The result of the simulation shown in Figure 8B is the normalized histogram of cell activities using 40 × 40 regular bins. One can see the formation of the Turing patterns that are similar to the continuous version. In Figure 8C however, the positions of the cells have been changed (using the proposed stippling method) such that there is an annulus of higher density. This is the only difference with the previous model. While the output can still be considered to be Turing patterns, one can see clearly that the activity clusters are precisely localized onto the higher density regions. Said differently, the functional properties of the field have been modified by a mere change in the structure. This suggests that the homogeneous condition of neural fields (that is the standard hypothesis in most works because it facilitates mathematical analysis) is actually quite a strong limitation that constrains the functional properties of the field.

Table 1

ParameterNameValue
Grid sizen40
Timestepdt100 ms
Durationt10 s
Time constantτ750 ms
Resting potentialh0
Input scalingIs0.1
Noise levelN0.1
Scaling factors402/n2
Sigma excitatoryσe0.05
Scale excitatoryIe0.15 × s
Sigma inhibitoryσi0.085
Scale inhibitoryIi0.05 × s

Parameters for the neural fields.

Figure 8

3.3. Case 3: cortical density

It has been shown in (Collins et al., 2010, Young et al., 2013, and Collins et al., 2016) that the neural density varies across and within cortical areas with an inverse relationship to the average neuron size: larger neurons take up more space and thus cannot be as densely packed as smaller neurons. (Collins et al., 2010) have studied the neural density in a cortical hemisphere of five primates and provided all the relevant data in the supplementary information. They dissected the flat hemisphere into a grid of 5 × 5mm piece and used an isotropic fractionator method to estimate the number of cells (neurons and non-neurons). To illustrate the method, we'll use the data from one of the two galagos that have been studied in order to produce a discrete distribution of sites enforcing the local measured density.

Using the Inkscape software2, we opened the supplementary information PDF file from (Collins et al., 2010) and isolated the top of the Figure S3 (galago 07-104). We renamed each individual patch according to the patch number indicated in the figure and saved the result as a SVG file. We took the first datasheet (galago 07-104) of the S1 dataset (Excel format) and converted it to a CSV format. Using the matplotlib library (Hunter, 2007), we produced a bitmap file (size 1000 × 1000 pixels see Figure 9A) where each cortical patch was drawn using a gray level that corresponds to its normalized density, a density of 1.0 (black color) corresponding to the most densely populated area (area 2).

Figure 9

Using the Shapely library (Gillies et al., 2007), we computed the convex hull of the whole set of the 36 cortical patches as well as the centroid for each individual patch. The boundary of the convex hull was resampled such as to have 50 equidistant points along the outline. The density information for these points was computed using the density of the nearest centroid. A cubic two-dimensional interpolation was computed inside the convex hull using a Clough-Tocher differential scheme (Alfeld, 1984) and the result was saved as a bitmap file (size 1000 × 1000 pixels, see Figure 9C). We'll refer to this interpolation as the continuous case.

The two bitmap files were processed with the provided stippler script (Rougier, 2018) using the red channel for density information and run over 25 iterations using N = {1000, 5000, 10000, 25000, 50000} sites. The result, for a single run, is a file with the 2-D coordinates of the N sites, the case for N = 25000 being shown on Figures 5C,D. From these coordinates, we computed the density for each of the original cortical patches by computing the patch area size and the number of sites inside. Results are indicated in Table 2. Unsurprisingly, the accuracy of the distribution grows with the number of sites (with one exception in the continuous case). For N = 50,000 sites, the difference between the actual density and the distribution is within a margin of 5%. In the continuous case however, it does not seem reasonable to expect a much higher accuracy than in the discrete (patch) case because the bitmap 1, 000 × 1000 has been interpolated using only 36 sites (patch centroids).

Table 2

PatchContinuousComputation time
N = 1,0005.4% (±4.3%)6.9% (±4.4%)42s
N = 5,0002.8% (±2.9%)3.6% (±2.3%)1m52
N = 10,0002.8% (±1.8%)4.0% (±3.0%)2m55
N = 25,0002.3% (±2.0%)2.9% (±2.8%)5m35
N = 50,0000.8% (±0.6%)2.6% (±2.0%)8m44

Mean difference between the actual (normalized) density and the mean neural density using a patch bitmap (Figure 9A) and a continuous cubic interpolated bitmap (Figure 9C) for a various number of sites.

Computation times are only indicative and have been measured on a MacBook Pro with an Intel Core i7.

4. Discussion

We've introduced a graphical method for the placement of biological cells over a two-dimensional manifold enforcing a density distribution that is provided using a bitmap image and the method has been illustrated on three simple use cases. For a more realistic placement (i.e., actual three dimensional structures), the method could be adapted but it is to be noted that several methods have been recently proposed. Parametric anatomical modeling (Pyka et al., 2014) allows one to model the anatomical layout of neurons as well as their projections while the work by (Schneider et al., 2014) allows one to go even further down by taking into account the dendritic morphology of neurons. However, due to its simplicity and beyond a strict biological plausibility, we think the proposed method might be interesting for a number of models, intermediate between symbolic models and realistic models. Our intuition is that such topography may be an important aspect that needs to be taken into account and studied in order for a model to benefit from structural functionality. For example, the Figure 1 shows the influence of the spatial distribution on the signal propagation when considering a simple nearest neighbors connectivity scheme. Even though such connectivity is unlikely to exist inside the brain, it might be nonetheless worth to be studied because it may provide structural functionality, that is, a function that directly derives from the topography.

Notes

All figures were produced using the Python scientific stack, namely, SciPy (Jones et al., 2001), Matplotlib (Hunter, 2007), and NumPy (van der Walt et al., 2011). All sources are available on GitHub at github.com/rougier/density-driven (Rougier, 2018).

Statements

Author contributions

NR designed and wrote the code, performed the experiments analysis and wrote the article.

Conflict of interest

The author declares that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

References

  • 1

    AhneltP. K.KolbH. (2000). The mammalian photoreceptor mosaic-adaptive design. Progr. Retinal Eye Res.19, 711777. 10.1016/S1350-9462(00)00012-4

  • 2

    AlfeldP. (1984). A trivariate clough—tocher scheme for tetrahedral data. Comput. Aid. Geometr. Design1, 169181. 10.1016/0167-8396(84)90029-3

  • 3

    AmariS.-I. (1977). Dynamics of pattern formation in lateral-inhibition type neural fields. Biol. Cyber.27, 7787. 10.1007/BF00337259

  • 4

    Blazquez-LlorcaL.WoodruffA.InanM.AndersonS. A.YusteR.DeFelipeJ.et al. (2014). Spatial distribution of neurons innervated by chandelier cells. Brain Struc. Funct.220, 28172834. 10.1007/s00429-014-0828-3

  • 5

    BridsonR. (2007). Fast poisson disk sampling in arbitrary dimensions, in ACM SIGGRAPH 2007 Sketches on - SIGGRAPH '07 (San Diego, CA: ACM Press).

  • 6

    ChenZ.YuanZ.ChoiY.-K.LiuL.WangW. (2012). Variational blue noise sampling. IEEE Trans. Visual. Comput. Graph.18, 17841796. 10.1109/TVCG.2012.94.

  • 7

    CollinsC. E.AireyD. C.YoungN. A.LeitchD. B.KaasJ. H. (2010). Neuron densities vary across and within cortical areas in primates. Proc. Natl. Acad. Sci. U.S.A.107, 1592715932. 10.1073/pnas.1010356107

  • 8

    CollinsC. E.TurnerE. C.SawyerE. K.ReedJ. L.YoungN. A.FlahertyD. K.et al. (2016). Cortical cell and neuron density estimates in one chimpanzee hemisphere. Proc. Natl. Acad. Sci. U.S.A.113, 740745. 10.1073/pnas.1524208113

  • 9

    CookR. L. (1986). Stochastic sampling in computer graphics. ACM Trans. Graph.5, 5172. 10.1145/7529.8927

  • 10

    CoombesS.beim GrabenP.PotthastR.WrightJ. editors (2014). Neural Fields. Berlin;Heidelberg: Springer.

  • 11

    CurcioC. A.SloanK. R.KalinaR. E.HendricksonA. E. (1990). Human photoreceptor topography. J. Comparat. Neurol.292, 497523. 10.1002/cne.902920402

  • 12

    EbeidaM. S.AwadM. A.GeX.MahmoudA. H.MitchellS. A.KnuppP. M.et al. (2014). Improving spatial coverage while preserving the blue noise of point sets. Comput. Aid. Design46, 2536. 10.1016/j.cad.2013.08.015

  • 13

    Ercsey-RavaszM.MarkovN. T.LamyC.EssenD. C. V.KnoblauchK.ToroczkaiZ.et al. (2013). A predictive network model of cerebral cortical connectivity based on a distance rule. Neuron80, 184197. 10.1016/j.neuron.2013.07.036

  • 14

    GilliesS.BierbaumA.LautaporttiK.TonnhoferO. (2007). Shapely: Manipulation and Analysis of Geometric Objects. Available online at: https://github.com/Toblerity/Shapely

  • 15

    HebbD. O. (1949). The Organization of Behavior: a Neuropsychological Theory. New York, NY: Wiley.

  • 16

    HunterJ. D. (2007). Matplotlib: a 2d graphics environment. Comput. Sci. Eng.9, 9095. 10.1109/MCSE.2007.55

  • 17

    IvenshitzM.SegalM. (2010). Neuronal density determines network connectivity and spontaneous activity in cultured hippocampus. J. Neurophysiol.104, 10521060. 10.1152/jn.00914.2009

  • 18

    JiangX.ShenS.CadwellC. R.BerensP.SinzF.EckerA. S.et al. (2015). Principles of connectivity among morphologically defined cell types in adult neocortex. Science350:aac9462. 10.1126/science.aac9462

  • 19

    JonesE.OliphantT.PetersonP. (2001). SciPy: Open Source Scientific Tools for Python. Available online at: http://www.scipy.org/

  • 20

    LagaeA.DutréP. (2008). A comparison of methods for generating poisson disk distributions. Comput. Graph. Forum27, 114129. 10.1111/j.1467-8659.2007.01100.x

  • 21

    LloydS. (1982). Least squares quantization in PCM. IEEE Trans. Inform. Theory28, 129137. 10.1109/TIT.1982.1056489

  • 22

    MarkovN. T.Ercsey-RavaszM.LamyC.GomesA. R. R.MagrouL.MiseryP.et al. (2013). The role of long-range connections on the specificity of the macaque interareal cortical network. Proc. Natl. Acad. Sci. U.S.A.110, 51875192. 10.1073/pnas.1218972110

  • 23

    McCormickB.DeVaulR.ShankleW.FallonJ. (2000). Modeling neuron spatial distribution and morphology in the developing human cerebral cortex. Neurocomputing 32–33, 897904. 10.1016/S0925-2312(00)00258-7

  • 24

    MehtaS. U.WangB.RamamoorthiR. (2012). Axis-aligned filtering for interactive sampled soft shadows. ACM Trans. Graph.31:1. 10.1145/2366145.2366182

  • 25

    NallapuB. T.SurampudiB. R.RougierN. P. (2017). The art of scaling up : a computational account on action selection in basal ganglia, in 2017 International Joint Conference on Neural Networks (IJCNN) (Anchorage, AK: IEEE).

  • 26

    PasternakJ. F.WoolseyT. A. (1975). The number, size and spatial distribution of neurons in lamina IV of the mouse SmI neocortex. J. Comparat. Neurol.160, 291306. 10.1002/cne.901600303

  • 27

    PotjansT. C.DiesmannM. (2012). The cell-type specific cortical microcircuit: Relating structure and activity in a full-scale spiking network model. Cereb. Cortex24, 785806. 10.1093/cercor/bhs358

  • 28

    PykaM.KlattS.ChengS. (2014). Parametric anatomical modeling: a method for modeling the anatomical layout of neurons and their projections. Front. Neuroanat.8:91. 10.3389/fnana.2014.00091

  • 29

    RougierN. P. (2017). [Re] Weighted voronoi stippling. ReScience3:2017. 10.5281/zenodo.802285

  • 30

    RougierN. P. (2018). A Density-Driven Method for the Placement of Biological Cells Over Two-Dimensional Manifolds: Code. (Zenodo). 10.5281/zenodo.1172461

  • 31

    SchneiderC. J.CuntzH.SolteszI. (2014). Linking macroscopic with microscopic neuroanatomy using synthetic neuronal populations. PLoS Comput. Biol.10:e1003921. 10.1371/journal.pcbi.1003921

  • 32

    SecordA. (2002). Weighted voronoi stippling, in Proceedings of the Second International Symposium on Non-photorealistic Animation and Rendering - NPAR '02. (ACM Press).

  • 33

    UlichneyR. (1987). Digital Halftoning. Cambridge, MA: MIT Press.

  • 34

    van der WaltS.ColbertS. C.VaroquauxG. (2011). The NumPy array: a structure for efficient numerical computation. Comput. Sci. Eng.13, 2230. 10.1109/MCSE.2011.37

  • 35

    WilsonH. R.CowanJ. D. (1972). Excitatory and inhibitory interactions in localized populations of model neurons. Biophys. J.12, 124. 10.1016/S0006-3495(72)86068-5

  • 36

    WilsonH. R.CowanJ. D. (1973). A mathematical theory of the functional dynamics of cortical and thalamic nervous tissue. Kybernetik13, 5580. 10.1007/BF00288786

  • 37

    YoungN. A.CollinsC. E.KaasJ. H. (2013). Cell and neuron densities in the primary motor cortex of primates. Front. Neural Circ.7:30. 10.3389/fncir.2013.00030

  • 38

    ZhangS.GuoJ.ZhangH.JiaX.YanD.-M.YongJ.et al. (2016). Capacity constrained blue-noise sampling on surfaces. Comput. Graph.55, 4454. 10.1016/j.cag.2015.11.002

Summary

Keywords

stippling, Voronoi, spatial distribution, density, cells, neurons, retina, cortex

Citation

Rougier NP (2018) A Density-Driven Method for the Placement of Biological Cells Over Two-Dimensional Manifolds. Front. Neuroinform. 12:12. doi: 10.3389/fninf.2018.00012

Received

14 October 2017

Accepted

27 February 2018

Published

20 March 2018

Volume

12 - 2018

Edited by

Arjen van Ooyen, VU University Amsterdam, Netherlands

Reviewed by

Hans Ekkehard Plesser, Norwegian University of Life Sciences, Norway; Sacha Jennifer Van Albada, Forschungszentrum Jülich, Germany

Updates

Copyright

*Correspondence: Nicolas P. Rougier

Disclaimer

All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.

Outline

Figures

Cite article

Copy to clipboard


Export citation file


Share article

Article metrics