How to use OpenCvUtils class of com.intuit.karate.robot package

Best Karate code snippet using com.intuit.karate.robot.OpenCvUtils

Source:RobotBase.java Github

copy

Full Screen

...370 return screenshot(new Region(this, x, y, width, height));371 }372 public byte[] screenshot(Region region) {373 BufferedImage image = region.capture();374 byte[] bytes = OpenCvUtils.toBytes(image);375 getRuntime().embed(bytes, ResourceType.PNG);376 return bytes;377 }378 @Override379 public Robot move(int x, int y) {380 robot.mouseMove(x, y);381 return this;382 }383 @Override384 public Robot click(int x, int y) {385 return move(x, y).click();386 }387 @Override388 public Element highlight(String locator) {389 return locate(Config.DEFAULT_HIGHLIGHT_DURATION, getSearchRoot(), locator);390 }391 @Override392 public List<Element> highlightAll(String locator) {393 return locateAll(Config.DEFAULT_HIGHLIGHT_DURATION, getSearchRoot(), locator);394 }395 @Override396 public Element focus(String locator) {397 return locate(getHighlightDuration(), getSearchRoot(), locator).focus();398 }399 @Override400 public Element locate(String locator) {401 return locate(getHighlightDuration(), getSearchRoot(), locator);402 }403 @Override404 public List<Element> locateAll(String locator) {405 return locateAll(getHighlightDuration(), getSearchRoot(), locator);406 }407 @Override408 public boolean exists(String locator) {409 return optional(locator).isPresent();410 }411 @Override412 public Element optional(String locator) {413 return optional(getSearchRoot(), locator);414 }415 @Override416 public boolean windowExists(String locator) {417 return windowOptional(locator).isPresent();418 }419 @Override420 public Element windowOptional(String locator) {421 return waitForWindowOptional(locator, false);422 }423 @Override424 public Element waitForWindowOptional(String locator) {425 return waitForWindowOptional(locator, true);426 }427 protected Element waitForWindowOptional(String locator, boolean retry) {428 Element prevWindow = currentWindow;429 Element window = window(locator, retry, false); // will update currentWindow 430 currentWindow = prevWindow; // so we reset it431 if (window == null) {432 return new MissingElement(this);433 }434 // note that currentWindow will NOT point to the new window located435 return window;436 }437 protected Element optional(Element searchRoot, String locator) {438 Element found = locateImageOrElement(searchRoot, locator);439 if (found == null) {440 logger.warn("element does not exist: {}", locator);441 return new MissingElement(this);442 }443 if (highlight) {444 found.highlight();445 }446 return found;447 }448 protected Element locate(int duration, Element searchRoot, String locator) {449 Element found;450 if (retryEnabled) {451 found = retryForAny(true, searchRoot, locator);452 } else {453 found = locateImageOrElement(searchRoot, locator);454 if (found == null) {455 String message = "cannot locate: '" + locator + "' (" + searchRoot.getDebugString() + ")";456 logger.error(message);457 throw new RuntimeException(message);458 }459 if (duration > 0) {460 found.getRegion().highlight(duration);461 }462 }463 return found;464 }465 protected List<Element> locateAll(int duration, Element searchRoot, String locator) {466 List<Element> found;467 if (locator.endsWith(".png")) {468 found = locateAllImages(searchRoot, locator);469 } else if (locator.startsWith("{")) {470 found = locateAllText(searchRoot, locator);471 } else {472 found = locateAllInternal(searchRoot, locator);473 }474 if (duration > 0) {475 RobotUtils.highlightAll(searchRoot.getRegion(), found, duration, false);476 }477 return found;478 }479 @Override480 public Element move(String locator) {481 return locate(getHighlightDuration(), getSearchRoot(), locator).move();482 }483 @Override484 public Element click(String locator) {485 return locate(getHighlightDuration(), getSearchRoot(), locator).click();486 }487 @Override488 public Element select(String locator) {489 return locate(getHighlightDuration(), getSearchRoot(), locator).select();490 }491 @Override492 public Element press(String locator) {493 return locate(getHighlightDuration(), getSearchRoot(), locator).press();494 }495 @Override496 public Element release(String locator) {497 return locate(getHighlightDuration(), getSearchRoot(), locator).release();498 }499 private StringUtils.Pair parseOcr(String raw) { // TODO make object500 int pos = raw.indexOf('}');501 String lang = raw.substring(1, pos);502 if (lang.length() < 2) {503 lang = lang + tessLang;504 }505 String text = raw.substring(pos + 1);506 return StringUtils.pair(lang, text);507 }508 public List<Element> locateAllText(Element searchRoot, String path) {509 StringUtils.Pair pair = parseOcr(path);510 String lang = pair.left;511 boolean negative = lang.charAt(0) == '-';512 if (negative) {513 lang = lang.substring(1);514 }515 String text = pair.right;516 return Tesseract.findAll(this, lang, searchRoot.getRegion(), text, negative);517 }518 public Element locateText(Element searchRoot, String path) {519 StringUtils.Pair pair = parseOcr(path);520 String lang = pair.left;521 boolean negative = lang.charAt(0) == '-';522 if (negative) {523 lang = lang.substring(1);524 }525 String text = pair.right;526 return Tesseract.find(this, lang, searchRoot.getRegion(), text, negative);527 }528 private static class PathAndStrict {529 final int strictness;530 final String path;531 public PathAndStrict(String path) {532 int pos = path.indexOf(':');533 if (pos > 0 && pos < 3) {534 strictness = Integer.valueOf(path.substring(0, pos));535 this.path = path.substring(pos + 1);536 } else {537 strictness = 10;538 this.path = path;539 }540 }541 }542 public List<Element> locateAllImages(Element searchRoot, String path) {543 PathAndStrict ps = new PathAndStrict(path);544 List<Region> found = OpenCvUtils.findAll(ps.strictness, this, searchRoot.getRegion(), readBytes(ps.path), true);545 List<Element> list = new ArrayList(found.size());546 for (Region region : found) {547 list.add(new ImageElement(region));548 }549 return list;550 }551 public Element locateImage(Region region, String path) {552 PathAndStrict ps = new PathAndStrict(path);553 return locateImage(region, ps.strictness, readBytes(ps.path));554 }555 public Element locateImage(Region searchRegion, int strictness, byte[] bytes) {556 Region region = OpenCvUtils.find(strictness, this, searchRegion, bytes, true);557 if (region == null) {558 return null;559 }560 return new ImageElement(region);561 }562 @Override563 public Element window(String title) {564 return window(title, true, true);565 }566 private Element window(String title, boolean retry, boolean failWithException) {567 return window(new StringMatcher(title), retry, failWithException);568 }569 @Override570 public Element window(Predicate<String> condition) {571 return window(condition, true, true);572 }573 private Element window(Predicate<String> condition, boolean retry, boolean failWithException) {574 try {575 currentWindow = retry ? retry(() -> windowInternal(condition), w -> w != null, "find window", failWithException) : windowInternal(condition);576 } catch (Exception e) {577 if (failWithException) {578 throw e;579 }580 logger.warn("failed to find window: {}", e.getMessage());581 currentWindow = null;582 }583 if (currentWindow != null && highlight) { // currentWindow can be null584 currentWindow.highlight(getHighlightDuration());585 }586 return currentWindow;587 }588 protected Element getSearchRoot() {589 if (currentWindow == null) {590 logger.warn("using desktop as search root, activate a window or parent element for better performance");591 return getRoot();592 }593 return currentWindow;594 }595 @Override596 public Object waitUntil(Supplier<Object> condition) {597 return waitUntil(condition, true);598 }599 @Override600 public Object waitUntilOptional(Supplier<Object> condition) {601 return waitUntil(condition, false);602 }603 protected Object waitUntil(Supplier<Object> condition, boolean failWithException) {604 return retry(() -> condition.get(), o -> o != null, "waitUntil (function)", failWithException);605 }606 @Override607 public Element waitFor(String locator) {608 return retryForAny(true, getSearchRoot(), locator);609 }610 @Override611 public Element waitForOptional(String locator) {612 return retryForAny(false, getSearchRoot(), locator);613 }614 @Override615 public Element waitForAny(String locator1, String locator2) {616 return retryForAny(true, getSearchRoot(), locator1, locator2);617 }618 @Override619 public Element waitForAny(String[] locators) {620 return retryForAny(true, getSearchRoot(), locators);621 }622 protected Element retryForAny(boolean failWithException, Element searchRoot, String... locators) {623 Element found = retry(() -> waitForAny(searchRoot, locators), r -> r != null, "find by locator(s): " + Arrays.asList(locators), failWithException);624 return found == null ? new MissingElement(this) : found;625 }626 private Element waitForAny(Element searchRoot, String... locators) {627 for (String locator : locators) {628 Element found = locateImageOrElement(searchRoot, locator);629 if (found != null) {630 if (highlight) {631 found.getRegion().highlight(highlightDuration);632 }633 return found;634 }635 }636 return null;637 }638 private Element locateImageOrElement(Element searchRoot, String locator) {639 if (locator.endsWith(".png")) {640 return locateImage(searchRoot.getRegion(), locator);641 } else if (locator.startsWith("{")) {642 return locateText(searchRoot, locator);643 } else if (searchRoot.isImage()) {644 // TODO645 throw new RuntimeException("todo find non-image elements within region");646 } else {647 return locateInternal(searchRoot, locator);648 }649 }650 @Override651 public Element activate(String locator) {652 return locate(locator).activate();653 }654 @Override655 public Element getActive() {656 if (currentWindow == null) {657 throw new RuntimeException("no window has been selected or activated");658 }659 return currentWindow;660 }661 @Override662 public Robot setActive(Element e) {663 if (e.isPresent()) {664 currentWindow = e;665 }666 return this;667 }668 public void debugImage(String path) {669 byte[] bytes = readBytes(path);670 OpenCvUtils.show(bytes, path);671 }672 @Override673 public String getClipboard() {674 try {675 return (String) toolkit.getSystemClipboard().getData(DataFlavor.stringFlavor);676 } catch (Exception e) {677 logger.warn("unable to return clipboard as string: {}", e.getMessage());678 return null;679 }680 }681 @Override682 public Location getLocation() {683 Point p = MouseInfo.getPointerInfo().getLocation();684 return new Location(this, p.x, p.y);...

Full Screen

Full Screen

Source:OpenCvUtilsTest.java Github

copy

Full Screen

...7/**8 *9 * @author pthomas310 */11public class OpenCvUtilsTest {12 private static final Logger logger = LoggerFactory.getLogger(OpenCvUtilsTest.class);13 @Test14 public void testOpenCv() {15 // System.setProperty("org.bytedeco.javacpp.logger.debug", "true");16 File target = new File("src/test/java/search.png");17 File source = new File("src/test/java/desktop01.png");18 Region region = OpenCvUtils.find(1, null, OpenCvUtils.read(source), OpenCvUtils.read(target), false);19 assertEquals(1605, region.x);20 assertEquals(1, region.y);21 target = new File("src/test/java/search-1_5.png");22 region = OpenCvUtils.find(10, null, OpenCvUtils.read(source), OpenCvUtils.read(target), true);23 assertEquals(1604, region.x);24 assertEquals(0, region.y);25 region = OpenCvUtils.find(2, null, OpenCvUtils.read(source), OpenCvUtils.read(target), true);26 assertEquals(1605, region.x);27 assertEquals(1, region.y); 28 }29}...

Full Screen

Full Screen

OpenCvUtils

Using AI Code Generation

copy

Full Screen

1import com.intuit.karate.robot.OpenCvUtils;2import org.opencv.core.Mat;3import org.opencv.core.Size;4import org.opencv.imgcodecs.Imgcodecs;5import org.opencv.imgproc.Imgproc;6import org.opencv.imgproc.Moments;7import org.opencv.imgproc.Imgproc;8import org.opencv.core.Point;9import org.opencv.core.Core;10import com.intuit.karate.robot.OpenCvUtils;11import org.opencv.core.Mat;12import org.opencv.core.Size;13import org.opencv.imgcodecs.Imgcodecs;14import org.opencv.imgproc.Imgproc;15import org.opencv.imgproc.Moments;16import org.opencv.imgproc.Imgproc;17import org.opencv.core.Point;18import org.opencv.core.Core;19import java.awt.image.BufferedImage;20import java.io.File;21import java.io.IOException;22import java.nio.file.Files;23import java.nio.file.Paths;24import java.util.ArrayList;25import java.util.List;26import java.util.Map;27import java.util.concurrent.TimeUnit;28import javax.imageio.ImageIO;29import org.junit.Test;30import org.junit.runner.RunWith;31import com.intuit.karate.Results;32import com.intuit.karate.Runner;33import com.intuit.karate.junit4.Karate;34@RunWith(Karate.class)35public class 4 {36 public void testParallel() {37 Results results = Runner.path("classpath:4").outputCucumberJson(true).parallel(1);38 generateReport(results.getReportDir());39 }40 public static void generateReport(String karateOutputPath) {41 Collection<File> jsonFiles = FileUtils.listFiles(new File(karateOutputPath), new String[] {"json"}, true);42 List<String> jsonPaths = new ArrayList<String>(jsonFiles.size());43 for (File file : jsonFiles) {44 jsonPaths.add(file.getAbsolutePath());45 }46 Configuration config = new Configuration(new File("target"), "4");47 ReportBuilder reportBuilder = new ReportBuilder(jsonPaths, config);48 reportBuilder.generateReports(); 49 }50}51import com.intuit.karate.robot.OpenCvUtils;52import org.opencv.core.Mat;53import org.opencv.core.Size;54import

Full Screen

Full Screen

OpenCvUtils

Using AI Code Generation

copy

Full Screen

1import com.intuit.karate.robot.OpenCvUtils;2import org.opencv.core.*;3import org.opencv.imgcodecs.Imgcodecs;4import org.opencv.imgproc.Imgproc;5import org.opencv.imgproc.Moments;6import java.util.*;7import java.util.List;8import java.util.stream.Collectors;9import static org.opencv.core.Core.*;10import static org.opencv.core.CvType.CV_8UC1;11import static org.opencv.imgcodecs.Imgcodecs.imread;12import static org.opencv.imgproc.Imgproc.*;13import static org.opencv.imgproc.Imgproc.COLOR_BGR2GRAY;14import static org.opencv.imgproc.Imgproc.getStructuringElement;15import static org.opencv.imgproc.Imgproc.morphologyEx;16import static org.opencv.imgproc.Imgproc.threshold;17import static org.opencv.imgproc.Imgproc.warpPerspective;18public class 4 {19 public static void main(String[] args) {20 System.loadLibrary(Core.NATIVE_LIBRARY_NAME);21 Mat src = imread("C:\\Users\\Admin\\Desktop\\4.jpg", Imgcodecs.IMREAD_COLOR);22 Mat dst = new Mat();23 Mat gray = new Mat();24 Mat thresh = new Mat();25 Mat hierarchy = new Mat();26 Mat element = getStructuringElement(MORPH_RECT, new Size(3, 3));27 List<MatOfPoint> contours = new ArrayList<>();28 List<MatOfPoint> contours1 = new ArrayList<>();29 List<MatOfPoint> contours2 = new ArrayList<>();30 List<MatOfPoint> contours3 = new ArrayList<>();31 List<MatOfPoint> contours4 = new ArrayList<>();32 List<MatOfPoint> contours5 = new ArrayList<>();33 List<MatOfPoint> contours6 = new ArrayList<>();34 List<MatOfPoint> contours7 = new ArrayList<>();35 List<MatOfPoint> contours8 = new ArrayList<>();36 List<MatOfPoint> contours9 = new ArrayList<>();37 List<MatOfPoint> contours10 = new ArrayList<>();38 List<MatOfPoint> contours11 = new ArrayList<>();39 List<MatOfPoint> contours12 = new ArrayList<>();40 List<MatOfPoint> contours13 = new ArrayList<>();41 List<MatOfPoint> contours14 = new ArrayList<>();42 List<MatOfPoint> contours15 = new ArrayList<>();

Full Screen

Full Screen

OpenCvUtils

Using AI Code Generation

copy

Full Screen

1import com.intuit.karate.robot.OpenCvUtils;2import java.awt.image.BufferedImage;3import java.util.HashMap;4import java.util.Map;5import javax.imageio.ImageIO;6import org.opencv.core.Mat;7import org.opencv.imgcodecs.Imgcodecs;8import org.opencv.imgproc.Imgproc;9import org.slf4j.Logger;10import org.slf4j.LoggerFactory;11import java.io.File;12import java.io.IOException;13import java.net.URL;14import java.util.HashMap;15import java.util.Map;16import javax.imageio.ImageIO;17import org.opencv.core.Mat;18import org.opencv.imgcodecs.Imgcodecs;19import org.opencv.imgproc.Imgproc;20import org.slf4j.Logger;21import org.slf4j.LoggerFactory;22import java.io.File;23import java.io.IOException;24import java.net.URL;25import javax.imageio.ImageIO;26import org.opencv.core.Mat;27import org.opencv.imgcodecs.Imgcodecs;28import org.opencv.imgproc.Imgproc;29import org.slf4j.Logger;30import org.slf4j.LoggerFactory;31import java.io.File;32import java.io.IOException;33import java.net.URL;34import javax.imageio.ImageIO;35import org.opencv.core.Mat;36import org.opencv.imgcodecs.Imgcodecs;37import org.opencv.imgproc.Imgproc;38import org.slf4j.Logger;39import org.slf4j.LoggerFactory;40import java.io.File;41import java.io.IOException;42import java.net.URL;43import javax.imageio.ImageIO;44import org.opencv.core.Mat;45import org.opencv.imgcodecs.Imgcodecs;46import org.opencv.imgproc.Imgproc;47import org.slf4j.Logger;48import org.slf4j.LoggerFactory;49import java.io.File;50import java.io.IOException;51import java.net.URL;52import javax.imageio.ImageIO;53import org.opencv.core.Mat;54import org.opencv.imgcodecs.Imgcodecs;55import org.opencv.imgproc.Imgproc;56import org.slf4j.Logger;57import org.slf4j.LoggerFactory;58import java.io.File;59import java.io.IOException;60import java.net.URL;61import javax.imageio.ImageIO;62import org.opencv.core.Mat;63import org.opencv.imgcodecs.Imgcodecs;64import org.opencv.imgproc.Imgproc;65import org.slf4j.Logger;66import org.slf4j.LoggerFactory;67import java.io.File;68import java.io.IOException;69import

Full Screen

Full Screen

OpenCvUtils

Using AI Code Generation

copy

Full Screen

1import com.intuit.karate.robot.OpenCvUtils;2import com.intuit.karate.OpenCvUtils;3import com.intuit.karate.core.OpenCvUtils;4import com.intuit.karate.core.robot.OpenCvUtils;5import com.intuit.karate.core.robot.OpenCvUtils;6import com.intuit.karate.core.robot.OpenCvUtils;7import com.intuit.karate.core.robot.OpenCvUtils;8import com.intuit.karate.core.robot.OpenCvUtils;9import com.intuit.karate.core.robot.OpenCvUtils;10import com.intuit.karate.core.robot.OpenCvUtils;11import com.intuit.karate.core.robot.OpenCvUtils;12import com.intuit.karate.core.robot.OpenCvUtils;13import com.intuit.karate.core.robot.OpenCvUtils;14import com.intuit.karate.core.robot.OpenCvUtils;15import com.intuit.karate.core.robot.OpenCvUtils;

Full Screen

Full Screen

OpenCvUtils

Using AI Code Generation

copy

Full Screen

1import com.intuit.karate.robot.OpenCvUtils;2import org.opencv.core.Mat;3import org.opencv.core.MatOfPoint;4import org.opencv.core.Rect;5import org.opencv.core.Size;6import java.util.ArrayList;7import java.util.List;8public class OpenCvUtilsTest {9 public static void main(String[] args) {10 OpenCvUtils.loadOpenCvLibrary();11 Mat image = OpenCvUtils.loadImage("path to image");12 Mat gray = OpenCvUtils.grayscale(image);13 Mat blurred = OpenCvUtils.blur(gray, 5);14 Mat threshold = OpenCvUtils.threshold(blurred, 100, 255, OpenCvUtils.THRESH_BINARY_INV);15 List<MatOfPoint> contours = new ArrayList<>();16 Mat hierarchy = new Mat();17 OpenCvUtils.findContours(threshold, contours, hierarchy, OpenCvUtils.RETR_TREE, OpenCvUtils.CHAIN_APPROX_SIMPLE);18 List<Rect> rects = new ArrayList<>();19 for (MatOfPoint contour : contours) {20 rects.add(OpenCvUtils.boundingRect(contour));21 }22 OpenCvUtils.drawContours(image, contours, -1, new Scalar(0, 0, 255), 2);23 OpenCvUtils.drawRects(image, rects, new Scalar(0, 255, 0), 2);24 OpenCvUtils.showImage("Image", image);25 OpenCvUtils.waitKey(0);26 }27}28import com.intuit.karate.robot.OpenCvUtils;29import org.opencv.core.Mat;30import org.opencv.core.MatOfPoint;31import org.opencv.core.Rect;32import org.opencv.core.Size;33import java.util.ArrayList;34import java.util.List;35public class OpenCvUtilsTest {36 public static void main(String[] args) {37 OpenCvUtils.loadOpenCvLibrary();38 Mat image = OpenCvUtils.loadImage("path to image");39 Mat gray = OpenCvUtils.grayscale(image);40 Mat blurred = OpenCvUtils.blur(gray, 5);41 Mat threshold = OpenCvUtils.threshold(blurred, 100, 255, OpenCvUtils.THRESH_BINARY_INV);

Full Screen

Full Screen

OpenCvUtils

Using AI Code Generation

copy

Full Screen

1import com.intuit.karate.robot.OpenCvUtils;2import java.awt.image.BufferedImage;3import java.io.File;4import javax.imageio.ImageIO;5import org.opencv.core.Mat;6import org.opencv.highgui.Highgui;7import org.opencv.highgui.VideoCapture;8public class 4 {9 public static void main(String[] args) throws Exception {10 System.loadLibrary("opencv_java2410");11 VideoCapture camera = new VideoCapture(0);12 Mat frame = new Mat();13 camera.read(frame);14 BufferedImage image = Highgui.imdecode(frame);15 OpenCvUtils.save(image, "jpg", new File("test.jpg"));16 }17}18import com.intuit.karate.robot.OpenCvUtils;19import java.awt.image.BufferedImage;20import java.io.File;21import javax.imageio.ImageIO;22import org.opencv.core.Mat;23import org.opencv.highgui.Highgui;24import org.opencv.highgui.VideoCapture;25public class 5 {26 public static void main(String[] args) throws Exception {27 System.loadLibrary("opencv_java2410");28 VideoCapture camera = new VideoCapture(0);29 Mat frame = new Mat();30 camera.read(frame);31 BufferedImage image = Highgui.imdecode(frame);32 OpenCvUtils.save(image, "jpg", new File("test.jpg"));33 }34}35import com.intuit.karate.robot.OpenCvUtils;36import java.awt.image.BufferedImage;37import java.io.File;38import javax.imageio.ImageIO;39import org.opencv.core.Mat;40import org.opencv.highgui.Highgui;41import org.opencv.highgui.VideoCapture;42public class 6 {43 public static void main(String[] args) throws Exception {44 System.loadLibrary("opencv_java2410");45 VideoCapture camera = new VideoCapture(0);46 Mat frame = new Mat();47 camera.read(frame);48 BufferedImage image = Highgui.imdecode(frame);49 OpenCvUtils.save(image, "jpg", new File("test.jpg"));50 }

Full Screen

Full Screen

OpenCvUtils

Using AI Code Generation

copy

Full Screen

1import com.intuit.karate.robot.OpenCvUtils;2import java.io.File;3public class 4 {4 public static void main(String[] args) {5 File file1 = new File("C:\\Users\\Sai\\Desktop\\karate\\karate-demo\\src\\test\\java\\images\\image1.png");6 File file2 = new File("C:\\Users\\Sai\\Desktop\\karate\\karate-demo\\src\\test\\java\\images\\image2.png");7 boolean result = OpenCvUtils.compare(file1, file2);8 System.out.println(result);9 }10}11import com.intuit.karate.robot.OpenCvUtils;12import java.io.File;13public class 5 {14 public static void main(String[] args) {15 File file1 = new File("C:\\Users\\Sai\\Desktop\\karate\\karate-demo\\src\\test\\java\\images\\image1.png");16 File file2 = new File("C:\\Users\\Sai\\Desktop\\karate\\karate-demo\\src\\test\\java\\images\\image2

Full Screen

Full Screen

OpenCvUtils

Using AI Code Generation

copy

Full Screen

1import com.intuit.karate.robot.OpenCvUtils;2import com.intuit.karate.robot.OpenCvUtils.Image;3import com.intuit.karate.robot.OpenCvUtils.Match;4String f1 = "C:\\Users\\myuser\\Desktop\\1.png";5String f2 = "C:\\Users\\myuser\\Desktop\\2.png";6Image i1 = OpenCvUtils.loadImage(f1);7Image i2 = OpenCvUtils.loadImage(f2);8Match m = OpenCvUtils.match(i1, i2);9if (m == null) {10 logger.warn("no match");11} else {12 logger.info("match: {}", m);13}14import com.intuit.karate.robot.OpenCvUtils;15import com.intuit.karate.robot.OpenCvUtils.Image;16import com.intuit.karate.robot.OpenCvUtils.Match;17String f1 = "C:\\Users\\myuser\\Desktop\\1.png";18String f2 = "C:\\Users\\myuser\\Desktop\\2.png";19Image i1 = OpenCvUtils.loadImage(f1);20Image i2 = OpenCvUtils.loadImage(f2);21Match m = OpenCvUtils.match(i1, i2, 0.9);22if (m == null) {23 logger.warn("no match");24} else {25 logger.info("match: {}", m);26}27import com.intuit.karate.robot.OpenCvUtils;28import com.intuit.karate.robot.OpenCvUtils.Image;29import com.intuit.karate.robot.OpenCvUtils.Match;30String f1 = "C:\\Users\\myuser\\Desktop\\1.png";31String f2 = "C:\\Users\\myuser\\Desktop\\2.png";32Image i1 = OpenCvUtils.loadImage(f1);33Image i2 = OpenCvUtils.loadImage(f2);34Match m = OpenCvUtils.match(i1, i2, 0.9, 0.1);35if (m == null) {36 logger.warn("no match");37} else {38 logger.info("match: {}", m);39}

Full Screen

Full Screen

OpenCvUtils

Using AI Code Generation

copy

Full Screen

1import static com.intuit.karate.robot.OpenCvUtils.*;2import static org.junit.Assert.*;3String expected = "expected.png";4String actual = "actual.png";5double match = compare(expected, actual);6assertTrue(match >= 90);

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Karate automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful