Skip to main content

Deep learning based segmentation refinement system.

Project description

Segmentation Refinement

This is an easy-to-use package version of the CVPR2020 paper CascadePSP. It can refines a binary input segmentation of an image. For details, please refer to the complete repository linked above and the paper.

Installation

Through pip:

pip install segmentation-refinement

or locally,

pip install -e .

Usage

The code has been tested on Ubuntu with PyTorch 1.4.

import cv2
import time
import matplotlib.pyplot as plt
import segmentation_refinement as refine
image = cv2.imread('test/aeroplane.jpg')
mask = cv2.imread('test/aeroplane.png', cv2.IMREAD_GRAYSCALE)

# model_path can also be specified here
# This step takes some time to load the model
refiner = refine.Refiner(device='cuda:0') # device can also be 'cpu'

# Fast - Global step only.
# Smaller L -> Less memory usage; faster in fast mode.
output = refiner.refine(image, mask, fast=False, L=900) 

plt.imshow(output)
plt.show()

The pre-trained model will be downloaded automatically.

Output (4.77s):

Output image

Output (fast, 0.45s):

Output image

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

segmentation-refinement-0.5.tar.gz (8.1 kB view details)

Uploaded Source

File details

Details for the file segmentation-refinement-0.5.tar.gz.

File metadata

  • Download URL: segmentation-refinement-0.5.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.8

File hashes

Hashes for segmentation-refinement-0.5.tar.gz
Algorithm Hash digest
SHA256 be9ab7efeebe2ef70e7ec501bf8a651169ea25526ba453ae7d7ca116e08b32ec
MD5 32a89babf067a1ade33c5f7d7cc80670
BLAKE2b-256 6c2b9d8350b1c6b3c1b04acc37d1307f8cc1b366a55e906475bddcfdc4535191

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page