Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Saveen Reddy committed Jul 7, 2017
1 parent bb9c737 commit 50e57e2
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
REFERENCE ASSEMBLY ImageCommon;
REFERENCE ASSEMBLY FaceSdk;
REFERENCE ASSEMBLY ImageEmotion;
REFERENCE ASSEMBLY ImageTagging;
REFERENCE ASSEMBLY ImageOcr;

@imgs = SELECT * FROM Build.dbo.Megaface;

@objects =
PROCESS @imgs
PRODUCE FileName,
NumObjects int,
Tags string
READONLY FileName
USING new Cognition.Vision.ImageTagger()
OPTION (PARTITION(FileName) = (PARTITIONCOUNT = 1000));

OUTPUT @objects
TO "/objects.csv“
USING Outputters.Csv();

0 comments on commit 50e57e2

Please sign in to comment.