Questions tagged [image-segmentation]

118 questions
9
votes
0 answers

Why is my Keras model not learning image segmentation?

Edit: as is turns out, not even the model's initial creator could successfully fine-tune it. This is most likely a problem of implementation, or possibly related to the non-intuitive way in which the Keras batch normalization layer works. I'm trying…
Matt
  • 199
  • 8
4
votes
1 answer

Why do we need to concatenate in a U-Net?

You might be familiar with the U-Net, a machine learning network deceived for image segmentation. It's basically an encoder/decoder network with some direct links between encoder and decoder segments: I would like to better understand the reason…
4
votes
2 answers

Tool for annotation of images for semantic segmentation

I have been searching around for a software tool, that I can use for annotating images. More specifically I want to do annotation to be used for semantic segmentation, meaning I want to create masks. I want to be able to create training data for…
3
votes
1 answer

How can I create .nii (nifti) file from 3D Numpy array

I have a prediction numpy array. How can I make a .nii or .nii.gz mask file from the array?
Eren Kallikci
  • 31
  • 1
  • 2
3
votes
1 answer

Segmentation Network produces noisy output

I've implemented a SegNet and SegNet ReLU variant in PyTorch. I'm using it as a proof-of-concept for now, but what really bothers me is the noise produced by the network. With ADAM I seem to get slightly less noise, whereas with SGD the noise…
Ælex
  • 31
  • 5
3
votes
2 answers

Splitting a pdf containing batch of scanned documents

My question is primarily: is there any ML research paper about splitting a pdf containing a batch of scanned documents (eg bank statements) into individual documents? I have searched for this but I have not found any relevant research paper or any…
Outcast
  • 1,037
  • 2
  • 11
  • 27
3
votes
1 answer

Algorithms to do a CTRL+F (find object) on an image

We all know the CTRL+F "Find text..." feature in text editors / browsers. I'd like to study the available algorithms to do something similar on an image. Example of UI/UX: let's say you have an electronic schematic. You draw a rectangle around a…
2
votes
0 answers

Instance Segmentation using the predefined bounding boxes

I want to do Instance Segmentation using the images in my dataset which are already annotated and I don't want to train the model but use the pre-trained model. I was following this colab notebook. Here I can upload my image and do the instance…
duddal
  • 41
  • 2
2
votes
1 answer

Segmentation model to predict face forward and profile parts of the face

I am developing a model for feature counting on a person's face that consumes three photos (one face forward and two profile pictures). My model can already detect features, but it counts some features twice. Consider the image below. There are only…
sixtytrees
  • 191
  • 1
  • 6
2
votes
1 answer

Transfer Deep Learning from one aerial imagery datset to many others

I am new to Deep Learning but have been able to use RasterVision successfully to predict building footprints within a set of aerial imagery. This aerial imagery data set is for a province of New Zealand. Now that I have a model that predicts…
2
votes
1 answer

Photorealistic synthetic data for object segmentation

Let's say that we have a very small labelled dataset for instance segmentation and there is a photorealistic physics engine available that can produce synthetic data for us. Looking on the web I haven't found any paper about a similar issue. Has…
Dimimal13
  • 85
  • 8
2
votes
1 answer

Ways of calculating the area of colored regions in a map

Background I am a PHD student trying to improve my data science. One of my research projects, has me tasked with determining the size of the clusters in a colored image of regions. Here is an example image I am using. The coloring is natural as it…
2
votes
2 answers

How can I use my own dataset for Image segmentation using Tensorflow

I have a huge problem using my own created dataset for image segmentation using Tensorflow. The dataset that I've build contain images like the one shown below: The problem that I have is: How do I use my own dataset specifically for image…
thegendolz
  • 21
  • 1
2
votes
1 answer

What is the difference between proposal-based approach and proposal-free approach?

From here it says that Techniques to solve instance segmentation can be roughly grouped into two categories: proposal-based methods and proposal-free methods. In proposal-based methods, a set of object proposals and their classes are first…
2
votes
2 answers

Video segmentation vs image segmentation

I am new to data science & working on a segmentation model, Basically I need to deploy this segmentation model in android devices using TensorFlow-Lite for real time camera frame segmentation. I used unet model to do that but could not get the…
Afsar edrisy
  • 121
  • 3
1
2 3 4 5 6 7 8