From 542ceafe8a03ea605bb9e7cb3e93432470ad9bfe Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 25 Mar 2024 10:58:43 -0400 Subject: [PATCH] cwDataSets.cpp : test() Write 5 rather than 0 images for each batch to an SVG. --- cwDataSets.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cwDataSets.cpp b/cwDataSets.cpp index e453aa8..127327b 100644 --- a/cwDataSets.cpp +++ b/cwDataSets.cpp @@ -2647,7 +2647,7 @@ cw::rc_t cw::dataset::test( const object_t* cfg ) printf("%3i : ",j); // print the first 5 images from each batch to an SVG file - for(unsigned i=0; i<0; ++i,++imageN) + for(unsigned i=0; i<5; ++i,++imageN) { printf("%i ", numbV[i] );