基于 PSO 的图像增强
Pso based image enhacment
我想通过使用基于 pso 的灰度图像来增强我的图像 enhacment.I 发送算法,但我不明白我是如何获得我的图像的粒子的。pso paper
您只需要仔细阅读B. Proposed methodology
部分即可。它说的是这样的:
Now our aim is to find the best set of values
for these four parameters which can produce the optimal result
and to perform this work PSO is used. P number of particles
are initialized, each with four parameters a, b, c, and k by the
random values within their range and corresponding random
velocities.
所以你有你的粒子生成。每个粒子是一组4个随机值。
我想通过使用基于 pso 的灰度图像来增强我的图像 enhacment.I 发送算法,但我不明白我是如何获得我的图像的粒子的。pso paper
您只需要仔细阅读B. Proposed methodology
部分即可。它说的是这样的:
Now our aim is to find the best set of values for these four parameters which can produce the optimal result and to perform this work PSO is used. P number of particles are initialized, each with four parameters a, b, c, and k by the random values within their range and corresponding random velocities.
所以你有你的粒子生成。每个粒子是一组4个随机值。