-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
57 lines (48 loc) · 1.09 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const AWS = require('aws-sdk');
if (!AWS.config.region) {
AWS.config.update({
region: 'us-east-1',
});
}
const S3 = new AWS.S3();
const Rekognition = new AWS.Rekognition();
const bucketParams = {
Bucket: 'face-analise-js-example',
};
function listaImagens() {
let imagens = [];
S3.listObjects(bucketParams, (erro, data) => {
if (erro) {
console.log(erro);
} else {
const arrayImagens = data.Contents;
arrayImagens.forEach((imagem) => {
imagens.push(imagem.Key);
});
indexaColecao(imagens);
}
});
}
function indexaColecao(imagens) {
imagens.forEach((imagem) => {
console.log(imagem);
Rekognition.indexFaces(
{
CollectionId: 'faces',
DetectionAttributes: [],
ExternalImageId: imagem.slice(0, imagem.length - 4),
Image: {
S3Object: {
Bucket: 'face-analise-js-example',
Name: imagem,
},
},
},
(erro, data) => {
if (erro) console.log(erro, erro.stack);
else console.log(data);
}
);
});
}
listaImagens();