Get product baseimage without product object
You can use this code:
$model = Mage::getResourceModel('catalog/product');
$img = $model->getAttributeRawValue($productId, 'image', $storeId);
For "Small image" use small_image
and for "Thumbnail" thumbnail
.
Similar question was posted here.