All Projects → xtudbxk → SEC-tensorflow

xtudbxk / SEC-tensorflow

Licence: other
a tensorflow version for SEC approach in the paper "seed, expand and constrain: three principles for weakly-supervised image segmentation".

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to SEC-tensorflow

Cocostuff10k
The official homepage of the (outdated) COCO-Stuff 10K dataset.
Stars: ✭ 248 (+608.57%)
Mutual labels:  semantic-segmentation
MCIS wsss
Code for ECCV 2020 paper (oral): Mining Cross-Image Semantics for Weakly Supervised Semantic Segmentation
Stars: ✭ 151 (+331.43%)
Mutual labels:  semantic-segmentation
ssgan
Semi Supervised Semantic Segmentation Using Generative Adversarial Network ; Pytorch
Stars: ✭ 25 (-28.57%)
Mutual labels:  semantic-segmentation
VT-UNet
[MICCAI2022] This is an official PyTorch implementation for A Robust Volumetric Transformer for Accurate 3D Tumor Segmentation
Stars: ✭ 151 (+331.43%)
Mutual labels:  semantic-segmentation
nobrainer
A framework for developing neural network models for 3D image processing.
Stars: ✭ 123 (+251.43%)
Mutual labels:  semantic-segmentation
etos-deepcut
Deep Extreme Cut http://www.vision.ee.ethz.ch/~cvlsegmentation/dextr . a tool to do automatically object segmentation from extreme points.
Stars: ✭ 24 (-31.43%)
Mutual labels:  semantic-segmentation
Adaptive affinity fields
Adaptive Affinity Fields for Semantic Segmentation
Stars: ✭ 240 (+585.71%)
Mutual labels:  semantic-segmentation
Xtreme-Vision
A High Level Python Library to empower students, developers to build applications and systems enabled with computer vision capabilities.
Stars: ✭ 77 (+120%)
Mutual labels:  semantic-segmentation
Semantic Segmentation
Semantic Segmentation using Fully Convolutional Neural Network.
Stars: ✭ 60 (+71.43%)
Mutual labels:  semantic-segmentation
tf-semantic-segmentation-FCN-VGG16
Semantic segmentation for classifying road. "Fully Convolutional Networks for Semantic Segmentation (2015)" implemented using TF
Stars: ✭ 30 (-14.29%)
Mutual labels:  semantic-segmentation
image-segmentation
Mask R-CNN, FPN, LinkNet, PSPNet and UNet with multiple backbone architectures support readily available
Stars: ✭ 62 (+77.14%)
Mutual labels:  semantic-segmentation
PixelPick
[ICCVW'21] All you need are a few pixels: semantic segmentation with PixelPick
Stars: ✭ 59 (+68.57%)
Mutual labels:  semantic-segmentation
K-Net
[NeurIPS2021] Code Release of K-Net: Towards Unified Image Segmentation
Stars: ✭ 434 (+1140%)
Mutual labels:  semantic-segmentation
Clan
( CVPR2019 Oral ) Taking A Closer Look at Domain Shift: Category-level Adversaries for Semantics Consistent Domain Adaptation
Stars: ✭ 248 (+608.57%)
Mutual labels:  semantic-segmentation
ScasNet
Semantic Labeling in VHR Images via A Self-Cascaded CNN (ISPRS JPRS, IF=6.942)
Stars: ✭ 24 (-31.43%)
Mutual labels:  semantic-segmentation
Segmentation
TensorFlow implementation of ENet, trained on the Cityscapes dataset.
Stars: ✭ 243 (+594.29%)
Mutual labels:  semantic-segmentation
multiclass-semantic-segmentation
Experiments with UNET/FPN models and cityscapes/kitti datasets [Pytorch]
Stars: ✭ 96 (+174.29%)
Mutual labels:  semantic-segmentation
pysemseg
Semantic Segmentation Models in Pytorch
Stars: ✭ 31 (-11.43%)
Mutual labels:  semantic-segmentation
3D-UNet-PyTorch-Implementation
The implementation of 3D-UNet using PyTorch
Stars: ✭ 78 (+122.86%)
Mutual labels:  semantic-segmentation
RGBD-semantic-segmentation
A paper list of RGBD semantic segmentation (processing)
Stars: ✭ 264 (+654.29%)
Mutual labels:  semantic-segmentation

#SEC-tensorflow version

Introduction

This is a project which just move the SEC-caffe to SEC-tensorflow. The SEC is referring to the approach for weakly-supervised semantic segmentation in the paper "seed, expand and constrain: three principles for weakly-supervised image segmentation". And here, I just use the tensorflow to implement the approach with the help of the SEC-caffe project.

Citing this repository

If you find this code useful in your research, please consider citing them:

@inproceedings{kolesnikov2016seed,

​ title={Seed, Expand and Constrain: Three Principles for Weakly-Supervised Image Segmentation},

​ author={Kolesnikov, Alexander and Lampert, Christoph H.},

​ booktitle={European Conference on Computer Vision ({ECCV})},

​ year={2016},

​ organization={Springer}

}

Preparation

for using this code, you have to do something else:

1. Install pydensecrf

For using the densecrf in python, we turn to the project pydensecrf. And you just using the following code to install it.

pip install pydensecrf

note: from the page of pydensecrf, maybe you should upgrade the cython to a newer version befor install it.

2. Download the data and model
  1. for pascal data, please referring to its official website and to the augmental SBD data. Just download it and extract it in the data/, then 'cd data' and run convert.py with 'python convert.py'.
  2. for localization_cues.pickle, please referring to SEC-caffe. And download it and extract in the data/ (don't forget to uncompress the data by "gzip -kd localization_cues.pickle.gz").
  3. for the init.npy, I upload a converted file in google driver, just download it and put it in the model/ . And those weights in the file is exactly the same with the vgg16_20M.caffemodel in SEC-caffe.

For more details, you can referring to the correspond code files or leave a message in the issue.

3. Be careful about the versions of python and tensorflow

We just only test on python3.7 and tensorflow 1.14.0.

Training

then, you just input the following sentence to train it.

python SEC.py <gpu_id>

Evaluation

I just release a project to provide the code for evaluation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].