If you want to show this only on home page add the below code in themes->views->index.php file in between footer section
<?php $stats = CHV\Stat::getTotals(); ?>
<div class="stats-block c6 fluid-column display-inline-block">
<span class="stats-big-number">
<strong class="number"><?php echo $stats['images'] > 999999 ? $stats['images'] : number_format($stats['images']); ?></strong>
<span class="label"><?php _ne('Image', 'Images', $stats['images']); ?></span>
</span>
</div>