vImage is a library of high-performance image-processing routines provided by Apple in macOS, iOS, tvOS, and watchOS. It includes functions for image manipulation—convolutions, geometric transformations, histogram operations, morphological transformations, and alpha compositing—as well as utility functions for format conversions and other operations.
Questions tagged [vimage]
62 questions
0
votes
1 answer
How can I use vImage (Accelerate) framework in iOS from Xamarin?
I want to do some image processing for an iPhone app. I found that vImage is the library (probably in native C) for iOS 5.0 and greater.
How can I use this library if I am using Xamarin for the app development?

Pratik Kothari
- 2,446
- 2
- 32
- 54
0
votes
3 answers
vImage not putting channels correctly back together
I tried to extract all 3 channels from an image with vImageConvert_RGB888toPlanar8 and then put them back together with vImageConvert_Planar8toRGB888 but the image gets totally messed up. Why is that?
vImage_Buffer blueBuffer;
blueBuffer.data =…

thomasguenzel
- 670
- 7
- 25