Replies: 4 comments 42 replies
-
The dimension here is referring to the actual pixel size or parameter size?
For the generalization, are you look into converting this idea into some function so that we can use it for the dimension reduction purpose? |
Beta Was this translation helpful? Give feedback.
-
Singular extrema make things a lot simpler, but I think this simplification is artificial. Replacing them with blobs of above-average values is a lot more accurate, I can think of no good reason for non-maximum suppression? Those values should represent approximate peaks: areas of directionally-symmetrical (low G) high local variation (SAD). So, it should be (ave_G - G) * SAD - ave_product_of_the_two? Yes, it's best to visualize these blobs with real images. |
Beta Was this translation helpful? Give feedback.
-
Thanks Chee! I think resolution is lost by design, your shift_img does the same skipping we built in comp_r? |
Beta Was this translation helpful? Give feedback.
-
gr also looks quite interesting, but edges in e_ looks cleaner: |
Beta Was this translation helpful? Give feedback.
-
I was thinking of using minima and maxima for blob dimensionality reduction (right now we are using blob median for that).
It's a common practice and obviously useful in many cases, but I haven't seen any conceptual justification.
Now it seems me that's because extrema are generally more stable than other points, and stability is our core criterion.
I understand why this so in topographical maps: stability is inverse to erosion, which is proportional to slope.
Extrema have 0 slope, thus the slowest erosion.
But I don't know how to generalize this beyond topography?
This is regarding "unsupervised" value, leaving aside utilitarian value: these extrema are usually transportation obstacles, etc.
Beta Was this translation helpful? Give feedback.
All reactions