Processor - image_ssim_diff

This commit is contained in:
dgtlmoon
2025-12-15 17:02:38 +01:00
parent a748a43224
commit 7225c056f9
11 changed files with 1173 additions and 8 deletions

View File

@@ -994,6 +994,16 @@ class globalSettingsApplicationForm(commonSettingsForm):
global_ignore_text = StringListField('Ignore Text', [ValidateListRegex()])
global_subtractive_selectors = StringListField('Remove elements', [ValidateCSSJSONXPATHInput(allow_json=False)])
ignore_whitespace = BooleanField('Ignore whitespace')
ssim_threshold = SelectField(
'Default Screenshot Comparison Sensitivity',
choices=[
('0.75', 'Low sensitivity (only major changes)'),
('0.85', 'Medium sensitivity (moderate changes)'),
('0.96', 'High sensitivity (small changes)'),
('0.999', 'Very high sensitivity (any change)')
],
default='0.96'
)
password = SaltyPasswordField()
pager_size = IntegerField('Pager size',
render_kw={"style": "width: 5em;"},