Skip to content

Commit

Permalink
feat(IBA) scale - fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Dukhovnikov <[email protected]>
  • Loading branch information
antond-weta committed Nov 25, 2024
1 parent e496ab1 commit 39957b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/doc/imagebufalgo.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,7 @@ Image arithmetic
.. code-tab:: bash oiiotool

# Pixel-by-pixel multiplication of all channels of one image by the only channel of another image
oiiotol a.exr mono.exr --scale -o scale.exr
oiiotool a.exr mono.exr --scale -o scale.exr

|
Expand Down
2 changes: 1 addition & 1 deletion testsuite/docs-examples-cpp/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
command += run_app("cmake -E copy " + test_source_dir + "/../common/unpremult.tif unpremult.tif")
command += run_app("cmake -E copy " + test_source_dir + "/../common/bayer.png bayer.png")

command += run_app("oiiotool --pattern fill:top=0:bottom=1 256x256 1 -o mono.exr")
command += oiio_app("oiiotool") + "--pattern fill:top=0:bottom=1 256x256 1 -o mono.exr > out.txt ;"

# Copy the grid to both a tiled and scanline version
command += oiio_app("iconvert") + "../common/grid.tif --scanline scanline.tif > out.txt ;"
Expand Down
2 changes: 1 addition & 1 deletion testsuite/docs-examples-python/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
command += run_app("cmake -E copy " + test_source_dir + "/../common/unpremult.tif unpremult.tif")
command += run_app("cmake -E copy " + test_source_dir + "/../common/bayer.png bayer.png")

command += run_app("oiiotool --pattern fill:top=0:bottom=1 256x256 1 -o mono.exr")
command += oiio_app("oiiotool") + "--pattern fill:top=0:bottom=1 256x256 1 -o mono.exr > out.txt ;"

# Copy the grid to both a tiled and scanline version
command += oiio_app("iconvert") + "../common/grid.tif --scanline scanline.tif > out.txt ;"
Expand Down

0 comments on commit 39957b6

Please sign in to comment.