Imagemagick进程永远挂在Loopbackjs上

时间:2016-09-07 08:22:14

标签: imagemagick loopbackjs child-process

我得到这段代码来检查图像文件是否包含带Imagemagick的蓝色像素并计算它们 - 然后保存结果。

它运行良好,但似乎Imagemagick的许多进程永远挂在服务器上并且使它非常慢。

有没有办法改进此代码并避免这种麻烦?

module.exports = function (File) {
    File.observe('after save', function countPixels(ctx, next) {
        if (ctx.instance && !ctx.instance.blue_pixels) {
            var exec = require('child_process').exec;

            // Convert file to retrieve only blue pixels:
            exec('convert ' + ctx.instance.path + ' -fx "u.b>(u.g+0.2)&&u.b>(u.r+0.2)&&saturation>0.6" -format "%[fx:mean*w*h]" info:',
                    function (error, stdout, stderr) {
                        if (error !== null) {
                            return next(error);
                        } else {
                            ctx.instance.blue_pixels = stdout;
                            File.upsert(ctx.instance);
                        }
                    });
        }
        next();
    });
};

2 个答案:

答案 0 :(得分:1)

您使用的-fx运算符非常慢 - 特别是对于大图像。我尝试使用更快的方法来铸造相同的公式,这可能会对你有帮助。所以,我制作了一个示例图片:

convert xc:red xc:lime -append \( xc:blue xc:cyan -append \) +append -resize 256x256! input.png

enter image description here

然后重写你的表达方式:

convert input.png \
  \( -clone 0 -separate -delete 0 -evaluate-sequence subtract -threshold 20% -write BG.png \) \
  \( -clone 0 -separate -delete 1 -evaluate-sequence subtract -threshold 20% -write BR.png \) \
  \( -clone 0 -colorspace hsl -separate -delete 0,2 -threshold 60% -write S.png \)            \
  -delete 0 \
  -evaluate-sequence min result.png

请注意,-write XYZ.png只是可以删除的调试语句。

基本上,我正在构建一个符合您标准的所有像素的遮罩,并将其设为白色,并将所有与您的标准不匹配的像素设置为黑色,最后,我运行-evaluate-sequence min来查找每个像素的最小值,以便有效地满足您的所有三个条件:

  • 蓝色超过绿色20%
  • 蓝色超过红色20%
  • 饱和度超过60%

-separate -delete N将您的图片拆分为RGB通道,然后删除其中一个结果通道,因此,如果我-delete 1(即绿色通道),我将留下红色和蓝色。这是中间调试图像。第一个是条件蓝色超过红色20%:

enter image description here

然后蓝色超过绿色20%:

enter image description here

最后,饱和度超过60%:

enter image description here

然后结果:

enter image description here

您需要将-format "%[fx:mean*w*h]" info:放回到最后代替输出图像名称,以获得饱和蓝色像素的数量。

如果我运行你的命令:

convert input.png -fx "u.b>(u.g+0.2)&&u.b>(u.r+0.2)&&saturation>0.6" result.png

enter image description here

今天我的大脑不太正确,所以请你做一些检查 - 我可能会在某个地方有一些东西!

作为基准,在10,000x10,000像素的PNG上,我的代码在30秒内运行,而-fx相当于将近7分钟。

答案 1 :(得分:1)

我不知道imagelagick的一部分。但是对于节点部分,我看到你在imagemgick opertion上调用了next non。

module.exports = function (File) {
    File.observe('after save', function countPixels(ctx, next) {
        if (ctx.instance && !ctx.instance.blue_pixels) {
            var exec = require('child_process').exec;

            // Convert file to retrieve only blue pixels:
            exec('convert ' + ctx.instance.path + ' -fx "u.b>(u.g+0.2)&&u.b>(u.r+0.2)&&saturation>0.6" -format "%[fx:mean*w*h]" info:',
                    function (error, stdout, stderr) {
                        if (error !== null) {
                            return next(error);
                        } else {
                            ctx.instance.blue_pixels = stdout;
                            File.upsert(ctx.instance);
                            next();
                        }
                    });
        }
        else{next();}
        //next(); //run next hook ASAP (before imagemagick returns back the result)
    });
};