TI DSP TMS320C66x學習筆記之TI Imglib庫相關函式(四)

Mars_WH發表於2015-12-31

影像分析

一、本節提供的函式描述,通常應用於影像分析應用。

影像邊界和周長函式

    邊界和周界函式,即IMG_boundaryIMG_perimetcr兩個函式。它們通常在結構視覺應用中作為結構運算元。


形態學操作函式

    IMG_dilate_binIMG_erode_bin兩個函式是影像學運算元,通常用於提高二進位制影像膨脹和二進位制影像侵蝕演算法效果。膨脹和侵蝕在影像處理操作中具有基礎的意義,比如開和閉操作都可以從膨脹和侵蝕中建立起來。這些函式在機器視覺和醫學成像方面非常有用。


邊緣檢測函式

    在機器視覺系統中通常使用邊界檢測技術。在許多演算法中都存在邊界檢測技術,最通用的是Sobel邊界檢測。IMG_sobel子程式提供了一個邊界檢測演算法優化執行的子程式。


影像直方圖函式

    直方圖用來生成影像的柱狀圖。影像的直方圖是一個影像亮度級的統計。例如,對於一個8位畫素亮度級別的灰度影像,直方圖將包括對應可能的256個畫素亮度的256bins。每一個bin包含影像中畫素點的個數,尤其是亮度值。


影像二值化函式

    在影像和視訊處理系統中影像閥值操作的不同形式滿足不同的影像處理需求。例如,一種閥值可以用於把灰度影像資料轉化為二進位制影像資料,以用於二進位制形態處理。另一個閥值可以用於剪裁影像資料以便得到渴望的範圍。在機器視覺應用中,閥值用於簡單的分割。

影像濾波與格式轉換

二、本節提供的函式描述,通常應用於影像濾波與格式轉換。

顏色空間轉換函式

    IMG_ycbcr422p_rgb565子程式實現影像從YCbCr格式到RGB格式的轉化,以實現在MPEGJPEG解碼系統中的視訊資料在RGB顯示器中播放。

    下列子程式開闢一個little endianbig endian格式的YcrYCb彩色影像緩衝區。

These routines take a packed YCrYCb colorbuffer in big-endian or little-endian format and expand the constituent colorelements into separate buffers in little-endian byte ordering.


影像卷積函式

    卷積函式用於普通影像3X35x57x711x11的濾波,比如影像平滑和銳化處理方法等。



影像相關性函式

    相關性函式用於影像匹配操作。在機器視覺、醫學成像和安防方面,影像匹配處理是非常有用的。函式實現對3x35x511x11畫素區域高度優化相關性處理。

    庫中提供了兩個相關性函式IMG_corrIMG_corr_genIMG_corr_gen是一個更普通的版本,能夠對使用者特殊的畫素區域大小(在文件約束之內)進行相關性處理。IMG_corr_gen_iq函式處理32bitQ-point資料。


誤差擴散函式

    二進位制值輸出誤差擴散技術廣泛用在印花行業中。最廣泛應用的誤差擴散演算法是Floyd-Steinberg演算法。在這個函式中對該演算法進行了優化。


中值濾波函式

    在影像恢復處理中,中值濾波用於使成像中的脈衝噪音產生的影響降到最低。該處理方法可以保護脈衝影響十分嚴重的區域性區域,在安防、機器視覺和視訊壓縮系統中得到廣泛的應用。IMG_median_3x3函式中值濾波提供了優化實現。


畫素擴充套件函式

    IMG_pix_expand子程式用於通過零擴充套件技術把8位畫素點擴充套件到16位;IMG_pix_sat用於把16位有符號數轉換成8位無符號數。通常用於處理其他子程式的輸入和輸出子程式,例如水平和垂直縮放子程式。

影像壓縮與解壓

三、本節提供的函式描述,通常應用於標準JPEG、MPEG video和H.26x的壓縮/解壓

正和逆離散餘弦變換函式

IMGLIB provides forwardand inverse DCT (Discrete Cosine Transform) functions. These functions areapplicable for a wide range of compression standards such as JPEGEncode/Decode, MPEG Video Encode/Decode, and H.26x Encode/Decode. Thesecompression standards are used in diverse end-applications:

  • JPEG is used in printing, photography, security systems, etc.
  • MPEG video standards are used in digital TV, DVD players, set-top boxes, video-on-demand systems, video disc applications, multimedia/streaming media applications, etc.
  • H.26x standards are used in video telephony as well as some streaming media applications

Note that the inverse DCT functionperforms an IEEE 1180-1990 compliant inverse DCT, including rounding andsaturation to signed 9-bit quantities. The forward DCT rounds the output valuesfor improved accuracy. These factors can have significant effect on the finalresult in terms of picture quality, and are important to consider whenimplementing DCT-based systems or comparing the performance of differentDCT-based implementations.


高效能運動估計函式

The following functionsare provided to enable high performance motion estimation algorithms that areused in applications such as MPEG Video Encode or H.26x Encode.

Video encoding is useful invideo-on-demand systems, streaming media systems, video telephony, etc. Motionestimation is typically one of the most computationally intensive operations invideo encoding systems; the provided functions are highly optimized tosignificantly improve such systems.


量化函式

Quantization is anintegral step in many image/video compression systems, including those based onwidely used variations of DCT-based compression such as JPEG, MPEG, and H.26x.The function provided below may be used in such systems to perform the requiredquantization step.


小波處理函式

Wavelet processing isused in emerging standards such as JPEG2000 and MPEG-4, where it is typicallyused to provide highly efficient still picture compression. Various proprietaryimage compression systems are also wavelet-based. This release includes theutilities IMG_wave_horz and IMG_wave_vert for computing horizontal and verticalwavelet transforms. Together, they can compute 2-D wavelet transforms for imagedata. The routines are flexible enough, within documented constraints, toaccommodate a wide range of specific wavelets and image dimensions.

 

相關文章