Image path in childs theme

Use the ABSPATH constant defined in the wp-config.php:

$filename = ABSPATH . 'wp-content/uploads/webcam/webcamimage.jpg';

You don’t have to use basename() function since it would return only the last component from the full file path, i.e. webcamimage.jpg, and it isn’t what you want to use with filemtime() function.