You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes:
replaces direct Libraw calls with OIIO for reading raw images
replaces AcesContainer with OIIO for writing exr images
replaces all pixel operations with OIIO IBAs
Since not all Libraw flags are exposed in the raw input plugin of OIIO, these command line parameters have been removed:
-P - bad pixel mask
-K - dark frame
-j - fuji-rotate
-m - median filter
-f - four-colour RGB
-T - print Libraw-supported cameras
-F - use big file
-E - mmap-ed IO
-s - image index in the file
We may want to reintroduce them on the OIIO side later, if required.
This is a breaking change and not supposed to be compatible with v1.x.
________________
Signed-off-by: Anton Dukhovnikov <[email protected]>
Co-authored-by: Aleksandr Motsjonov <[email protected]>
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
@@ -230,7 +232,6 @@ jobs:
230
232
- name: Dependencies
231
233
shell: bash
232
234
run: |
233
-
build_scripts/install_aces_container.bash
234
235
build_scripts/${{ matrix.install_deps }}.bash
235
236
236
237
- name: Configure CMake
@@ -254,7 +255,8 @@ jobs:
254
255
- name: Test
255
256
# Execute tests defined by the CMake configuration. Note that --build-config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
256
257
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
0 commit comments