-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Image processing #33
Comments
https://docs.opencv.org/3.1.0/d3/d63/classcv_1_1Mat.html#a5fafc033e089143062fd31015b5d0f40
|
Matft/Sources/Matft/library/vDSP.swift Line 1415 in 7bd5406
According to core graphics supposed pixel formats, it only supports RGB with float format on iOS not Gray on iOS ref: CGContext |
I think CGContext documents implies passing data pointer will not be freed (= not copied )
|
The difference between Planar and interleaved image link https://developer.apple.com/documentation/accelerate/optimizing_image-processing_performance |
Create OpenCV Mat by https://stackoverflow.com/questions/39579398/opencv-how-to-create-mat-from-uint8-t-pointer
and pass it by “with” statements.
simple image processing function is
vImage
ModuleFFFF
means float types (8888
means UInt8)https://developer.apple.com/documentation/accelerate/1515929-vimageconvolve_argbffff
The text was updated successfully, but these errors were encountered: