Open emresancaktar opened 4 years ago
Hello,
I am trying to add Toon filter to my images but it does not look like the live video view from the examples.
I tried this one; let toonFilter = SmoothToonFilter() let testImage = UIImage(named:"1.JPG")! let pictureInput = PictureInput(image:testImage) let pictureOutput = PictureOutput() pictureOutput.encodedImageFormat = .jpeg pictureOutput.imageAvailableCallback = {image in self.imageView.image = UIImage.init(cgImage: image.cgImage!) } pictureInput --> toonFilter --> pictureOutput pictureInput.processImage(synchronously:true)
let toonFilter = SmoothToonFilter() let testImage = UIImage(named:"1.JPG")! let pictureInput = PictureInput(image:testImage) let pictureOutput = PictureOutput() pictureOutput.encodedImageFormat = .jpeg pictureOutput.imageAvailableCallback = {image in self.imageView.image = UIImage.init(cgImage: image.cgImage!) } pictureInput --> toonFilter --> pictureOutput pictureInput.processImage(synchronously:true)
and this one;
let testImage = UIImage(named:"WID-small.jpg")! let toonFilter = SmoothToonFilter() let filteredImage = testImage.filterWithOperation(toonFilter)
they all same. It put filter but effects are very low. I tried to change threshold and quantizationLevels but it same.
What is the problem ? How can I use this filter like FilterShowcase app video preview. ?
Thanks!
Hello,
I am trying to add Toon filter to my images but it does not look like the live video view from the examples.
I tried this one;
let toonFilter = SmoothToonFilter() let testImage = UIImage(named:"1.JPG")! let pictureInput = PictureInput(image:testImage) let pictureOutput = PictureOutput() pictureOutput.encodedImageFormat = .jpeg pictureOutput.imageAvailableCallback = {image in self.imageView.image = UIImage.init(cgImage: image.cgImage!) } pictureInput --> toonFilter --> pictureOutput pictureInput.processImage(synchronously:true)
and this one;
let testImage = UIImage(named:"WID-small.jpg")! let toonFilter = SmoothToonFilter() let filteredImage = testImage.filterWithOperation(toonFilter)
they all same. It put filter but effects are very low. I tried to change threshold and quantizationLevels but it same.
What is the problem ? How can I use this filter like FilterShowcase app video preview. ?
Thanks!