Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/esheldon/ngmix
Gaussian mixtures and image processing implemented in python
https://github.com/esheldon/ngmix
c image-processing python
Last synced: 3 days ago
JSON representation
Gaussian mixtures and image processing implemented in python
- Host: GitHub
- URL: https://github.com/esheldon/ngmix
- Owner: esheldon
- License: other
- Created: 2013-11-09T22:50:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-12-13T16:04:57.000Z (about 2 months ago)
- Last Synced: 2025-02-07T14:02:14.686Z (3 days ago)
- Topics: c, image-processing, python
- Language: Python
- Homepage:
- Size: 5.43 MB
- Stars: 44
- Watchers: 9
- Forks: 18
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README
ngmix
=====[![Build Status](https://travis-ci.com/esheldon/ngmix.svg?branch=master)](https://travis-ci.com/esheldon/ngmix)
Gaussian mixture models and other tools for working with 2d images, implemented
in python. The code is made fast using the numba package.For some examples, please see [the wiki](https://github.com/esheldon/ngmix/wiki).
dependencies
------------* numpy
* numba >= 0.43optional dependencies
---------------------
* scipy: for image fitting using the Levenberg-Marquardt fitter
* galsim: for performing metacalibration operations.
* scikit-learn: for sampling multivariate PDFsinstallation
------------
```bash
# using conda. This also installs numba and numpy
conda install -c conda-forge ngmix# from source. In this case you need to install numba yourself
python setup.py install
conda install numba
```Notes on versions
-----------------The api for fitting routines and "bootstrapping" code was rewritten for the
ngmix version 2 release. This is a "breaking change", so if you have existing
code that uses the ngmix version 1 apis you most likely will need to update it.
You can also install version 1.3.8 to get the old api.The wiki has been updated to reflect the new usage patterns.