1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
#define TEAGN_ENABLE_STDOUT_LOG
#include <TePDIExamplesBase.hpp>
#include <TePDIJointHistogram.hpp>
#include <TePDIHistogram.hpp>
#include <TePDIUtils.hpp>
#include <TeAgnostic.h>
#include <TeProgress.h>
#include <TeStdIOProgress.h>
void jointHistogram_8bits_test()
{
// Generating test rasters
TePDITypes::TePDIRasterPtrType raster1;
TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( raster1, 1, 2, 2,
false, TeUNSIGNEDCHAR, 0 ), "Unable to create raster" );
TEAGN_TRUE_OR_THROW( raster1->setElement( 0, 0, 1, 0 ), "error" )
TEAGN_TRUE_OR_THROW( raster1->setElement( 0, 1, 2, 0 ), "error" )
TEAGN_TRUE_OR_THROW( raster1->setElement( 1, 0, 1, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster1->setElement( 1, 1, 2, 0 ), "error" );
TePDITypes::TePDIRasterPtrType raster2;
TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( raster2, 1, 2, 2,
false, TeUNSIGNEDCHAR, 0 ), "Unable to create raster" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 0, 0, 1, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 0, 1, 3, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 1, 0, 1, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 1, 1, 3, 0 ), "error" );
// Generating joint histogram
TePDIJointHistogram hist;
TEAGN_TRUE_OR_THROW( hist.update( *raster1, 0, *raster2, 0,
TeBoxPixelIn, 0 ), "Unable to create histogram" );
TEAGN_WATCH( hist.toString() );
// Checking histogram
{
TEAGN_TRUE_OR_THROW( ( hist.size() == 2 ), "Invalid histogram size" );
TEAGN_TRUE_OR_THROW( ( hist.getFreqSum() == 4 ),
"Invalid histogram" );
TePDIJointHistogram::const_iterator it = hist.begin();
TEAGN_CHECK_EQUAL( it->first.first, 1 , "" );
TEAGN_CHECK_EQUAL( it->first.second, 1 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
TEAGN_CHECK_EQUAL( it->first.first, 2 , "" );
TEAGN_CHECK_EQUAL( it->first.second, 3 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
}
// Checking raster 1 histogram
{
const TePDIHistogram& r1hist = hist.getRaster1Hist();
TEAGN_TRUE_OR_THROW( ( r1hist.size() == 2 ), "Invalid histogram size" );
TePDIHistogram::const_iterator it = r1hist.begin();
TEAGN_CHECK_EQUAL( it->first, 1 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
TEAGN_CHECK_EQUAL( it->first, 2 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
}
// Checking raster 2 histogram
{
const TePDIHistogram& r2hist = hist.getRaster2Hist();
TEAGN_TRUE_OR_THROW( ( r2hist.size() == 2 ), "Invalid histogram size" );
TePDIHistogram::const_iterator it = r2hist.begin();
TEAGN_CHECK_EQUAL( it->first, 1 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
TEAGN_CHECK_EQUAL( it->first, 3 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
}
}
void jointHistogram_8bits_images_test()
{
// Initializing raster instances
TePDITypes::TePDIRasterPtrType inRaster1( new TeRaster(
std::string( TEPDIEXAMPLESRESPATH "cbers_rgb342_crop1.tif" ),
'r' ) );
TEAGN_TRUE_OR_THROW( inRaster1->init(), "Unable to init inRaster" );
TePDITypes::TePDIRasterPtrType inRaster2( new TeRaster(
std::string( TEPDIEXAMPLESRESPATH "cbers_rgb342_crop1.tif" ),
'r' ) );
TEAGN_TRUE_OR_THROW( inRaster2->init(), "Unable to init inRaster" );
// Generating joint histogram
TePDIJointHistogram jhist;
TEAGN_TRUE_OR_THROW( jhist.update( *inRaster1, 0, *inRaster2, 1,
TeBoxPixelIn, 0 ), "Unable to create histogram" );
TEAGN_CHECK_EPS( jhist.getFreqSum(), ( inRaster1->params().nlines_ *
inRaster1->params().ncols_ ), 0, "Invalid histogram" );
// Generating single histograms (just for comparison)
TePDIHistogram hist1;
TEAGN_TRUE_OR_THROW( hist1.reset( inRaster1, 0, 0, TeBoxPixelIn ),
"Unable to create histogram" );
TePDIHistogram hist2;
TEAGN_TRUE_OR_THROW( hist2.reset( inRaster2, 1, 0, TeBoxPixelIn ),
"Unable to create histogram" );
// Comparing single histograms with that ones created by the joint histogram.
const TePDIHistogram& hist1b = jhist.getRaster1Hist();
const TePDIHistogram& hist2b = jhist.getRaster2Hist();
TEAGN_TRUE_OR_THROW( hist1 == hist1b, "Histogram mismatch" )
TEAGN_TRUE_OR_THROW( hist2 == hist2b, "Histogram mismatch" )
}
void jointHistogram_float_test()
{
// Generating test rasters
TePDITypes::TePDIRasterPtrType raster1;
TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( raster1, 1, 2, 2,
false, TeDOUBLE, 0 ), "Unable to create raster" );
TEAGN_TRUE_OR_THROW( raster1->setElement( 0, 0, 1, 0 ), "error" )
TEAGN_TRUE_OR_THROW( raster1->setElement( 0, 1, 2, 0 ), "error" )
TEAGN_TRUE_OR_THROW( raster1->setElement( 1, 0, 1, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster1->setElement( 1, 1, 2, 0 ), "error" );
TePDITypes::TePDIRasterPtrType raster2;
TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( raster2, 1, 2, 2,
false, TeDOUBLE, 0 ), "Unable to create raster" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 0, 0, 1, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 0, 1, 3, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 1, 0, 1, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 1, 1, 3, 0 ), "error" );
// Generating joint histogram
TePDIJointHistogram hist;
TEAGN_TRUE_OR_THROW( hist.update( *raster1, 0, *raster2, 0,
TeBoxPixelIn, 3 ), "Unable to create histogram" );
TEAGN_WATCH( hist.toString() );
// Checking histogram
{
TEAGN_TRUE_OR_THROW( ( hist.size() == 2 ), "Invalid histogram size" );
TEAGN_TRUE_OR_THROW( ( hist.getFreqSum() == 4 ), "Invalid histogram" );
TePDIJointHistogram::const_iterator it = hist.begin();
TEAGN_CHECK_EQUAL( it->first.first, 1 , "" );
TEAGN_CHECK_EQUAL( it->first.second, 1 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
TEAGN_CHECK_EQUAL( it->first.first, 2 , "" );
TEAGN_CHECK_EQUAL( it->first.second, 3 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
}
// Checking raster 1 histogram
{
const TePDIHistogram& r1hist = hist.getRaster1Hist();
TEAGN_TRUE_OR_THROW( ( r1hist.size() == 2 ), "Invalid histogram size" );
TePDIHistogram::const_iterator it = r1hist.begin();
TEAGN_CHECK_EQUAL( it->first, 1 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
TEAGN_CHECK_EQUAL( it->first, 2 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
}
// Checking raster 2 histogram
{
const TePDIHistogram& r2hist = hist.getRaster2Hist();
TEAGN_TRUE_OR_THROW( ( r2hist.size() == 2 ), "Invalid histogram size" );
TePDIHistogram::const_iterator it = r2hist.begin();
TEAGN_CHECK_EQUAL( it->first, 1 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
TEAGN_CHECK_EQUAL( it->first, 3 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
}
}
void jointHistogram_integer_test()
{
// Generating test rasters
TePDITypes::TePDIRasterPtrType raster1;
TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( raster1, 1, 2, 2,
false, TeINTEGER, 0 ), "Unable to create raster" );
TEAGN_TRUE_OR_THROW( raster1->setElement( 0, 0, 1, 0 ), "error" )
TEAGN_TRUE_OR_THROW( raster1->setElement( 0, 1, 2, 0 ), "error" )
TEAGN_TRUE_OR_THROW( raster1->setElement( 1, 0, 1, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster1->setElement( 1, 1, 2, 0 ), "error" );
TePDITypes::TePDIRasterPtrType raster2;
TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( raster2, 1, 2, 2,
false, TeINTEGER, 0 ), "Unable to create raster" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 0, 0, 1, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 0, 1, 3, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 1, 0, 1, 0 ), "error" );
TEAGN_TRUE_OR_THROW( raster2->setElement( 1, 1, 3, 0 ), "error" );
// Generating joint histogram
TePDIJointHistogram hist;
TEAGN_TRUE_OR_THROW( hist.update( *raster1, 0, *raster2, 0,
TeBoxPixelIn, 0 ), "Unable to create histogram" );
// Checking histogram
{
TEAGN_TRUE_OR_THROW( ( hist.size() == 2 ), "Invalid histogram size" );
TEAGN_TRUE_OR_THROW( ( hist.getFreqSum() == 4 ), "Invalid histogram" );
TePDIJointHistogram::const_iterator it = hist.begin();
TEAGN_CHECK_EQUAL( it->first.first, 1 , "" );
TEAGN_CHECK_EQUAL( it->first.second, 1 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
TEAGN_CHECK_EQUAL( it->first.first, 2 , "" );
TEAGN_CHECK_EQUAL( it->first.second, 3 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
}
// Checking raster 1 histogram
{
const TePDIHistogram& r1hist = hist.getRaster1Hist();
TEAGN_TRUE_OR_THROW( ( r1hist.size() == 2 ), "Invalid histogram size" );
TePDIHistogram::const_iterator it = r1hist.begin();
TEAGN_CHECK_EQUAL( it->first, 1 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
TEAGN_CHECK_EQUAL( it->first, 2 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
}
// Checking raster 2 histogram
{
const TePDIHistogram& r2hist = hist.getRaster2Hist();
TEAGN_TRUE_OR_THROW( ( r2hist.size() == 2 ), "Invalid histogram size" );
TePDIHistogram::const_iterator it = r2hist.begin();
TEAGN_CHECK_EQUAL( it->first, 1 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
TEAGN_CHECK_EQUAL( it->first, 3 , "" );
TEAGN_CHECK_EQUAL( it->second, 2 , "" );
++it;
}
}
int main()
{
TEAGN_LOGMSG( "Test started." );
try{
TeStdIOProgress pi;
TeProgress::setProgressInterf( dynamic_cast< TeProgressBase* >( &pi ) );
jointHistogram_8bits_images_test();
jointHistogram_8bits_test();
jointHistogram_float_test();
jointHistogram_integer_test();
}
catch( const TeException& excpt ){
TEAGN_LOGERR( excpt.message() )
return EXIT_FAILURE;
}
TEAGN_LOGMSG( "Test OK." );
return EXIT_SUCCESS;
}
|