Mathematica > Data Manipulation > Image Processing & Analysis > Basic Image Manipulation >

ImageTake

ImageTake[image, n]
gives an image consisting of the first n rows of image.
ImageTake[image,-n]
gives an image consisting of the last n rows of image.
ImageTake[image, {row1, row2}]
gives rows row1 through row2.
ImageTake[image, {row1, row2}, {col1, col2}]
gives the image that spans row1 to row2 and col1 to col2.
  • ImageTake takes the rows of an image to be numbered from top to bottom, starting at 1.
  • ImageTake uses the standard sequence specification:
Allall elements
nelements 1 through n
-nlast n elements
{n}element n only
{m,n}elements m through n inclusive
{m,n,s}elements m through n in steps of s
  • If fewer elements exist than are requested, ImageTake will just return the elements that are present.
New in 7
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team