Skip to content

QuILTER uses a guided filter and post-processing to rapidly feather semantic segmentation results, revealing small details that the initial segments may have missed.

Notifications You must be signed in to change notification settings

Jklein64/QuILTER

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QuILTER: Quick Feathering of Image Segments with Guided Filter

Feather binary masks from semantic segmentation using He et al.'s guided filter without affecting their union (see Motivation for more info). The entire process takes a fraction of a second: after loading the image and masks, feathering the example below took 0.186 seconds on average. Applying the guided filter to each segment reveals small details typically missed by semantic segmentation networks, such as individual fingers in hands in the example (segments visualized by projecting to three dimensions with PCA).

car-kids image before feathering feathered (0.186 sec)

"QuILTER" is both a portmanteau of the project's subtitle and an allusion to quills, which are made with feathers.

Usage

Until I feel like figuring out how to put this project on PyPI, you can either install the package through the .tar.gz file in this repository's Releases section, or clone the repo, create a Conda environment using conda env create -f environment.yml, and build the project using flit build, which will create the same .tar.gz file in the dist/ folder.

Once installed, access the CLI help with quilter -h or import the feather_segments() function from the quilter package.

Examples

All of the segments in the examples are generated by extracting the leaf nodes from the hierarchy generated with Facebook Research's DETR, though they could be replaced with one generated by other networks such as those from MMSegmentation.

For the baseball image, passing each segment through the guided filter clarified the selection around the brim of the player's hat and at the intersection of the glove and arm.

baseball image before feathering feathered (0.184 sec)

The feathering also made the area around the ears in the horse image more accurate, and revealed the gap between the horse's body and the part of the bit under its neck.

horse image before feathering feathered (0.144 sec)

Motivation

While they generally classify large regions correctly, many semantic segmentation algorithms struggle to maintain accuracy in small areas packed with lots of detail, such as the rightmost boy's hand in the car-kids image. Although not the original intent, He et al.'s guided filter can be used to feather binary masks to include these small details. However, applying the guided filter to each segment output from semantic segmentation results in masks that don't add together properly: some of the areas are under-covered, and others are over-covered.

For example, below are the naively-filtered masks for the horse image. The rightmost image shows pixels where the union of the feathered masks is 255 (black) or not (white). In order for the filtered masks to be useful in all the same applications as the unfiltered masks, their union must sum to exactly 255, so that, when applied to the original image, it recreates exactly the original.

naive mask 1 naive mask 2 naive mask 3 union != 255

The code handles pixels whose corresponding mask weights sum to a value greater than 255 by scaling down all of that pixel's corresponding mask weights until they sum to exactly 255. Since the resulting values aren't guaranteed to be whole numbers, each of the mask weights is floored when converted into 8-bit unsigned integers. The sum of the weights is now less than or equal to 255. In order to make them all equal, the difference is added to the largest of the mask weights, since that's the likely classification from the original segmentation result.

Somehow adding to the largest value doesn't cause the union to integer overflow for the examples ¯\_(ツ)_/¯

About

QuILTER uses a guided filter and post-processing to rapidly feather semantic segmentation results, revealing small details that the initial segments may have missed.

Topics

Resources

Stars

Watchers

Forks

Languages