检测 Resources

Showing items tagged with "检测"

Application Context: Applied to signal detection at the receiver end of communication MIMO systems. For received signals, detection and estimation are required to determine the estimated values of transmitted source symbols and compute error probabilities. Key Technologies: ZF detection algorithm and MMSE detection algorithm, implemented with matrix inversion and optimization techniques to enhance signal recovery accuracy.

MATLAB 247 views Tagged

Utilizing gray-scale integral projection for direct face detection and eye localization is a common algorithm, but its direct application can be affected by background noise and feature variations, resulting in lower recognition accuracy. We propose a detection and localization algorithm combining Otsu's thresholding method (maximum inter-class variance) and region dilation. The algorithm first calculates the Otsu threshold to binarize the gray-scale image and detect face regions, then performs dilation and connectivity processing on connected components within the face area to precisely locate eye coordinates. Experimental results demonstrate that this algorithm is reliable with improved recognition performance. Key implementation aspects include adaptive threshold calculation using Otsu's method and morphological operations for feature enhancement.

MATLAB 234 views Tagged

Detection of images with embedded watermarks using the previously uploaded watermarking algorithm add_score.m, which handles the watermark insertion process.

MATLAB 188 views Tagged

Implementation of digital watermark embedding and detection algorithm using DCT blocking and Human Visual System (HVS) characteristics, developed by Mao Li. This approach embeds watermarks into images through DCT coefficient modification and detects them using similarity comparison methods with enhanced visual perception considerations.

MATLAB 242 views Tagged

An effective edge detection method called CORNER for finding corners in intensity images. The algorithm operates through these key steps: 1) Apply Canny edge detector to grayscale image to generate binary edge map, 2) Extract edge contours from the edge map and fill gaps in contours. Implementation typically involves using edge detection functions like edge() with 'Canny' option and contour tracing algorithms.

MATLAB 216 views Tagged