Display Taxonomy Image on single.php

I used this little trick to obtain the taxonomy image given the ID of the term:

<?php
    $images = get_option('taxonomy_image_plugin');
    $img_url = wp_get_attachment_url( $images[$term_id] ); 
?>