What is the term for this image processing?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
10 replies · 2K views
Jun Kyoto
Messages
14
Reaction score
1
How do you call of the digital image processing that simplifies an image by reducing the amount of pixels?

I thought of the word “thinning”. But according to ”Fundamentals of Digital Image Processing” by Anil K. Jain, “Thinning algorithm transforms an object to a set of simple digital arcs, which lie roughly along their medial axes” while the processing I am searching a term has nothing to do with medial axes. Instead, it eliminates pixels in a consistent balance (e.g,.one pixel in every three pixels).

Any suggestion/ insight will be much appreciated.
Also, are “simple digital arcs” in the quote equivalent to edges?

Thank you in advance.
 
Physics news on Phys.org
A few terms come to mind: coarsening, rescaling, or interpolating. Don't quote me though.
 
phyzguy said:
How about "compression"?

That was the first thing that came to my mind, but I think that has to do with storing the file on disk more efficiently. I think the process we are describing might be considered a type of compression, but not all compression is rescaling. For instance, some compression is lossless.
 
How about "downsampling"? For an image, it would only take the Nth pixel in a group of pixels, but that seems not to be what you're after since it seems you're trying to simplify the semantic image, not just the raw number of pixels.
 
  • Like
Likes   Reactions: Jun Kyoto
It is "resolution". if you reduce the number of pixels you reduce the resolution.

Resolution is determined by the size of the units of information representing an image. A pixel is a unit of information displayed on a monitor. Each pixel holds a defined amount of information stored on your disk. An image of a given area will become more detailed as more pixels are used to describe it.
http://jura.wi.mit.edu/bio/graphics/scanning/resolution.php
 
  • Like
Likes   Reactions: harborsparrow and Jun Kyoto
The catch all term for images in general (including vector images) is "scaling". For scaling bitmaps (raster) the process is called "resampling", going from low resolution to high resolution is "upsampling" while going from a high resolution to a low resolution is called "downsampling".
 
  • Like
Likes   Reactions: harborsparrow and Jun Kyoto
Thank you everyone! I think "downsampling" is it. Just to understand further, interpolating is a method for upsampling, am I right?
timthereaper said:
How about "downsampling"? For an image, it would only take the Nth pixel in a group of pixels, but that seems not to be what you're after since it seems you're trying to simplify the semantic image, not just the raw number of pixels.
>
I was trying to simplify an image by reducing just the raw number of pixels.
 
Jun Kyoto said:
interpolating is a method for upsampling

Interpolation is also needed for downsampling. For example, consider downsampling an image from 1000 x 1000 pixels to 700 x 700. If the pixels are to remain evenly distributed, the centers of most of the new pixels cannot be at the same locations as the centers of the old pixels, so they have to be interpolated from the old pixels.
 
The term is downsampling " Downsampling is the process by which a high-resolution image is transformed into a lower resolution image."
 
I think it's rescaling the image to a smaller size that is to transform your image from one size to another. By this, the number of pixels gets reduced.