This project adopts a classic CNN architecture, extracting hierarchical features of brain images through multi-layer convolution operations. The core components of the network include:
Convolutional Layer: Uses learnable filters to scan the input image, extracting low-level features such as edges and textures, as well as more complex shape and structure information. In medical image analysis, convolutional layers can capture key pathological features such as brain tissue atrophy and white matter lesions.
Pooling Layer: Reduces the spatial dimension of feature maps through downsampling operations, reducing computational complexity while enhancing the translation invariance of features. This is particularly important for processing medical images from different scanning devices and parameters.
Activation Function: Introduces nonlinear transformation, enabling the network to learn complex decision boundaries. The ReLU activation function is widely used in medical imaging networks, effectively alleviating the gradient vanishing problem.
Fully Connected Layer: Maps the extracted high-dimensional features to the final classification output, realizing the transformation from feature space to decision space.