2013年9月16日

[学习笔记]形态学图像处理-膨胀与腐蚀

摘要: 膨胀是在二值图像中“加长“或”变粗“的操作。A = imread('Fig0907(a)(text_gaps_1_and_2_pixels).tif');B = [1 1 1;1 1 1;1 1 1];imshow(A)A2 = imdilate(A, B);figureimshow(A2);处理前的图像:膨胀后二值化图片:strel函数用于构造各种结构元素:se = strel(shape, parameters)例如:SE = strel('ball', R, H, N)SE = strel('diamond', R)SE = strel(& 阅读全文

posted @ 2013-09-16 22:25 寻梅踏雪 阅读(1093) 评论(0) 推荐(0) 编辑

【转】RDO、SAD、SATD、λ

摘要: SAD(Sum of Absolute Difference)=SAE(Sum of Absolute Error)即绝对误差和 SATD(Sum of Absolute Transformed Difference)即hadamard变换后再绝对值求和 MAD(Mean Absolute Difference)=MAE(Mean Absolute Error)即平均绝对差值 SSD(Sum of Squared Difference)=SSE(Sum of Squared Error)即差值的平方和 MSD(Mean Squared Difference)=MSE(Mean Squared 阅读全文

posted @ 2013-09-16 22:24 寻梅踏雪 阅读(724) 评论(0) 推荐(1) 编辑

[原]H264帧内预测

摘要: 帧内预测模块大小说明4x4(亮度)预测方式9种8x8(亮度)预测方式9种。只有highprofile才有16x16(亮度)预测方式4种,只依赖左,上数据。8x8(色度)预测方式4种,只依赖左,上数据。I_PCM不预测,直接传送图像的像素值。 阅读全文

posted @ 2013-09-16 22:24 寻梅踏雪 阅读(372) 评论(0) 推荐(0) 编辑

导航