Detect-It-Easy/db/PE/OpenCV.4.sg
2025-03-23 12:41:20 +03:00

20 lines
No EOL
474 B
JavaScript

// Detect It Easy: detection rule file
// Author: DosX
// E-Mail: collab@kay-software.ru
// GitHub: https://github.com/DosX-dev
// Telegram: @DosX_dev
// https://github.com/opencv/opencv
// https://github.com/shimat/opencvsharp
init("library", "OpenCV");
function detect() {
if (PE.isNET() && PE.isNetObjectPresent("OpenCvSharp")) {
bDetected = true;
} else if (PE.isLibraryPresentExp(/^opencv/i)) {
bDetected = true;
}
return result();
}