partial success on parse, missing symbology id

This commit is contained in:
Henry Schimke
2023-04-22 16:17:05 -05:00
parent 789719d3eb
commit bec7c99dbb
11 changed files with 34 additions and 18 deletions

View File

@@ -343,7 +343,8 @@ impl<'a> Detector<'_> {
);
let src = Quadrilateral::new(topRight, topLeft, bottomRight, bottomLeft);
sampler.sample_grid_detailed(image, dimensionX, dimensionY, dst, src)
let(res,_)=sampler.sample_grid_detailed(image, dimensionX, dimensionY, dst, src)?;
Ok(res)
}
/**