skip to Main Content

I am using aws textract StartDocumentTextDetectionCommand and GetDocumentTextDetectionCommand. I want only lines to be returned, not the single words – Amazon web services

I am creating an OCR internal tool using aws textract and nodejs to detect text from a scanned pdf, specifically StartDocumentTextDetectionCommand and GetDocumentTextDetectionCommand. Currently returned in a list of block objects with the lines first and then starts detecting each…

VIEW QUESTION

Mapping List<LocalDateTime> to DynamoDB – Amazon web services

I'm trying to map to DynamoDB list of dates in Java @DynamoDBTypeConverted(converter = LocalDateTimeConverter.class) private List<LocalDateTime> acquisitionsDates; public class LocalDateTimeConverter implements DynamoDBTypeConverter<String, LocalDateTime> { @Override public String convert(LocalDateTime dateTime) { return dateTime.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME); } @Override public LocalDateTime unconvert(String dateTimeStr) { return…

VIEW QUESTION
Back To Top
Search