需要计算图片中的污渍数量,以及带孔的污渍数量

时间:2018-09-02 18:06:41

标签: python opencv image-processing

到目前为止,这是我的代码,它仅显示污渍内部的孔。需要知道如何计算它们。

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的样子

Also, the image that I have to use is a .tif, but this is how it looks like as a jpeg

0 个答案:

没有答案