The Wayback Machine - http://web.archive.org/web/20200612183603/https://github.com/topics/image-segmentation
Skip to content
#

image-segmentation

Here are 745 public repositories matching this topic...

captainst
captainst commented Oct 15, 2019

In file binary segmentation (camvid).ipynb, block 5, there is:

# Lets look at data we have
dataset = Dataset(x_train_dir, y_train_dir, classes=['car', 'pedestrian'])
image, mask = dataset[5] # get some sample
visualize(
    image=image, 
    cars_mask=mask[..., 0].squeeze(),
    sky_mask=mask[..., 1].squeeze(),
    background_mask=mask[..., 2].squeeze(),
)

here, sky_mask

travelcms
travelcms commented May 17, 2019

Hi,

I try to understand Deepdetect right now, starting with the Plattforms Docker container.
It looks great on pictures, but I have a hard time right now using it :)

My Problem: The docs seems to step over important points, like using JupyterLab. All examples shows the finished Custom masks, but how do I get them?

Is there something missing in the docs?

Example: https://www.deepdetec

Ditwoo
Ditwoo commented Mar 14, 2020

Description
In some rare cases, for example, when you need to finetune a large model on a small dataset the majoring part of training loop is waiting for saving model checkpoints to a hard drive.

Proposal
Would be logically to add a CheckpointCallback with parameter save_n_best=0 to a configuration and do not store best checkpoints and instead use the latest state of the model.

0x00b1
0x00b1 commented Sep 2, 2017

Keras-rcnn was written to be compatible with a number of third-party frameworks and services like Apple’s Core ML framework that enables developers to embed Keras models into their iOS applications. We should document how an Apple developer can create, train, and export their model to their Core ML-compatible iOS application.

jaffe-fly
jaffe-fly commented Apr 23, 2020

如果设置
cfg.NUM_TRAINERS = 4
cfg.TRAINER_ID = 0,1,2,3
if self.shuffle and cfg.NUM_TRAINERS > 1: np.random.RandomState(self.shuffle_seed).shuffle(self.all_lines) num_lines = len(self.all_lines) // cfg.NUM_TRAINERS self.lines = self.all_lines[num_lines * cfg.TRAINER_ID: num_lines * (cfg.TRAINER_ID + 1)] self.shuffle_seed += 1
上面代码中的self.

Lightweight models for real-time semantic segmentationon PyTorch (include SQNet, LinkNet, SegNet, UNet, ENet, ERFNet, EDANet, ESPNet, ESPNetv2, LEDNet, ESNet, FSSNet, CGNet, DABNet, Fast-SCNN, ContextNet, FPENet, etc.)

  • Updated May 10, 2020
  • Python

Improve this page

Add a description, image, and links to the image-segmentation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the image-segmentation topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.