Research Article

An Image Enhancement Method Using the Quantum-Behaved Particle Swarm Optimization with an Adaptive Strategy

Algorithm 1

Procedure of the QPSO.
Begin
 Initialize the population;
While (termination condition = false)
Do
  Compute mean best position ;
  Properly select the value of ;
  for ( to )
   Evaluate the objective function value ( );
   Update and ;
    For to
      rand1(·);
      ;
      rand2(·);
     if (rand3(·) < 0.5)
       ;
     else
       ;
     end if
    end for
   end for
  end do
end