Can’t get post thumbnail to display in foreach loop

If you read the documentation that you have linked to, you would see that the post ID is stored in the array key post_id and not ID.

You should then change

get_the_post_thumbnail($popular_post->ID, 'wpbs-featured-full');

to

get_the_post_thumbnail($popular_post['post_id'], 'wpbs-featured-full');