简体   繁体   中英

How to draw a histogram of a UIImage programmatically?

How to draw an image histogram of a UIImage on iPhone programmatically? eg:

替代文字

Thanks!

You can calculate histogram with help of Accelerate framework. There is function vImageHistogramCalculation_ARGB8888() . To call this function you need to create vImage_Buffer from the UIImage. Use vImageBuffer_InitWithCGImage() function for it.

For more information you can add this framework to your project and read docs in the header files:

Accelerate.framework/Frameworks/vImage.framework/Headers/vImage_Utilities.h Accelerate.framework/Frameworks/vImage.framework/Headers/Histogram.h

There's no api for that.

Edit: An API was introduced with iOS5. See kelin's answer.

You would want to get the raw data of the image, count the color values and draw the histogram yourself.

Access the pixels: How to get pixel data from a UIImage (Cocoa Touch) or CGImage (Core Graphics)?

Use CoreGraphics to draw the histogram in a custom UIView subclass.

Actually there is, I'll refer your to Brad Larson's answer : https://stackoverflow.com/a/10359305/300115

You can find the class GPUImageHistogramFilter in his library : https://github.com/BradLarson/GPUImage

The "Filter Showcase" demo in the lib already has a working version of a live histogram analysis. 实时直方图分析

You might be interested in DSBarChart . Give it a try.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM