-
Notifications
You must be signed in to change notification settings - Fork 622
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
Add HTJ2K Compressor #1883
base: main
Are you sure you want to change the base?
Add HTJ2K Compressor #1883
Conversation
|
The CI is failing in the validate step, which is attempting to link a test program against the library. The error message indicate the link is failing with unresolved symbols, possibly because that cmake configuration is missing the new dependency. However, this part of the CI has been rewritten in the PR I just merged. Can you rebase your branch onto the current main branch now? It may still fail, but hopefully it will be easier to resolve then at least. |
2a3f1c5
to
439cfe5
Compare
@cary-ilm Done. |
NAMESPACE ${PROJECT_NAME}:: | ||
EXPORT_LINK_INTERFACE_LIBRARIES | ||
) | ||
# install(EXPORT ${PROJECT_NAME} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you really mean for these to be commented out? I think they're leading to a failure with the CI validate step.
The failure in the "Validate" step of the linux build is along the lines of what we discussed in the TSC meeting today, the check to make sure "make install" installs just the right files. This output from the logs appears to indicate that the cmake configuration is causing the
Try to make sure your cmake "fetch" of |
Thanks! What is the best way to run that validate step locally? |
@cary-ilm I remember now... I could never fix the following errors:
It seems to impose some requirements on openjph, which I could not find a solution for. |
I'm not enough of a cmake expert to immediately know how to resolve this. Since this is a work in progress, you could just disable the CI "validate" step entirely for now, just edit the workflow file on your branch and add a "if: false" line, or just delete it. We'll need it resolved eventually before merging, but at least that will allow you to get on with other priorities. I'm happy to help resolve this, but I won't have much time to look into it until mid-January. |
WIP DO NOT MERGE
This patch fulfills my action item from the September 19 TSC meeting.
Introduction
This patch proposes to add support for High-Throughput JPEG 2000 (HTJ2K) compression to OpenEXR -- HTJ2K is JPEG 2000 with the HT block coder standardized in Rec. ITU-T T.814 | ISO/IEC 15444-15. As detailed at Evaluating HTJ2K as a compressor option for OpenEXR, HTJ2K demonstrates significant improvements in both speed and file size over other OpenEXR compressors. Furthermore, HTJ2K is a worldwide standard that benefits from a diversity of implementations, builds on JPEG 2000, which is in broad use in studio workflows, is appropriate for long-term preservation, has both lossy and lossless modes and supports integer and floating point samples. Finally, the unique features of HTJ2K could be powerful additions to high-performance OpenEXR workflows where the full image may not always be viewed at its full resolution.
The patch currently defines four compressors:
Questions
Notes
Todo