bool RATDeepImageReader::canRead( const std::string &fileName )
{
	IMG_DeepShadow file;
	
	if ( file.open( fileName.c_str() ) && file.depthInterp() == IMG_COMPRESS_DISCRETE )
	{
		return true;
	}
	
	return false;
}