It is possible to narrow down the area of comparison, by specifying a bounding box measured in pixels from the top left:
It is possible to narrow down the area of comparison, by specifying a bounding box measured in pixels from the top left:
```javascript
```javascript
resemble.outputSettings({
resembleControl.outputSettings({
boundingBox: {
boundingBox: {
left: 100,
left: 100,
top: 200,
top: 200,
right: 200,
right: 200,
bottom: 600
bottom: 600
}
}
});
})
// resembleControl.repaint();
// .repaint();
```
```
By default, the comparison algorithm skips pixels when the image width or height is larger than 1200 pixels. This is there to mitigate performance issues.
By default, the comparison algorithm skips pixels when the image width or height is larger than 1200 pixels. This is there to mitigate performance issues.