This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gst-launch-1.0 shmsrc socket-path=/tmp/infered.feed do-timestamp=1 ! \ | |
video/x-raw,format=RGB,width=1920,height=1080,framerate=30/1 ! \ | |
identity sync=true ! \ | |
queue max-size-buffers=2 leaky=downstream ! \ | |
videoconvert ! \ | |
fpsdisplaysink video-sink=autovideosink text-overlay=true sync=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.jameselsey.demo.spocktutorial.domain; | |
public class User { | |
private int id; | |
private String name; | |
private int age; | |
public int getId() { | |
return id; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class MyUtilityClass{ | |
// Sonar wants me to add private constructors to static util classes | |
private MyUtilityClass() { | |
} | |
public static String someUtilityMethod(String input){ | |
return input.reverse(); | |
} | |