欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ch04 Julia图像裁剪、缩放和旋转

程序员文章站 2022-07-14 20:19:13
...
using Images,ImageView

img = load("lighthouse.png");
print(size(img));

结果:

(512, 768)
names(ImageTransformations)

结果:

10-element Array{Symbol,1}:
 :ImageTransformations
 :InvWarpedView
 :WarpedView
 :center
 :imresize
 :imrotate
 :invwarpedview
 :restrict
 :warp
 :warpedview
图像裁剪

方法1:

cropped_img = img[100:400,100:600];
save("cropped_img.jpg",cropped_img);
# 显示图像
cropped_img

结果:

ch04 Julia图像裁剪、缩放和旋转

方法2: