Update grid ml to use MobileNet V2

This commit is contained in:
Mitchell McCaffrey 2021-01-07 11:25:25 +11:00
parent 165c8098fb
commit 69431c17e9
4 changed files with 2 additions and 2 deletions

View File

@ -46,6 +46,7 @@ In this update the fog tool has been changed to hopefully help work better with
- Added support for dragging and dropping images into the map or token screens that originate from a website. This is useful for dragging tokens from the Avrae Discord bot into the token select screen.
- Added support for a larger layout for map/token selection and editing for bigger displays.
- Changed map automatic quality options to better represent map details.
- Updated automatic grid detection model to be more accurate and better handle lower resolution images.
- Fixed crash when sometimes interacting with the page while it is loading.
- Fixed crash when sometimes zooming out too far with a custom token on the map.
- Fixed a bug where the drawing erase tool could still be used outside of the drawing tool.

View File

@ -139,7 +139,6 @@ export async function getGridSize(image) {
let prediction;
// Try and use ML grid detection
// TODO: Fix possible error on Android
try {
prediction = await gridSizeML(image, candidates);
} catch (error) {

Binary file not shown.

File diff suppressed because one or more lines are too long