You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Filtering operations are being performed very slow. This is a huge problem for general app performance.
Approach
Wrappers around CIFilter hierarchy are nice. But the Processor is not well optimized which makes processing a set of images kinda problematic and time consuming. This, basically, is happening because of using a default CIContext which mainly uses the CPU. Instead we'd rather use a context using GPU for the same purpose.
Filtering operations are being performed very slow. This is a huge problem for general app performance.
Approach
Wrappers around
CIFilter
hierarchy are nice. But theProcessor
is not well optimized which makes processing a set of images kinda problematic and time consuming. This, basically, is happening because of using a defaultCIContext
which mainly uses the CPU. Instead we'd rather use a context using GPU for the same purpose.Tasks
Processor
implementationThe text was updated successfully, but these errors were encountered: