低通滤波 Resources

Showing items tagged with "低通滤波"

Edge Detection Implementation: 1. Create a monochrome image containing color blocks and lines, apply low-pass filtering to generate a degraded image with blurred edges, then detect edges using any two edge detection algorithms to produce binary result images. Extract boundary coordinates from the results and compare with original coordinate data to analyze detection errors. 2. Object Extraction: Capture a black/white or color photo containing target objects, apply an edge detection algorithm for automatic object extraction, and analyze the results with implementation insights on MATLAB functions like edge(), imfilter(), and bwboundaries().

MATLAB 242 views Tagged

In the one-level wavelet decomposition process, the original signal undergoes low-pass and high-pass filtering respectively, followed by binary downsampling to obtain low-frequency and high-frequency coefficients (also referred to as approximation and detail coefficients). Multi-level decomposition recursively applies the same wavelet decomposition to the low-frequency coefficients obtained from the previous level, enabling hierarchical signal analysis.

MATLAB 215 views Tagged

This implementation performs noise addition to speech signals followed by processing using low-pass, band-pass, and high-pass filters. The program runs perfectly, but requires careful attention to audio file path configuration to avoid runtime errors! Includes code descriptions for signal processing workflows and filter implementations.

MATLAB 260 views Tagged