Currently that is not how the scanning algorithm is implemented so this won't be possible.
All the foundations for making that feature are available but you have to write that yourself.
A simple algorithm would be :
1. scan for a barcode
2. get start and end point
3. take some offset upwards/downwards and scan again
4. if you find the same barcode -> goto 3
5. if you find something no other barcode, you have found the upper/lower bounds of the barcode
6. strip the area from you input data and goto 1.
It is a very crude algorithm but might work without having to do much programming.
Of course a pattern detection algorithm would be far more effective.
But if you are really adventurous, you could also maybe have a look at OpenCV in order to detect barcodes.
It is basically a simple version of facial detection and OpenCV is pretty good/fast at that.