0

I have an image as follows that shows the residue of fluorescent powder left on a surface after 5 sequential contacts. Is it possible to quantify the a difference in the amount of residue between contacts?

enter image description here

I have looked at Fiji/ImageJ and selected each finger print at a time to get the mean grey value but I don't see much difference to be honest. Any help or thoughts would be very much appreciated. Happy to think about python or matlab.

4

1 回答 1

1

为了使强度的量化有用,我想您需要假设您的图像是均匀照亮的,并且您看到的任何荧光都不是过饱和的结果。话虽如此,原则上,您可以对给定的指纹进行轮廓化,将其复制到新图像,然后在调整阈值后测量堆栈直方图,以便将比指纹粉末更暗的区域设置为黑色。也许分布的变化将说明发生的变化,如果有的话。

编辑:

第一:通过使用通道计算器功能将 RGB 通道相互添加来合并它们。您的信号是多种颜色的结果,因此在这里拆分它对我来说没有意义。

那么步骤将是:

  1. 将给定的打印复制到新窗口。
  2. 使用“调整阈值”设置阈值 0-n,其中 n 是不包括指纹的最高强度。
  3. 运行命令“编辑/选择/创建选择”。
  4. 运行命令“编辑/清除”。
  5. 按“ctrl+H”测量像素的直方图,然后按“List”得到实际值。
  6. 重复每次打印并在同一图表上绘制。

如果您已经获得了实际的直方图值,而不仅仅是粒子分析仪的范围,那么我不确定我个人还有什么可以建议的。

于 2019-08-27T10:05:49.267 回答