Skip to content

hlino/image-segmentation

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 

Image Segmentation

This is an implementation of an image segmentation program which segments an image's foreground and background written in matlab. The program uses an implementation of max-flow/min-cut using Boykov-Kolmogorov's algorithm written in c++ with a wrapper for matlab.

Files:

edges4connected.m:
This file creates edges where each node is connected to its four adjacent neighbors on a height x width grid.

GUI_student.m:
This is a GUI script will open a small window that will allow the user to segement forground objects in a picture by selecting background and forground objects.

image_edge_weights.m:
Containes one function which creates a sparse matrix connecting the graph vertices with calculated weights.

make.m:
Compiles the max flow algorithm.

maxlfow.m:
Contains the implementation of the max-flow/min-cut algorithm.

segment_image_color.m:
Creates a sparse tree and calculates weights for each pixel connecting them to each other, foreground, and background. Then utilizes the min-cut algorithm to segment the forground and background for a RGB piture.

segment_image_gray.m:
Takes similar steps as segment_image_color.m but for a gray scale image. This makes the process more simple.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published