You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

This article will describe the details about integrating already generated metadata with Clowder.

  Background

At the time of writing this document, there are about 171,000 images that were processed for extracting various features like faces, eyes, facial profile, close ups, printed text, presence of Stryker hole, presence of border, mean and standard deviation of grayscale values, subject details, photographer details, and category details. These are being done on Comet by using stripped down version of Clowder Extractors or in certain cases, by creating new standalone programs. Integrating this information with Clowder is important to use its features like RESTful API, authentication and authorization, available visualizations, etc.

  PyClowder2

Write a short note about PyClowder2  - the latest version of Python library for writing Clowder extractors 

 Data Tables

The following set of data tables contain extracted metadata. Description of those tables are provided to understand the contents of the table

FacesInfo

Field DescriptionDatabase Column NameRemarks
LOC IndexidString;
Image heightimghtFloat;
Image widthimgwidFloat;

The letter F, it's only there to help browse raw data

dumb1String;
Number of faces foundnum_facesInteger;
Bounding box location of facesface_segs

String; this is a text string that has the ith face, x, y, width, height of face segment
-- each face segment is separated by a semi colon.

The letter P, it's only there to help browse raw datadumb2String;
Number of profiles foundnum_profilesInteger;
Bounding box location of profilesprof_segsString;
The letter Y, it's only there to help browse raw datadumb3String;
Number of eyes foundnum_eyesInteger;
Bounding box location of eyeseye_segsString;
The letter C , it's only there to help browse raw datadumb4String;
Number of face full closeupsnum_fullclsInteger; 'FULL' is relative to image size
Number of face mid closeupsnum_midclsInteger; 'MID' is relative to image size
Number of profile full closeupsnum_fullprofInteger; 'FULL' is relative to image size
Number of profile mid closeupsnum_midprofInteger; 'MID' is relative to image size


CreatorInfo

CategoryInfo

ImageProperties

ImageFilesList

OCRInfo

SubjectInfo 

  • No labels