Git Product home page Git Product logo

histogramview's Introduction

HistogramView

HistogramView

A SwiftUI view for displaying image histograms.

How do I use it?

It's as simple as:

HistogramView(image: myImage)

Note: Both UIImage & NSImage are supported (by the HistogramImage typealias, depending on the platform).

What options do I have for configuration?

The initializer supports channel opacity, blendMode and scale for the final graph.

/// The opacity of each channel layer. Default is `1`
public let channelOpacity: CGFloat

/// The blend mode for the channel layers. Default is `.screen`
public let blendMode: BlendMode

/// The scale of each layer. Default is `1`
public let scale: CGFloat

How fast is this thing?

Under the hood the histogram calculation is performed by Accelerate's vImageHistogramCalculation_ARGB8888 for RGB channels, so it's pretty fast actually. Fast enough to be perfomed synchronously (although didn't test it on gigantic images).

How is the graph curve produced?

Each channel is a SwiftUI Path that uses Hermite interpolation for generating a continous curve. The actual implementation for the interpolator is taken from @FlexMonkey's implementation (part of the Filterpedia project) and adapted to be used on Path instead of UIBezierPath.

Authors

Vasilis Akoinoglou, [email protected]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.