A logistics company receives paper bills of lading from freight drivers. Each form has a similar layout with a shipment ID, ship and delivery dates, and a signature line in roughly the same place. The company wants software that scans a photo of each form and returns the shipment ID, dates, and signature presence as separate structured fields it can feed directly into its transportation management system, rather than just a block of extracted text. Which AI capability best fits this need?
Select an answer to reveal the explanation.
Short Explanation
The team does not just want a wall of text dumped out of each scanned form; it wants the shipment ID, the dates, and whether a signature is present handed back as separate, ready-to-use values that slot straight into another system. Because every form is laid out about the same way, software built for reading structured forms can learn where each field lives and hand back exactly those labeled values. That is different from software that only pulls every visible character off the page without knowing which string is which field, since that still leaves someone sorting through raw text by hand. It is also different from slapping one overall label on the whole photo, since a single category tag does not tell you what the shipment ID actually is. And it is different again from drawing boxes around physical objects in a picture, which is built for finding things like vehicles or packages, not for reading printed values off a form.
Full Explanation
The correct answer is A. The company does not just want raw text pulled off the page; it wants the specific shipment ID, dates, and signature field returned as separate, structured values it can load straight into its transportation system. Because the bills of lading share a consistent layout, form or document intelligence can learn where each field sits and return key-value pairs rather than an undifferentiated block of text. Option B is incorrect because optical character recognition on its own only extracts all visible text from an image; it does not know that one string is the shipment ID and another is a date unless a form-understanding layer is added on top. Option C is incorrect because image classification assigns one overall label to the whole photo, such as identifying it as a bill of lading, rather than pulling out individual fields within it. Option D is incorrect because object detection locates and boxes physical objects like a truck or a pallet within an image; it is not designed to read and structure printed field values on a form.