Size of an object in an image

Hello sir/Madam,
Is there any possibility to obtain the size of the object which is focussed in an image ???

Yes, have you see the find_blobs() method? It returns a list of color blobs which have a .w() and .h() attribute for the width and height of the blob respectively. You need some way to segment the image using color however.