You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Short overview
Selecting invalid regions of an image (e.g. bigger than the actual image) causes uncaught runtime errors
Detailed error description
When providing a ROI which exceeds an images size, nut.js does no checks to prevent invalid memory access.
This leads to uncaught std::runtime_errors
Steps to reproduce error
describe("Invalid ROI test",()=>{it("should trigger a runtime error",async()=>{// GIVENconstSUT=newTemplateMatchingFinder();constimagePath=path.resolve(__dirname,"./__mocks__/save_as.png");constminConfidence=0.99;constvision=newScreenAction();consthaystack=awaitvision.grabScreen();constmatchRequest=newMatchRequest(haystack,imagePath,newRegion(0,0,haystack.width,haystack.height),minConfidence);// WHENawaitSUT.findMatch(matchRequest,true);// THEN// libc++abi.dylib: terminating with uncaught exception of type std::runtime_error});});
Additional content
Please provide any (mandatory) additional data to reproduce the error (Dockerfiles etc.)
The text was updated successfully, but these errors were encountered:
Version
1.0.0
Short overview
Selecting invalid regions of an image (e.g. bigger than the actual image) causes uncaught runtime errors
Detailed error description
When providing a ROI which exceeds an images size, nut.js does no checks to prevent invalid memory access.
This leads to uncaught std::runtime_errors
Steps to reproduce error
Additional content
The text was updated successfully, but these errors were encountered: