GPUImage2
GPUImage2 copied to clipboard
GPUImage 2 is a BSD-licensed Swift framework for GPU-accelerated video and image processing.
Hi @BradLarson, I have transformed video view to display. Now it's showing properly on the device as like as back camera. But when I recorded it is playing inverted again...
Fixed the issue by adding missing constraints to the renderView in the storyboard and by moving some code near the crash to the main thread (when accessing self.layer). Hope this...
``` func filterimage(insertImage: UIImage) -> UIImage { let toonFilter = SmoothToonFilter() let testImage = insertImage let pictureInput = PictureInput(image:testImage) let pictureOutput = PictureOutput() pictureOutput.imageAvailableCallback = {image in // Do something...
- Added ignoreAspectRatio support. - Added anchorTopLeft support.
It seems there is no support for landscape orientation, meaning we cannot take landscape photos or videos. ?
Thanks for SketchFragmentShader for pencil sketch but how can I increase edge thickness, as it allows me to change edge strength only
I'm having an issue with image filtering. I want to create a pipeline with 3 filter but after the image is processed, the colors of the image is more pale...
When building the iOS examples project it fails with the following error on three of the filters: `GPUImage2/examples/Mac/FilterShowcase/FilterShowcase/FilterOperations.swift:751:16: Cannot convert value of type '() -> Histogram' to expected argument type...
Hi @BradLarson , I have applied multiple filters. Everything works fine like switch camera, switch views. But when I am trying to record it gives me log ``` Warning: tried...
Are we able to filter a live video stream using this library? I am so far only able to filter locally captured video. I posted the following question on SO...