-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNTJBilateralCIFilter.podspec
34 lines (23 loc) · 1.42 KB
/
NTJBilateralCIFilter.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = "NTJBilateralCIFilter"
s.version = "1.0.0"
s.summary = "Bilateral filter, implemented as a CoreImage kernel (CIKernel)"
s.description = <<-DESC
Bilateral filtering as described by Wikipedia is: "a non-linear, edge-preserving and noise-reducing smoothing filter for images."
Think: Gaussian blurring, but with feature detection/preservation.
By implementing as a `CIKernel`, it's capable of processing images (even via webcam feed) in realtime.
DESC
s.homepage = "https://github.com/notjosh/NTJBilateralCIFilter"
s.screenshots = "https://s3.amazonaws.com/f.cl.ly/items/0F0R1g0G0o211R3r0g1o/Screen%20Shot%202016-06-03%20at%206.04.26%20AM.png?v=4d2a974f",
"https://s3.amazonaws.com/f.cl.ly/items/081f013U3u0s132E3L40/Screen%20Shot%202016-06-03%20at%206.02.57%20AM.png?v=e3f20e9c"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Joshua May" => "[email protected]" }
s.social_media_url = "http://twitter.com/notjosh"
s.platform = :osx
s.source = { :git => "https://github.com/notjosh/NTJBilateralCIFilter.git", :tag => "#{s.version}" }
s.source_files = "NTJBilateralCIFilter/**/*.{h,m}"
s.resource_bundles = {
"NTJBilateralCIFilter" => ["NTJBilateralCIFilter/**/*.cikernel"]
}
s.framework = "CoreImage"
end