필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
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.

답변 (1개)

Image Analyst
Image Analyst 2023년 3월 30일
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
Walter Roberson
Walter Roberson 2023년 3월 30일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by