FCNs
Fully Convolutional Networks (FCNs) are a class of neural networks designed for dense prediction tasks in computer vision, in which all layers are convolutional, pooling, or other spatially preserving operations, and there are no fully connected layers that require fixed input sizes. FCNs produce spatially dense outputs such as per-pixel class probabilities, enabling semantic segmentation and related tasks.
They were introduced in 2015 by Long, Shelhamer and Darrell in the paper "Fully Convolutional Networks for
Typical architecture features an encoder that extracts features with convolution and pooling, a classifier head comprised
FCNs have become foundational for semantic segmentation and have influenced many later models. They inspired architectures
Limitations include computational and memory demands for high-resolution inputs and the need for large labeled datasets.