powered by
Cut off a part of image from a whole image.
crop_image(image, pos_x, pos_y, w = 50, h = 20)hay2needle(image, pos_x, pos_y, w, h)
hay2needle(image, pos_x, pos_y, w, h)
An image of cimg object.
An image of cimg.
A numeric to indicate the top left corner of cutting image. When NULL, position will be randomly sampled.
A numeric for width or height of the cutting image.
image <- imager::load.example("parrots") croped_image <- crop_image(image, 200, 250, 100, 50) layout(c(1:2)) plot(image) plot(croped_image)
Run the code above in your browser using DataLab