mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
573 B
23 lines
573 B
6 years ago
|
#include "ImfHeader.h"
|
||
|
#include "ImfNamespace.h"
|
||
|
#include "ImfExport.h"
|
||
|
|
||
|
#include <cstddef>
|
||
|
|
||
|
OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER
|
||
|
|
||
|
|
||
|
const unsigned short* get_dwaCompressorNoOp();
|
||
|
const unsigned short* get_dwaCompressorToLinear();
|
||
|
const unsigned short* get_dwaCompressorToNonlinear();
|
||
|
|
||
|
//const unsigned int* get_closestDataOffset();
|
||
|
//const unsigned short* get_closestData();
|
||
|
static inline
|
||
|
const unsigned short* get_dwaClosest(int idx)
|
||
|
{
|
||
|
throw std::runtime_error("OpenEXR: DW* compression tables are not available");
|
||
|
}
|
||
|
|
||
|
OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_EXIT
|