ocr remove images

This commit is contained in:
Anthony Stirling
2023-05-01 21:53:10 +01:00
parent 30c56a0ec9
commit 9af537c985
10 changed files with 76 additions and 4 deletions

View File

@@ -72,4 +72,13 @@ public class OtherWebController {
model.addAttribute("currentPage", "add-image");
return "other/add-image";
}
@GetMapping("/adjust-contrast")
@Hidden
public String contrast(Model model) {
model.addAttribute("currentPage", "adjust-contrast");
return "other/adjust-contrast";
}
}