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

Added comments to operators Yee03, Chen05 and Mantiuk08 #131

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
48979cc
creation of Chen05 and block partition process implemented
Matthewlele Nov 14, 2022
da00aa9
Merge branch 'cadik:master' into master
Matthewlele Nov 28, 2022
267a871
creating of block's signatures
Matthewlele Dec 11, 2022
c119161
Merge branch 'master' of github.com:Matthewlele/TMS
Matthewlele Dec 11, 2022
2a1d383
creating EMD function
Matthewlele Dec 11, 2022
60f0971
finding neighbouring blocks implementation
Matthewlele Dec 16, 2022
3092d5f
fixed finding neighbours
Matthewlele Dec 16, 2022
bb5dcd0
begininng of implementation of the luminance-driven grouping algo
Matthewlele Dec 17, 2022
4627928
creation of updateRegionSignature function , need to find problem wit…
Matthewlele Dec 20, 2022
1be2d57
billateral filter algo, fixed canny image loading
Matthewlele Dec 27, 2022
594c5c8
delete some unnecesarry stuff
Matthewlele Dec 27, 2022
142d1db
canny edge detector update
Matthewlele Dec 29, 2022
e8b8f51
small update
Matthewlele Jan 3, 2023
6961c9b
changes in calculating signatures
Matthewlele Jan 6, 2023
65a036b
usage of new EMD function
Matthewlele Jan 7, 2023
d08cee8
fixing bugs
Matthewlele Feb 12, 2023
89e470a
tone mapping algorithms
Matthewlele Mar 14, 2023
04d5e5b
small updates
Matthewlele Mar 16, 2023
0dd67a5
update
Matthewlele Mar 20, 2023
43da234
update
Matthewlele Mar 20, 2023
9673e53
functions for hvs
Matthewlele Mar 23, 2023
ace43e5
update
Matthewlele Mar 26, 2023
944ce38
updates
Matthewlele Mar 30, 2023
58c41d6
changes still to debug
Matthewlele Mar 31, 2023
b2310e8
fixed tone curve calculation
Matthewlele Apr 3, 2023
8fec645
fixed tone curve calculation
Matthewlele Apr 3, 2023
8ab5bba
fixed tone curve calculation
Matthewlele Apr 3, 2023
dc29155
fix
Matthewlele Apr 3, 2023
1104526
modifications
Matthewlele Apr 8, 2023
f611025
updates
Matthewlele Apr 16, 2023
98cf7f2
updates
Matthewlele Apr 17, 2023
67cb299
added comments
Matthewlele Apr 18, 2023
44c26d4
added comments
Matthewlele Apr 23, 2023
2da520e
update
Matthewlele Apr 23, 2023
4316b71
added comments to implemented methods
Matthewlele May 31, 2023
a209f77
implementation of Ancuti10, separation and maps are probably correct,…
Matthewlele Nov 2, 2024
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
7 changes: 5 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ add_subdirectory(TMOCmd/)
add_subdirectory(TMOWard94/)
add_subdirectory(TMOZhao10/)
#add_subdirectory(TMOMM16/) #Martin Molek
add_subdirectory(TMOAlsam06/) #Jiri Zverina
#add_subdirectory(TMOAlsam06/) #Jiri Zverina
add_subdirectory(TMOAlsam09/) #Martin Molek
add_subdirectory(TMOAncuti16/) #Vladimir Vlkovic
#add_subdirectory(TMOCheryl11/) #Vaclav Chvila
Expand All @@ -36,6 +36,9 @@ add_subdirectory(TMOParis11/) # David Chocholaty
add_subdirectory(TMOGastal11/) # David Chocholaty
add_subdirectory(TMOShan10/) # David Chocholaty
add_subdirectory(TMOYee03/) # Matus Bicanovsky
add_subdirectory(TMOChen05/) # Matus Bicanovsky
#add_subdirectory(TMOMantiuk08/) # Matus Bicanovsky
add_subdirectory(TMOAncuti10/)
#add_subdirectory(TMOYourOperatorNameLinux/)
add_subdirectory(TMOJin14/) #
add_subdirectory(TMOLee10/) #Martin Molek
Expand All @@ -47,7 +50,7 @@ add_subdirectory(TMOBiswas05/) #Tomas Chlubna
add_subdirectory(TMOXiong17/) #Filip Brezna: method 1
add_subdirectory(TMOZhongping15/) #Filip Brezna: method 2
#add_subdirectory(TMOJin17/) #Filip Brezna: method 3
#add_subdirectory(TMOHu14/) #Vladimir Vlkovic
add_subdirectory(TMOHu14/) #Vladimir Vlkovic
#add_subdirectory(TMOTao17/) #Vladimir Vlkovic not ready
add_subdirectory(TMOSon14/) #Sedlar Pavel, Tomas Hudziec
add_subdirectory(TMOCLAHE/) #Sedlar Pavel
Expand Down
39 changes: 39 additions & 0 deletions TMOAncuti10/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
CMAKE_MINIMUM_REQUIRED(VERSION 2.4.8)
SET(CMAKE_COLOR_MAKEFILE ON)
SET(CMAKE_VERBOSE_MAKEFILE ON)
SET(CMAKE_INCLUDE_CURRENT_DIR TRUE)

IF(UNIX AND NOT LINUX_SET)
ADD_DEFINITIONS(-D LINUX)
ENDIF(UNIX AND NOT LINUX_SET)

INCLUDE_DIRECTORIES(
../tmolib/
.
)

LINK_LIBRARIES (
tmo
)

SET(TMO_SOURCES
TMOAncuti10.cpp
TMOPlugin.cpp
)


SET(TMOWARD_HEADERS
TMOAncuti10.h
TMOPlugin.h
)


add_library( ancuti10 SHARED ${TMO_SOURCES} )
add_custom_command( TARGET ancuti10 POST_BUILD
COMMAND cp -f libancuti10.so ../TMOCmd/ancuti10.tml
COMMAND cp -f libancuti10.so ../TMOgui/ancuti10.tml
COMMAND cp -f libancuti10.so ../ancuti10.tml
# COMMAND rm -f libancuti10.so
)


Loading