All Projects → lmb-freiburg → caffe-unet-docker

lmb-freiburg / caffe-unet-docker

Licence: GPL-3.0 license
The U-Net Segmentation server (caffe_unet) for Docker

Programming Languages

shell
77523 projects
Makefile
30231 projects

Projects that are alternatives of or similar to caffe-unet-docker

satellite-Image-Semantic-Segmentation-Unet-Tensorflow-keras
Collection of different Unet Variant suchas VggUnet, ResUnet, DenseUnet, Unet. AttUnet, MobileNetUnet, NestedUNet, R2AttUNet, R2UNet, SEUnet, scSEUnet, Unet_Xception_ResNetBlock
Stars: ✭ 43 (+72%)
Mutual labels:  unet, unet-image-segmentation
open-solution-ship-detection
Open solution to the Airbus Ship Detection Challenge
Stars: ✭ 54 (+116%)
Mutual labels:  unet, unet-image-segmentation
fabric
Urban change model designed to identify changes across 2 timestamps
Stars: ✭ 53 (+112%)
Mutual labels:  unet, unet-3d
unet pytorch
Pytorch implementation of UNet for converting aerial satellite images into google maps kinda images.
Stars: ✭ 27 (+8%)
Mutual labels:  unet, unet-image-segmentation
Unets
Implemenation of UNets for Lung Segmentation
Stars: ✭ 18 (-28%)
Mutual labels:  unet, unet-image-segmentation
ResUNetPlusPlus-with-CRF-and-TTA
ResUNet++, CRF, and TTA for segmentation of medical images (IEEE JBIHI)
Stars: ✭ 98 (+292%)
Mutual labels:  unet, unet-image-segmentation
Dlcv for beginners
《深度学习与计算机视觉》配套代码
Stars: ✭ 1,244 (+4876%)
Mutual labels:  caffe, unet
multiclass-semantic-segmentation
Experiments with UNET/FPN models and cityscapes/kitti datasets [Pytorch]
Stars: ✭ 96 (+284%)
Mutual labels:  unet, unet-image-segmentation
celldetection
Cell Detection with PyTorch.
Stars: ✭ 44 (+76%)
Mutual labels:  unet
Antarctic-fracture-detection
No description or website provided.
Stars: ✭ 23 (-8%)
Mutual labels:  unet-image-segmentation
VideoAudit
📹 一个短视频APP视频内容安全审核的思路调研及实现汇总
Stars: ✭ 221 (+784%)
Mutual labels:  caffe
SWCaffe
A Deep Learning Framework customized for Sunway TaihuLight
Stars: ✭ 37 (+48%)
Mutual labels:  caffe
SmaAt-UNet
PyTorch-Code for the Paper "SmaAt-UNet: Precipitation Nowcasting using a Small, Attentive UNet-Architecture"
Stars: ✭ 112 (+348%)
Mutual labels:  unet
colorchecker-detection
Multiple ColorChecker Detection. This code implements a multiple colorChecker detection method, as described in the paper Fast and Robust Multiple ColorChecker Detection.
Stars: ✭ 51 (+104%)
Mutual labels:  caffe
Brainy
Brainy is a virtual MRI analyzer. Just upload the MRI scan file and get 3 different classes of tumors detected and segmented. In Beta.
Stars: ✭ 29 (+16%)
Mutual labels:  unet
caffemodel2json
A small tool to dump Caffe's *.caffemodel to JSON for inspection
Stars: ✭ 40 (+60%)
Mutual labels:  caffe
Deep-Learning-with-Caffe
My tests and experiments on Caffe, the deep learning framework by Berkeley Vision and Learning Center (BVLC) and its contributors.
Stars: ✭ 30 (+20%)
Mutual labels:  caffe
segmentation-enhanced-resunet
Urban building extraction in Daejeon region using Modified Residual U-Net (Modified ResUnet) and applying post-processing.
Stars: ✭ 34 (+36%)
Mutual labels:  unet
onnx2caffe
pytorch to caffe by onnx
Stars: ✭ 341 (+1264%)
Mutual labels:  caffe
Brain-Segmentation
Brain Segmentation on MRBrains18
Stars: ✭ 37 (+48%)
Mutual labels:  unet-image-segmentation

The U-Net segmentation server (caffe_unet) - in Docker

License

This repository contains a Dockerfile and scripts to build and run the U-Net Segmentation server (caffe_unet) in Docker containers.

Author: Thorsten Falk ([email protected])

If you use this project or parts of it in your research, please cite the corresponding paper:

@Article{FMBCAMBBR19,
  author       = "T. Falk and D. Mai and R. Bensch and {\"O}. {\c{C}}i{\c{c}}ek and A. Abdulkadir and Y. Marrakchi and A. B{\"o}hm and J. Deubner and Z. J{\"a}ckel and K. Seiwald and A. Dovzhenko and O. Tietz and C. Dal Bosco and S. Walsh and D. Saltukoglu and T. L. Tay and M. Prinz and K. Palme and M. Simons and I. Diester and T. Brox and O. Ronneberger",
  title        = "U-Net – Deep Learning for Cell Counting, Detection, and Morphometry",
  journal      = "Nature Methods",
  volume       = "16",
  pages        = "67--70",
  month        = "Jan",
  year         = "2019",
  url          = "http://lmb.informatik.uni-freiburg.de/Publications/2019/FMBCAMBBR19"
}

See the paper and the project page for more details.

0. Requirements

We use nvidia-docker for reliable GPU support in the containers. This is an extension to Docker and can be easily installed with just two commands. To run the networks, you need an nVidia GPU with >1GB of memory (at least Kepler).

1. Building the Docker image

Simply run make. This will create two Docker images: The OS base (an Ubuntu 18.04 base extended by nVidia, with CUDA 10.0 and CuDNN 7.3), and the "lmb-unet-server" image on top. In total, about 2.6GB of space will be needed after building. This build will simply download the binary package from our project page, setup the environment to use it and when running the image start an SSH server that can be accessed via port 2222 of the docker host machine.

Alternatively you can run make src to build caffe_unet from source. The resulting image "lmb-unet-server-src" should work identical, but requires more space (about 6.7GB). It is mainly intended to show you how caffe_unet can be built in a fresh Ubuntu installation.

2. Running containers

Run the startServer.sh script. It will ask you to set the password for unetuser. Then the ssh server is started and you get an interactive shell in the container and the server awaits U-Net jobs on port 2222. Closing the session also terminates the server.

4. License

The files in this repository are under the GNU General Public License v3.0

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].