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

Remove lenna #587

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions ci/build_unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ if [[ `uname` == 'Darwin' ]]; then
export SHLIB_EXT=".dylib"
# I - hmaarrrfk - forget why the definition of LDFLAGS here is necessary
export LDFLAGS="-undefined dynamic_lookup ${LDFLAGS}"

# clang14 introduced a new default that turns this flag on on osx arm64 leading
# to failing tests. Setting it off restores clang13 behavior and seems in line
# with x86 compilation.
# ref: https://github.com/llvm/llvm-project/issues/91824
export CXXFLAGS="-ffp-contract=off ${CXXFLAGS}"
else
export SHLIB_EXT=".so"
fi
Expand Down
2 changes: 1 addition & 1 deletion docsrc/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ HTML_STYLESHEET = @PROJECT_SOURCE_DIR@/docsrc/vigra.css
# files. In the HTML_STYLESHEET file, use the file name only. Also note that
# the files will be copied as-is; there are no commands or markers available.

HTML_EXTRA_FILES = @PROJECT_SOURCE_DIR@/src/examples/lenna_color.gif \
HTML_EXTRA_FILES = @PROJECT_SOURCE_DIR@/src/examples/astronaut_color.gif \
@PROJECT_SOURCE_DIR@/src/examples/lenna_gray.gif

# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
Expand Down
2 changes: 1 addition & 1 deletion docsrc/examples.dxx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
See <a href="Installation.html">Installation</a> for instructions on how these
programs can be compiled. For convenience, the directory contains the test images
<a href="lenna_gray.gif">lenna_gray.gif</a> and
<a href="lenna_color.gif">lenna_color.gif</a>.
<a href="astronaut_color.gif">astronaut_color.gif</a>.

<ul>

Expand Down
4 changes: 2 additions & 2 deletions docsrc/image_processing.dxx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
And here are the results:
<table cellspacing = "10">
<TR valign = "bottom">
<TD> \image html lenna_color_small.gif "input file 1" </TD>
<TD> \image html astronaut_color_small.gif "input file 1" </TD>
<TD> \image html oi_small.jpg "input file 2" </TD>
<TD> \image html dissolved_color.gif "dissolved output file" </TD>
</TR>
Expand All @@ -132,7 +132,7 @@
And here are the results:
<Table cellspacing = "10">
<TR valign = "bottom">
<TD> \image html lenna_color_small.gif "input file" </TD>
<TD> \image html astronaut_color_small.gif "input file" </TD>
<TD> \image html lenna_composite_color.gif "composite output file" </TD>
</TR>
</Table>
Expand Down
Binary file added src/examples/astronaut_color.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/examples/astronaut_color_small.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/examples/lenna_color.gif
Binary file not shown.
Binary file removed src/examples/lenna_color_small.gif
Binary file not shown.
Binary file added src/examples/tutorial/astronaut_color.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/examples/tutorial/lenna_color.gif
Binary file not shown.
Binary file removed src/examples/tutorial/lenna_color_small.gif
Binary file not shown.
Binary file added src/images/astronaut_color.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/astronaut_color_small.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/images/lenna_color.gif
Binary file not shown.
Binary file removed src/images/lenna_color_small.gif
Binary file not shown.
2 changes: 1 addition & 1 deletion test/convolution/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VIGRA_ADD_TEST(test_convolution test.cxx LIBRARIES vigraimpex)

VIGRA_COPY_TEST_DATA(lenna128.xv lenna_simple_sharpening_orig.xv lenna_gaussian_sharpening_orig.xv lenna128sepgrad.xv lennahessxx.xv lennastxx.xv lenna128recgrad.xv lenna128nonlinear.xv resampling.xv lennahessyy.xv lennastyy.xv lennahessxy.xv lennastxy.xv lenna128rgb.xv lenna128rgbsepgrad.xv lenna_level-2.xv lenna_level-1.xv lenna_level1.xv lenna_level2.xv lenna_levellap0.xv lenna_levellap1.xv lenna_levellap2.xv lennargbst.xv)
VIGRA_COPY_TEST_DATA(astronaut128.xv astronaut_simple_sharpening_orig.xv astronaut_gaussian_sharpening_orig.xv astronaut128sepgrad.xv astronauthessxx.xv astronautstxx.xv astronaut128recgrad.xv astronaut128nonlinear.xv resampling.xv astronauthessyy.xv astronautstyy.xv astronauthessxy.xv astronautstxy.xv astronaut128rgb.xv astronaut128rgbsepgrad.xv astronaut_level-2.xv astronaut_level-1.xv astronaut_level1.xv astronaut_level2.xv astronaut_levellap0.xv astronaut_levellap1.xv astronaut_levellap2.xv astronautrgbst.xv)
Binary file added test/convolution/astronaut128.xv
Binary file not shown.
Binary file added test/convolution/astronaut128nonlinear.xv
Binary file not shown.
Binary file added test/convolution/astronaut128recgrad.xv
Binary file not shown.
Binary file added test/convolution/astronaut128rgb.xv
Binary file not shown.
Binary file added test/convolution/astronaut128rgbsepgrad.xv
Binary file not shown.
Binary file added test/convolution/astronaut128sepgrad.xv
Binary file not shown.
Binary file not shown.
Binary file added test/convolution/astronaut_level-1.xv
Binary file not shown.
Binary file added test/convolution/astronaut_level-2.xv
Binary file not shown.
Binary file added test/convolution/astronaut_level1.xv
Binary file not shown.
Binary file added test/convolution/astronaut_level2.xv
Binary file not shown.
Binary file added test/convolution/astronaut_levellap0.xv
Binary file not shown.
Binary file added test/convolution/astronaut_levellap1.xv
Binary file not shown.
Binary file added test/convolution/astronaut_levellap2.xv
Binary file not shown.
Binary file not shown.
Binary file added test/convolution/astronauthessxx.xv
Binary file not shown.
Binary file added test/convolution/astronauthessxy.xv
Binary file not shown.
Binary file added test/convolution/astronauthessyy.xv
Binary file not shown.
Binary file added test/convolution/astronautrgbst.xv
Binary file not shown.
Binary file added test/convolution/astronautstxx.xv
Binary file not shown.
Binary file added test/convolution/astronautstxy.xv
Binary file not shown.
Binary file added test/convolution/astronautstyy.xv
Binary file not shown.
Binary file removed test/convolution/lenna128.xv
Binary file not shown.
Binary file removed test/convolution/lenna128nonlinear.xv
Binary file not shown.
Binary file removed test/convolution/lenna128recgrad.xv
Binary file not shown.
Binary file removed test/convolution/lenna128rgb.xv
Binary file not shown.
Binary file removed test/convolution/lenna128rgbsepgrad.xv
Binary file not shown.
Binary file removed test/convolution/lenna128sepgrad.xv
Binary file not shown.
Binary file removed test/convolution/lenna_gaussian_sharpening_orig.xv
Binary file not shown.
Binary file removed test/convolution/lenna_level-1.xv
Binary file not shown.
Binary file removed test/convolution/lenna_level-2.xv
Binary file not shown.
Binary file removed test/convolution/lenna_level1.xv
Binary file not shown.
Binary file removed test/convolution/lenna_level2.xv
Binary file not shown.
Binary file removed test/convolution/lenna_levellap0.xv
Binary file not shown.
Binary file removed test/convolution/lenna_levellap1.xv
Binary file not shown.
Binary file removed test/convolution/lenna_levellap2.xv
Binary file not shown.
Binary file removed test/convolution/lenna_simple_sharpening_orig.xv
Binary file not shown.
Binary file removed test/convolution/lennahessxx.xv
Binary file not shown.
Binary file removed test/convolution/lennahessxy.xv
Binary file not shown.
Binary file removed test/convolution/lennahessyy.xv
Binary file not shown.
Binary file removed test/convolution/lennargbst.xv
Binary file not shown.
Binary file removed test/convolution/lennastxx.xv
Binary file not shown.
Binary file removed test/convolution/lennastxy.xv
Binary file not shown.
Binary file removed test/convolution/lennastyy.xv
Binary file not shown.
Binary file modified test/convolution/resampling.xv
Binary file not shown.
Loading