In the video he told that at 1:09 min timestamp
"we will iterate over every pixel and see the closet centre for every pixel and replace the new_img pixel with closet one "
but in the for loop we are simply iterating over new_img and putting color value in order of for loop. we are not looking for the closet centre and then replacing
for i in range(new_image.shape[0]):
new_image[i]=color[km.labels_[i]]