Fix xDataExtent, yDataExtent in ImageHelper

This commit is contained in:
2025-06-20 09:02:18 -04:00
parent b96697c6a3
commit 58b6ebc1b7

View File

@@ -18,7 +18,7 @@ namespace MarketData.CNNProcessing
public ImageHelper(ImageHelper imageHelper)
{
this.bitmap=Copy(imageHelper.bitmap);
pointMapping = new PointMapping(Width,Height,Width,0,Height,0);
pointMapping = new PointMapping(Width,Height,Width-1,0,Height-1,0);
}
public void Dispose()