Python, использующий локальные файлы, а не аргумент URL - PullRequest
1 голос
/ 06 мая 2019

Я играю с gi vision для изучения python, и мне было интересно, как заставить этот код работать с локальным изображением, поскольку в данный момент вы должны запустить "аргумент URL python code.py".Как я могу заставить его загрузить файл в локальный каталог?

import argparse
import io

from google.cloud import vision
from google.cloud.vision import types


def annotate(path):
    """Returns web annotations given the path to an image."""
    client = vision.ImageAnnotatorClient()

    if path.startswith('http') or path.startswith('gs:'):
        image = types.Image()
        image.source.image_uri = path

    else:
        with io.open(path, 'rb') as image_file:
            content = image_file.read()

        image = types.Image(content=content)

    web_detection = client.web_detection(image=image).web_detection

    return web_detection


    def report(annotations):
        """Prints detected features in the provided web annotations."""
        if annotations.pages_with_matching_images:
            print('\n{} Pages with matching images retrieved'.format(
                len(annotations.pages_with_matching_images)))

        for page in annotations.pages_with_matching_images:
            print('Url   : {}'.format(page.url))

    if annotations.full_matching_images:
        print('\n{} Full Matches found: '.format(
              len(annotations.full_matching_images)))

        for image in annotations.full_matching_images:
            print('Url  : {}'.format(image.url))

    if annotations.partial_matching_images:
        print('\n{} Partial Matches found: '.format(
              len(annotations.partial_matching_images)))

        for image in annotations.partial_matching_images:
            print('Url  : {}'.format(image.url))

    if annotations.web_entities:
        print('\n{} Web entities found: '.format(
              len(annotations.web_entities)))

        for entity in annotations.web_entities:
            print('Score      : {}'.format(entity.score))
            print('Description: {}'.format(entity.description))

if __name__ == '__main__':
    parser = argparse.ArgumentParser(
        description=__doc__,
        formatter_class=argparse.RawDescriptionHelpFormatter)
    path_help = str('The image to detect, can be web URI, '
                    'Google Cloud Storage, or path to local file.')
    parser.add_argument('image_url', help=path_help)
    args = parser.parse_args()

    report(annotate(args.image_url))

Я пытался многое изменить, но что бы ни случилось, он все еще запрашивает аргумент, это условие из API Google?Я думал, что у него уже есть локальная поддержка, основанная на коде, но я не могу понять, что это за триггер.Всякий раз, когда я пытаюсь запустить can без аргумента URL, я получаю эту ошибку.

"использование: visiontest.py [-h] image_url visiontest.py: ошибка: слишком мало аргументов"

...