An open API service indexing awesome lists of open source software.

https://github.com/crystal-data/spyglass


https://github.com/crystal-data/spyglass

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# spyglass

A simple wrapper around SOD - An Embedded Computer Vision & Machine Learning Library, that provides
access to powerful low-level image manipulation routines, as well as high level interaction with
images using N-Dimensional Tensors from Bottle.

## Installation

You will need clang installed in order to build the sod library.

1. Add the dependency to your `shard.yml`:

```yaml
dependencies:
spyglass:
github: crystal-data/spyglass
```

2. Run `shards install`

## Usage

```crystal
require "spyglass"
```

Currently, basic manipulations are supported:

```crystal
img = Spyglass::Image.from_file("rider.png")
gray = img.grayscale
gray.save("grayscale.png")
```

![](./static/grayscale.png)

```crystal
img = Spyglass::Image.from_file("stop.jpg", 1)
binary = img.otsu
binary.save("binary_dilation.png")
```

![](./static/binary_dilation.png)

## Contributing

1. Fork it ()
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

## Contributors

- [Chris Zimmerman](https://github.com/your-github-user) - creator and maintainer