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

Compare with Current View Page History

« Previous Version 3 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

Database Column NameField DescriptionRemarks
idLOC IndexString;
imghtImage heightFloat;
imgwidImage widthFloat;
dumb1

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

String;
num_facesNumber of faces foundInteger;
face_segsBounding box location of faces

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.

dumb2The letter P, it's only there to help browse raw dataString;
num_profilesNumber of profiles foundInteger;
prof_segsBounding box location of profilesString;
dumb3The letter Y, it's only there to help browse raw dataString;
num_eyesNumber of eyes foundInteger;
eye_segsBounding box location of eyesString;
dumb4The letter C , it's only there to help browse raw dataString;
num_fullclsNumber of face full closeupsInteger; 'FULL' is relative to image size
num_midclsNumber of face mid closeupsInteger; 'MID' is relative to image size
num_fullprofNumber of profile full closeupsInteger; 'FULL' is relative to image size
num_midprofNumber of profile mid closeupsInteger; 'MID' is relative to image size


CreatorInfo

CategoryInfo

ImageProperties

ImageFilesList

OCRInfo

SubjectInfo 

  • No labels