- use FastStitchProcessor when the canvas is either large, tall or wide (original algorithm) - introduce StreamingProcessor algorithm for better robust performance - add logger
15 lines
273 B
C#
15 lines
273 B
C#
namespace StitcherApi.Services.Utilities;
|
|
|
|
public record StitchRequest(
|
|
int MinRow,
|
|
int MinCol,
|
|
int StartTileRow,
|
|
int StartTileCol,
|
|
int EndTileRow,
|
|
int EndTileCol,
|
|
int CropX,
|
|
int CropY,
|
|
int CropW,
|
|
int CropH,
|
|
float OutputScale
|
|
);
|