All Projects → d-dotsenko → DDBlackWhite

d-dotsenko / DDBlackWhite

Licence: MIT License
🎨🚫 Make your image black and white

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to DDBlackWhite

white-theme-vscode
Minimalist monochrome theme for Visual Studio Code
Stars: ✭ 66 (+200%)
Mutual labels:  white, monochrome
yiq
Returns white when a color is dark and black when a color is light.
Stars: ✭ 24 (+9.09%)
Mutual labels:  white, black
video coloriser
Pytorch Convolutional Neural Net and GAN based video coloriser that converts black and white video to colorised video.
Stars: ✭ 29 (+31.82%)
Mutual labels:  white, black
HackDown
A pure black and white responsive markdown blog generator
Stars: ✭ 16 (-27.27%)
Mutual labels:  white, black
Light-Shallow
iOS 采集,录制,实时滤镜,存储相册,视频编辑,音视频合成
Stars: ✭ 30 (+36.36%)
Mutual labels:  coreimage
flop
Filtering, ordering and pagination for Ecto
Stars: ✭ 56 (+154.55%)
Mutual labels:  filter
react-sendbird-messenger
ReactJS (React-router-dom v6 + Antdesign + Firebase + Sendbird + Sentry) codebase containing real world examples (CRUD, auth, advanced patterns, etc).
Stars: ✭ 39 (+77.27%)
Mutual labels:  filter
BioBalanceDetector
Bio Balance Detector's products aim to show the weak electromagnetic fields around every living being (including plants, animals and humans) and display it in a heat-map like hyper-spectral image.
Stars: ✭ 18 (-18.18%)
Mutual labels:  filter
matchering-cli
🎚️ Simple Matchering 2.0 Command Line Application
Stars: ✭ 28 (+27.27%)
Mutual labels:  filter
Bilateral-Filter
A filter that smooths images while preserving edges.
Stars: ✭ 18 (-18.18%)
Mutual labels:  filter
yoru.
A black Substratum theme for Samsung Oreo only.
Stars: ✭ 21 (-4.55%)
Mutual labels:  black
macos-blank-screensaver
Blank (black) screensaver for MacOS
Stars: ✭ 27 (+22.73%)
Mutual labels:  black
monot
moncohrome.からの新しいウェブブラウザ。Electronを活用して作られています。
Stars: ✭ 20 (-9.09%)
Mutual labels:  monochrome
reactant
Generate code for "models, views, and urls" based on Python type annotations. Supports Django REST, SQLAlchemy, Peewee.
Stars: ✭ 14 (-36.36%)
Mutual labels:  black
eloquent-mongodb-repository
Eloquent MongoDB Repository Implementation
Stars: ✭ 18 (-18.18%)
Mutual labels:  filter
Exopite-Multifilter-Multi-Sorter-WordPress-Plugin
Display and/or sort/filter any page or post types by multiple taxonomies or terms (like post by categories and/or tags) with AJAX. Exopite multifilter, multi-sortable, multi selectable, multi filterable sortable Wordpress Plugin.
Stars: ✭ 18 (-18.18%)
Mutual labels:  filter
loggin-js
📝 Customizable and expandable logger for Node.js
Stars: ✭ 20 (-9.09%)
Mutual labels:  filter
bro-q
Chrome Extension for JSON formatting and jq filtering in your browser.
Stars: ✭ 82 (+272.73%)
Mutual labels:  filter
GazeToolkit
Toolkit for processing eye movement data, fixation filtering, smoothing, etc.
Stars: ✭ 21 (-4.55%)
Mutual labels:  filter
Audio-Digital-Processing
数字信号处理大作业:Matlab实现语音分析:加噪声,频谱分析,滤波器等等(内附报告)【Matlab for speech analysis: add noise, spectrum analysis, filter, etc】
Stars: ✭ 40 (+81.82%)
Mutual labels:  filter

DDBlackWhite

Language Platform License Version

Make your image black and white

DDBlackWhite

Installation

CocoaPods

To install DDBlackWhite via CocoaPods, add the following line to your Podfile:

pod 'DDBlackWhite'

After installing the cocoapod into your project import DDBlackWhite with:

import DDBlackWhite

Carthage

To install DDBlackWhite via Carthage, add the following line to your Cartfile:

github "d-dotsenko/DDBlackWhite"

And then run:

carthage update

Manually

Add DDBlackWhite folder to your Xcode project.

Usage

See the example Xcode project.

Basic setup

Create the DDBlackWhite instance, set the inputImage and brightness variables. Call getFilteredImage method and its closure will return the filtered image.

let blackWhite = DDBlackWhite()
blackWhite.inputImage = image
blackWhite.brightness = 0.8
blackWhite.getFilteredImage { (image) in
// filtered image received
}

Populating the data

var inputImage: UIImage?
private(set) var outputImage: UIImage?
var brightness: CGFloat // The filter brightness value (0.0 ... 1.0), Default is 0.5

func getFilteredImage(closure: @escaping (UIImage?)->Void)

Requirements

  • iOS 9.0
  • Xcode 10, Swift 4.2

License

DDBlackWhite is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].