OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Functions
ossimKakaduJ2kReader.cpp File Reference
#include "ossimKakaduJ2kReader.h"
#include "ossimKakaduCommon.h"
#include "ossimKakaduMessaging.h"
#include <ossim/base/ossimCommon.h>
#include <ossim/base/ossimEndian.h>
#include <ossim/base/ossimException.h>
#include <ossim/base/ossimNotify.h>
#include <ossim/base/ossimPreferences.h>
#include <ossim/base/ossimScalarTypeLut.h>
#include <ossim/base/ossimTrace.h>
#include <ossim/imaging/ossimTiffTileSource.h>
#include <ossim/imaging/ossimImageDataFactory.h>
#include <ossim/support_data/ossimJ2kSizRecord.h>
#include <ossim/support_data/ossimJ2kSotRecord.h>
#include <kdu_sample_processing.h>
#include <kdu_region_decompressor.h>
#include <kdu_threads.h>
#include <fstream>
#include <iostream>

Go to the source code of this file.

Functions

 RTTI_DEF1_INST (ossimKakaduJ2kReader, "ossimKakaduJ2kReader", ossimImageHandler) ossimKakaduJ2kReader
 

Function Documentation

◆ RTTI_DEF1_INST()

RTTI_DEF1_INST ( ossimKakaduJ2kReader  ,
"ossimKakaduJ2kReader"  ,
ossimImageHandler   
)

Definition at line 49 of file ossimKakaduJ2kReader.cpp.

55  theCodestream(),
56  theThreadEnv(0),
57  theOpenTileThreadQueue(0),
58  theMinDwtLevels(0),
59  theFileStr(),
60  theSizRecord(),
61  theScalarType(OSSIM_SCALAR_UNKNOWN),
62  theImageRect(),
63  theTile(),
64  theCacheTile(),
65  theTileSizeX(0),
66  theTileSizeY(0),
67  theCacheId(-1)
68 {
69  kdu_customize_warnings(&pretty_cout); // Deliver warnings to stdout.
70  kdu_customize_errors(&pretty_cerr); // Deliver errors to stderr + throw exc
71 }
This class defines an abstract Handler which all image handlers(loaders) should derive from...