到目前为止,这是我的代码,它仅显示污渍内部的孔。需要知道如何计算它们。
dynamoDb.get(params, function(err, data) {
if (err) {
console.error("Unable to read item. Error JSON:", JSON.stringify(err, null, 2));
} else {
url = parse(data);
console.log("GetItem succeeded:", JSON.stringify(data, null, 2));
http.get(url,function(res) {
res.on('error', function(err){
console.log(err);
});
res.on('data',function(d){
console.log("received more chunks");
chunks += d;
});
res.on('end',function(){
console.log("http request complete");
});
});
}
});
此外,我必须使用的图像是.tif,但这就是jpeg的样子