Sort Score
Result 10 results
Languages All
Labels All
Results 421 - 430 of 942 for

information extraction

(0.06 sec)
  1. Indexing with stop words | Documentation

    Stop words are frequently used words that do not carry a semantic meaning and can be removed from an index to reduce its size. You can enable or disable the use of stop words by calling the setUseStopWords method of the IndexSettings class. The default value is true, meaning that stop words are filtered during indexing and not added to the index. A list of stop words to use during indexing can be specified in the stop word dictionary....Purchase Buy Now Pricing Information Free Trials Temporary License...the index is reloaded. For information on managing the stop word...

    docs.groupdocs.com/search/nodejs-java/indexing-...
  2. Images | Documentation

    Learn about managing metadata for Images formats....Purchase Buy Now Pricing Information Free Trials Temporary License...Leave feedback Extracting Common Image Information Working with...

    docs.groupdocs.com/metadata/net/images/
  3. Highlight Search Results using Java

    Learn how to highlight search results using Java with our guide, including a code example to efficiently highlight search results in Java for better management....emphasizing the relevant information within the search results...identify and access the information they are looking for with...

    kb.groupdocs.com/search/java/highlight-search-r...
  4. Indexing with stop words | Documentation

    Stop words are frequently used words that do not carry a semantic meaning and can be removed from an index to reduce its size. You can enable or disable the use of stop words by calling the setUseStopWords method of the IndexSettings class. The default value is true, meaning that stop words are filtered during indexing and not added to the index. A list of stop words to use during indexing can be specified in the stop word dictionary....Purchase Buy Now Pricing Information Free Trials Temporary License...the index is reloaded. For information on managing the stop word...

    docs.groupdocs.com/search/java/indexing-with-st...
  5. Working with metadata in ASF files | Documentation

    Reading ASF format-specific properties The GroupDocs.Metadata API supports extracting format-specific Information from ASF files. The following are the steps to read native ASF metadata. Load an ASF video Get the root metadata package Extract the native metadata package using the AsfRootPackage.getAsfPackage method Read the ASF metadata properties advanced_usage.managing_metadata_for_specific_formats.video.asf.AsfReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputAsf)) { AsfRootPackage root = metadata.getRootPackageGeneric(); AsfPackage asfPackage = root.getAsfPackage(); // Display basic properties System.out.println(String.format("Creation date: %s", asfPackage....Purchase Buy Now Pricing Information Free Trials Temporary License...API supports extracting format-specific information from ASF files...

    docs.groupdocs.com/metadata/java/working-with-m...
  6. Working with TORRENT files | Documentation

    In the BitTorrent file distribution system, a torrent file or METAINFO is a computer file that contains metadata about files and folders to be distributed, and usually also a list of the network locations of trackers, which are computers that help participants in the system find each other and form efficient distribution groups called swarms. A torrent file does not contain the content to be distributed; it only contains Information about those files, such as their names, sizes, folder structure, and cryptographic hash values for verifying file integrity....Purchase Buy Now Pricing Information Free Trials Temporary License...distributed; it only contains information about those files, such as...

    docs.groupdocs.com/metadata/java/working-with-t...
  7. Extract data from Emails | Documentation

    GroupDocs.Parser provides the functionality to extract data from emails. Both email message (eml, msg) and Outlook Storage (ost, pst) formats are supported. Also POP, IMAP and Exchange Web Services protocols are supported....Purchase Buy Now Pricing Information Free Trials Temporary License...usage / Extract data from various formats / Extract data from...

    docs.groupdocs.com/parser/net/extract-data-from...
  8. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific Information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Purchase Buy Now Pricing Information Free Trials Temporary License...API supports extracting format-specific information from BMP file...

    docs.groupdocs.com/metadata/net/working-with-bm...
  9. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific Information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Purchase Buy Now Pricing Information Free Trials Temporary License...API supports extracting format-specific information from BMP file...

    docs.groupdocs.com/metadata/java/working-with-b...
  10. Working with DICOM metadata | Documentation

    Reading DICOM metadata properties The GroupDocs.Metadata API supports extracting format-specific Information from DICOM images. The following are the steps to read the native DICOM metadata. Load a DICOM image Get the root metadata package Extract the native metadata package using the DicomRootPackage.getDicomPackage method Read the DICOM metadata properties examples.advanced_usage.managing_metadata_for_specific_formats.image.dicom.DicomReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDicom)) { DicomRootPackage root = metadata.getRootPackageGeneric(); if (root.getDicomPackage() != null) { System.out.println(root.getDicomPackage().getBitsAllocated()); System.out.println(root.getDicomPackage().getReds()); System.out.println(root.getDicomPackage().getGreens()); System.out.println(root.getDicomPackage().getBlues()); System....Purchase Buy Now Pricing Information Free Trials Temporary License...API supports extracting format-specific information from DICOM...

    docs.groupdocs.com/metadata/java/working-with-d...