https://github.com/emmt/centerofgravity.jl
Julia package for computing centers of gravity in images
https://github.com/emmt/centerofgravity.jl
Last synced: 5 months ago
JSON representation
Julia package for computing centers of gravity in images
- Host: GitHub
- URL: https://github.com/emmt/centerofgravity.jl
- Owner: emmt
- License: mit
- Created: 2022-05-09T10:35:38.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-18T08:52:24.000Z (almost 2 years ago)
- Last Synced: 2025-01-29T05:41:19.088Z (over 1 year ago)
- Language: Julia
- Size: 66.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# CenterOfGravity [](https://github.com/emmt/CenterOfGravity.jl/actions/workflows/CI.yml?query=branch%3Amain) [](https://ci.appveyor.com/project/emmt/CenterOfGravity-jl) [](https://codecov.io/gh/emmt/CenterOfGravity.jl)
`CenterOfGravity` is a small Julia package to compute centers of gravity in
images (that is 2-dimensional arrays). By playing with the arguments of the
`center_of_gravity` method, a variety of algorithms for computing the center of
gravity can be emulated by this package.
## Installation
The easiest way to install `CenterOfGravity` is via Julia registry
[`EmmtRegistry`](https://github.com/emmt/EmmtRegistry):
```julia
using Pkg
pkg"registry add General" # if not yet any registries
pkg"registry add https://github.com/emmt/EmmtRegistry"
pkg"add CenterOfGravity"
```