Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ Contains C++ codes for image segmentation i.e. dividing image into segments whic

Libraries used are openCV(for reading and saving image) and openMP(for parallelizing the program)

Contents are-
Contents are:

1. seg.cpp- Parallel implementation of Boruvka's algorithm for image segmentation (Faster).
1) seg.cpp- Parallel implementation of Boruvka's algorithm for image segmentation (Faster).

2. seg2.cpp- Serialized implementation of Boruvka's algorithm for image segmentation (Better Results for most images).
2) seg2.cpp- Serialized implementation of Boruvka's algorithm for image segmentation (Better Results for most images).

3. seg4.cpp- Parallel implementation of Boruvka's algorithm for image segmentation (much slower due to locks).
3) seg4.cpp- Parallel implementation of Boruvka's algorithm for image segmentation (much slower due to locks).

4. hist_seg.cpp- Parallel implementation of histogram thresholding method for image segmentation.
4) hist_seg.cpp- Parallel implementation of histogram thresholding method for image segmentation.

5. imgcmp.cpp- A program to compare two images. The output is a completely black image if the images are similar else at each point of difference there will be white color.
5) imgcmp.cpp- A program to compare two images. The output is a completely black image if the images are similar else at each point of difference there will be white color.

6. otsu.cpp- Serialized implementation of Otsu's method for image segmentation.
6) otsu.cpp- Serialized implementation of Otsu's method for image segmentation.

7. kmeans.cpp- Serialized implementation of K-means clustering algorithm for image segmentation.
7) kmeans.cpp- Serialized implementation of K-means clustering algorithm for image segmentation.