Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image preprocessing #5

Open
wants to merge 34 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
44da552
Add files and outline of code structure
tylerfeldman321 Oct 18, 2021
c8a33be
Dump of image preprocessing algorithms
vedarshshah Oct 21, 2021
4a34822
add simple preprocessing method
Chris-Cameron Oct 21, 2021
3b02a24
Added image preprocessing algorithm names to configurations
vedarshshah Oct 21, 2021
f1d73dd
Fixed bugs in amine_rhone
vedarshshah Oct 21, 2021
6e2d465
Added CLAHE and DCP image preprocessing functions
vedarshshah Oct 22, 2021
0779185
Added __init__.py file to access image preprocessing packages
vedarshshah Oct 22, 2021
acd2c39
Modified mains of CLAHE and DCP to work with project structure
vedarshshah Oct 22, 2021
5ce1b4f
Added gitignore to ignore __pycache__
vedarshshah Oct 22, 2021
c350bdc
Simplified no preprocessing function and added WIP code to test prepr…
vedarshshah Oct 22, 2021
fae5d5e
Added .DS_Store to gitignore
vedarshshah Oct 28, 2021
1b2f619
Updated tester and added gbrc method
vedarshshah Oct 29, 2021
4fc7883
Added test images
vedarshshah Oct 29, 2021
c812655
fixed issues with amine-rhone image formatting and output dimensionality
Chris-Cameron Oct 29, 2021
cf6f818
resolve merge conflict
Chris-Cameron Oct 29, 2021
e28dc88
Delete image.png
Chris-Cameron Oct 29, 2021
05abd9b
Fixed imports in gbrc
vedarshshah Oct 29, 2021
acd2e16
Fixed imports in gc
vedarshshah Oct 29, 2021
f18188d
Added gc method (all preprocessing methods working)
vedarshshah Oct 29, 2021
4522bb5
Merge branch 'image-preprocessing' of https://github.com/DukeRobotics…
vedarshshah Oct 29, 2021
86e7d03
Changed gbrc return to sceneRadiance
vedarshshah Oct 29, 2021
d2d146f
Merge branch 'main' into image-preprocessing
tylerfeldman321 Oct 30, 2021
07e647c
Updated main to take in preprocessing functions with command line arg…
vedarshshah Oct 30, 2021
7377049
Merge branch 'image-preprocessing' of https://github.com/DukeRobotics…
vedarshshah Oct 30, 2021
f5130e0
Updated main function to take in image argument, use only no_preproce…
vedarshshah Oct 30, 2021
9725476
Merge branch 'main' into image-preprocessing
tylerfeldman321 Oct 30, 2021
156fae2
Added capability to test multiple images at the same time
vedarshshah Nov 5, 2021
2d1f41d
Completed all image preprocessing functions and tester
vedarshshah Nov 19, 2021
4985ae7
Fixed timing output formatting
vedarshshah Nov 19, 2021
b041ce7
Updated function timings
vedarshshah Nov 19, 2021
1b300ef
Added argument to view all images together in one figure
vedarshshah Nov 20, 2021
a04f733
Merge branch 'main' into image-preprocessing
tylerfeldman321 Nov 20, 2021
e26fa88
Updated configurations to include all image preprocessing functions
vedarshshah Nov 20, 2021
a72d02a
Merge branch 'image-preprocessing' of https://github.com/DukeRobotics…
vedarshshah Nov 20, 2021
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
4 changes: 2 additions & 2 deletions configurations.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

CLASSES = ['start_gate', 'start_tick']

IMAGE_PREPROCESSING_ALGORITHMS = [no_preprocessing, amine_rhone, clahe, dcp, gbrc, gc]
DEFAULT_IMAGE_PREPROCESSING_ALGORITHMS = [no_preprocessing, amine_rhone, clahe, gc]
IMAGE_PREPROCESSING_ALGORITHMS = [no_preprocessing, amine_rhone, clahe, dcp, gbrc, gc, he, ibla, icm, lcdcp, mip, nom, rd, rghs, rws, ucm, udcp, ulap]
DEFAULT_IMAGE_PREPROCESSING_ALGORITHMS = [no_preprocessing, amine_rhone, clahe, gc, he]
ORIGINAL_IMAGE_FOLDER = 'original'

# Values
Expand Down
478 changes: 419 additions & 59 deletions image_preprocessing.py

Large diffs are not rendered by default.

56 changes: 0 additions & 56 deletions image_preprocessing_pkg/Fusion-Matlab/SimplestColorBalance.m

This file was deleted.

32 changes: 0 additions & 32 deletions image_preprocessing_pkg/Fusion-Matlab/UICM.m

This file was deleted.

66 changes: 0 additions & 66 deletions image_preprocessing_pkg/Fusion-Matlab/UIConM.m

This file was deleted.

11 changes: 0 additions & 11 deletions image_preprocessing_pkg/Fusion-Matlab/UIQM.m

This file was deleted.

67 changes: 0 additions & 67 deletions image_preprocessing_pkg/Fusion-Matlab/UISM.m

This file was deleted.

13 changes: 0 additions & 13 deletions image_preprocessing_pkg/Fusion-Matlab/Uassessment.m

This file was deleted.

73 changes: 0 additions & 73 deletions image_preprocessing_pkg/Fusion-Matlab/autolevel.m

This file was deleted.

Loading