00001 #ifndef Impala_Application_Videolympics_RawImageDataset_h
00002 #define Impala_Application_Videolympics_RawImageDataset_h
00003
00004 #include "Basis/ILog.h"
00005
00006 #include "Core/Array/Arrays.h"
00007 #include "Core/Array/ReadFile.h"
00008 #include "Core/Array/ReadImage.h"
00009 #include "Core/Array/Set.h"
00010 #include "Core/Array/ArrayListDelete.h"
00011
00012 namespace Impala {
00013 namespace Application {
00014 namespace Videolympics {
00015
00016 using namespace Core::Array;
00017
00018 class RawImageDataset
00019 {
00020 public:
00021 RawImageDataset(std::string fileName)
00022 {
00023 ILOG_DEBUG("reading dataset " << fileName << "...");
00024 mIOBuffer = new Util::IOBufferFile(fileName, true, false);
00025 ReadRawListVarIndex<Array2dScalarUInt8>(mFileOffset, mIOBuffer);
00026 ILOG_DEBUG("imageset loaded. " << NrImages() << " images available.");
00027 }
00028
00029 int
00030 NrImages()
00031 {
00032 if (mIOBuffer)
00033 return mFileOffset.size();
00034 return mImages.size();
00035 }
00036
00037 void
00038 RequestNext(int inc)
00039 {
00040 int newNr = mCurNr + inc;
00041 if (newNr < 0)
00042 newNr = 0;
00043 if (newNr >= NrImages())
00044 newNr = NrImages() - 1;
00045 if (newNr != mCurNr)
00046 {
00047 mCurNr = newNr;
00048 }
00049 }
00050
00051 Array2dVec3UInt8*
00052 GetImage(int nr)
00053 {
00054 if (nr < 0 || nr > NrImages())
00055 {
00056 ILOG_WARN("request for image nr " << nr << ", only " << NrImages() << " in dataset.");
00057 return 0;
00058 }
00059
00060 char buf[200];
00061 int width;
00062 int height;
00063 mIOBuffer->SetPosition(mFileOffset[nr]);
00064 mIOBuffer->Read(buf, 20);
00065 sscanf(buf, "%d %d ", &width, &height);
00066 size_t blockSize = width*height;
00067 char* data = new char[blockSize];
00068 size_t nrRead = mIOBuffer->Read(data, blockSize);
00069 if (nrRead != blockSize)
00070 {
00071 ILOG_ERROR("GetImage: read " << nrRead
00072 << " bytes instead of " << blockSize);
00073 }
00074
00075 Array2dVec3UInt8* image = 0;
00076
00077 ReadImageFromMemory(image, data, blockSize);
00078 delete data;
00079
00080 return image;
00081 }
00082
00083 private:
00084
00085 std::vector<Array2dVec3UInt8*> mImages;
00086 int mCurNr;
00087
00088
00089 Util::IOBuffer* mIOBuffer;
00090 std::vector<Int64> mFileOffset;
00091
00092 ILOG_VAR_DEC;
00093
00094 };
00095 ILOG_VAR_INIT(RawImageDataset, Application.Videolympics);
00096
00097 }
00098 }
00099 }
00100
00101 #endif
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194