图像 Resources

Showing items tagged with "图像"

Application Background: This MATLAB code performs fusion of two source images captured with different focal regions to generate a composite image with uniform focus distribution. Technical Approach: The implementation leverages Contourlet transform-based multi-scale decomposition to enhance fusion quality by preserving directional texture details and edge information through pyramidal directional filter banks.

MATLAB 237 views Tagged

Iterative Optimal Threshold Segmentation - The algorithm begins by selecting the initial threshold as the average grayscale value T0 of the image. It then partitions the image pixels into two groups using T0, calculates the average grayscale values for each group (TA for pixels below T0, TB for pixels above T0), and computes a new threshold T1 as the average of TA and TB. This process iterates recursively, updating the threshold at each step until convergence is achieved when TK+1 equals TK. The method demonstrates how iterative computation can progressively refine the segmentation boundary for optimal image partitioning.

MATLAB 266 views Tagged