一. 图像几何变换总述
图像几何变换即用数字的方法来描述图像的大小,位置,形状等变换的方法。

二. 实例学习
dev_close_window()
dev_open_window(0,0,1000,1000,'black',WindowId)
dev_set_color('pink')
*Draw with the mouse an arbitrary region into the window
draw_region(Region,WindowId)
hom_mat2d_identity(HomMat2DIdentity)
hom_mat2d_rotate(HomMat2DIdentity,90,256,256,HomMat2DRotate)
hom_mat2d_scale(HomMat2DRotate,20,20,256,256,HomMat2DScale)
hom_mat2d_translate(HomMat2DScale,48,48,HomMat2DScale)
affine_trans_region(Region,RegionAffineTrans,HomMat2DScale,'nearest_neighbor')
dev_clear_window()
dev_set_draw('margin')
dev_set_color('red')
dev_display(Region)
dev_set_color('yellow')
dev_display(RegionAffineTrans)

总结
本文介绍了图像的几何变换,下节将介绍图像增强的学习内容。