fix path
This commit is contained in:
parent
ce95630cc6
commit
73d4c02191
2 changed files with 11 additions and 3 deletions
|
|
@ -9,7 +9,7 @@ public class ImageGenerator
|
|||
string[] inputs = requestBody.CanvasRect.Split(":");
|
||||
double scale = requestBody.OutputScale;
|
||||
Coordinate a1 = new Coordinate("A1");
|
||||
Mat a1Mat = new Mat(a1.Path);
|
||||
Mat a1Mat = new Mat(a1.FullPath);
|
||||
int width = a1Mat.Width;
|
||||
int height = a1Mat.Height;
|
||||
if (scale < 1)
|
||||
|
|
@ -36,7 +36,7 @@ public class ImageGenerator
|
|||
{
|
||||
try
|
||||
{
|
||||
Mat mat = new Mat(item.Path);
|
||||
Mat mat = new Mat(item.FullPath);
|
||||
if (scale < 1)
|
||||
{
|
||||
mat = mat.Resize(new Size(width, height));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue