if( class_exists('Dynamic_Featured_Image') ) {
global $dynamic_featured_image;
$featured_images = $dynamic_featured_image->get_featured_images( get_the_ID() );
//You can now loop through the image to display them as required
//For example
foreach( $featured_images as $image ) {
echo "";
echo "";
echo "";
}
}