feat : algorithm improvements
- use FastStitchProcessor when the canvas is either large, tall or wide (original algorithm) - introduce StreamingProcessor algorithm for better robust performance - add logger
This commit is contained in:
parent
8cec6e92c5
commit
4ed4eea462
7 changed files with 210 additions and 46 deletions
15
Services/Utilities/StitchRequest.cs
Normal file
15
Services/Utilities/StitchRequest.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue