How can we explain number of image features changing as the locations of image partitions are changed?

1 visualización (últimos 30 días)
In my MATLAB code, during the preprocessing stage, when I split/divide/partition an image into two parts (either horizontally or vertically) I obtain the same number of features, but the resulting output is different. I am seeking a scientific article or a practical explanation for this phenomenon. Thank you in advance.

Respuestas (1)

Image Analyst
Image Analyst el 30 de Mzo. de 2023
Depends on what you're measuring. If your feature is just the mean and standard deviation of the gray levels, you'll get those two values both for the entire image, and for each half if you split them up. And of course since the gray levels being considered are different in all 3 cases, the means and stdevs will all be different. I don't know how to explain it -- it's just kind of obvious.
Now if you were doing something like finding the number of salient points in an image, like from SIFT or SURF, then it would find different number of features (locations) in each half.
  5 comentarios
Walter Roberson
Walter Roberson el 30 de Mzo. de 2023
You should only expect the same results if all of the portions of interest are completely confined to quarters of your image. If anything of interest crosses the boundary of a quarter then it will be divided when you split one of the ways but not divided or divided differently if you split the other way.

Iniciar sesión para comentar.

Categorías

Más información sobre Computer Vision Toolbox en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by