-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug fixes for adaptive patch denoising. Algorithm and shrinkage were …
…mistakenly hard coded previously.
- Loading branch information
Benjamin Aron
committed
Jan 9, 2025
1 parent
5eda8ea
commit abfe540
Showing
4,279 changed files
with
208,203 additions
and
13 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# defined since 2.8.3 | ||
if (CMAKE_VERSION VERSION_LESS 2.8.3) | ||
get_filename_component (CMAKE_CURRENT_LIST_DIR ${CMAKE_CURRENT_LIST_FILE} PATH) | ||
endif () | ||
|
||
# Allows loading FFTW3 settings from another project | ||
set (FFTW3_CONFIG_FILE "${CMAKE_CURRENT_LIST_FILE}") | ||
|
||
set (FFTW3_LIBRARIES fftw3) | ||
set (FFTW3_LIBRARY_DIRS /Users/benaron/Desktop/DESIGNER-v2/rpg_cpp/fftw-3.3.10/build/lib) | ||
set (FFTW3_INCLUDE_DIRS /Users/benaron/Desktop/DESIGNER-v2/rpg_cpp/fftw-3.3.10/build/include) | ||
|
||
include ("${CMAKE_CURRENT_LIST_DIR}/FFTW3LibraryDepends.cmake") | ||
|
||
if (CMAKE_VERSION VERSION_LESS 2.8.3) | ||
set (CMAKE_CURRENT_LIST_DIR) | ||
endif () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
set (PACKAGE_VERSION "3.3.10") | ||
|
||
# Check whether the requested PACKAGE_FIND_VERSION is compatible | ||
if ("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") | ||
set (PACKAGE_VERSION_COMPATIBLE FALSE) | ||
else () | ||
set (PACKAGE_VERSION_COMPATIBLE TRUE) | ||
if ("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") | ||
set (PACKAGE_VERSION_EXACT TRUE) | ||
endif () | ||
endif () |
Oops, something went wrong.