Skip to content

Commit 6e1e03e

Browse files
2 parents 08829dd + 7753077 commit 6e1e03e

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

src/main/java/io/github/pseudoresonance/pixy2api/Pixy2Line.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,33 @@ else if (!wait) // we're busy
185185
}
186186
}
187187

188+
/**
189+
* Gets detected lines from cache
190+
*
191+
* @return Pixy2 Lines
192+
*/
193+
public Vector[] getVectors() {
194+
return vectors;
195+
}
196+
197+
/**
198+
* Gets detected intersections from cache
199+
*
200+
* @return Pixy2 Intersectionss
201+
*/
202+
public Intersection[] getIntersections() {
203+
return intersections;
204+
}
205+
206+
/**
207+
* Gets detected barcodes from cache
208+
*
209+
* @return Pixy2 Barcodes
210+
*/
211+
public Barcode[] getBarcodes() {
212+
return barcodes;
213+
}
214+
188215
/**
189216
* Sets Pixy2 line tracking mode
190217
*

0 commit comments

Comments
 (0)