• TensorFlow案例学习:图片风格迁移


    准备

    官方教程: 任意风格的快速风格转换

    模型下载地址: https://tfhub.dev/google/magenta/arbitrary-image-stylization-v1-256/2

    学习

    加载要处理的内容图片和风格图片

    # 用于将图像裁剪为方形
    
    
    def crop_center(image):
        # 图片原始形状
        shape = image.shape
        # 新形状
        new_shape = min(shape[1], shape[2])
        offset_y = max(shape[1]-shape[2], 0) // 2
        offset_x = max(shape[2]-shape[1], 0) // 2
        # 返回新图片
        image = tf.image.crop_to_bounding_box(
            image, offset_y, offset_x, new_shape, new_shape)
        return image
    
    # 加载并预处理图片
    
    
    def load_image(image_url, image_size=(256, 256), preserve_aspect_ratio=True):
        # 缓存图像文件
        image_path = tf.keras.utils.get_file(
            os.path.basename(image_url)[-128:], image_url)
        # 加载并转换为float32 numpy数组,添加批次维度,并规范化为范围[0,1]。
        img = tf.io.decode_image(
            tf.io.read_file(image_path),
            channels=3, dtype=tf.float32)[tf.newaxis, ...]
        img = crop_center(img)
        img = tf.image.resize(img, image_size, preserve_aspect_ratio=True)
        return img
    
    # 展示图片
    
    
    def show_n(images, titles=('',)):
        n = len(images)
        image_sizes = [image.shape[1] for image in images]
        w = (image_sizes[0] * 6) // 320
        plt.figure(figsize=(w * n, w))
        gs = gridspec.GridSpec(1, n, width_ratios=image_sizes)
        for i in range(n):
            plt.subplot(gs[i])
            plt.imshow(images[i][0], aspect='equal')
            plt.axis('off')
            plt.title(titles[i] if len(titles) > i else '')
        plt.show()
    
    
    content_image_url = 'https://scpic3.chinaz.net/files/default/imgs/2023-11-16/6e397d19e172be9f_s.jpg'
    style_image_url = 'https://scpic3.chinaz.net/files/default/imgs/2023-11-05/d217bbaf821e3a73_s.jpg'
    output_image_size = 384
    
    # 调整内容图像的大小
    content_img_size = (output_image_size, output_image_size)
    #  样式图片大小
    style_img_size = (256, 256)
    # 加载并展示图片
    content_image = load_image(content_image_url, content_img_size)
    style_image = load_image(style_image_url, style_img_size)
    style_image = tf.nn.avg_pool(
        style_image, ksize=[3, 3], strides=[1, 1], padding='SAME')
    show_n([content_image, style_image], ['Content image', 'Style image'])
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61

    在这里插入图片描述

    加载模型进行风格迁移

    # 加载模型
    hub_module = hub.load('./magenta_arbitrary-image-stylization-v1-256_2')
    # 风格迁移
    outputs = hub_module(tf.constant(content_image), tf.constant(style_image))
    stylized_image = outputs[0]
    # 展示迁移后的图片
    show_n([content_image, style_image, stylized_image], titles=[
           'Original content image', 'Style image', 'Stylized image'])
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    在这里插入图片描述

    加载本地图片
    加载本地图片的话,只需要将加载网络图片的代码改成下面的

    def load_image(image_url, image_size=(256, 256), preserve_aspect_ratio=True):
        # 缓存图像文件
        # image_path = tf.keras.utils.get_file(
        #     os.path.basename(image_url)[-128:], image_url)
        # 加载并转换为float32 numpy数组,添加批次维度,并规范化为范围[0,1]。
        img = tf.io.decode_image(
            tf.io.read_file(image_url),
            channels=3, dtype=tf.float32)[tf.newaxis, ...]
        img = crop_center(img)
        img = tf.image.resize(img, image_size, preserve_aspect_ratio=True)
        return img
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    下面的效果图是基于一只狗和梵高的星空生成的

    在这里插入图片描述

    完整代码

    
    # import os
    from matplotlib import gridspec
    import matplotlib.pylab as plt
    import numpy as np
    import tensorflow as tf
    import tensorflow_hub as hub
    
    # 用于将图像裁剪为方形
    
    
    def crop_center(image):
        # 图片原始形状
        shape = image.shape
        # 新形状
        new_shape = min(shape[1], shape[2])
        offset_y = max(shape[1]-shape[2], 0) // 2
        offset_x = max(shape[2]-shape[1], 0) // 2
        # 返回新图片
        image = tf.image.crop_to_bounding_box(
            image, offset_y, offset_x, new_shape, new_shape)
        return image
    
    # 加载并预处理图片
    
    
    def load_image(image_url, image_size=(256, 256), preserve_aspect_ratio=True):
        # 缓存图像文件
        # image_path = tf.keras.utils.get_file(
        #     os.path.basename(image_url)[-128:], image_url)
        # 加载并转换为float32 numpy数组,添加批次维度,并规范化为范围[0,1]。
        img = tf.io.decode_image(
            tf.io.read_file(image_url),
            channels=3, dtype=tf.float32)[tf.newaxis, ...]
        img = crop_center(img)
        img = tf.image.resize(img, image_size, preserve_aspect_ratio=True)
        return img
    
    # 展示图片
    
    
    def show_n(images, titles=('',)):
        n = len(images)
        image_sizes = [image.shape[1] for image in images]
        w = (image_sizes[0] * 6) // 320
        plt.figure(figsize=(w * n, w))
        gs = gridspec.GridSpec(1, n, width_ratios=image_sizes)
        for i in range(n):
            plt.subplot(gs[i])
            plt.imshow(images[i][0], aspect='equal')
            plt.axis('off')
            plt.title(titles[i] if len(titles) > i else '')
        plt.show()
    
    
    content_image_url = 'image/dog.png'
    style_image_url = 'image/fangao.png'
    output_image_size = 384
    
    # 调整内容图像的大小
    content_img_size = (output_image_size, output_image_size)
    #  样式图片大小
    style_img_size = (256, 256)
    # 加载图片
    content_image = load_image(content_image_url, content_img_size)
    style_image = load_image(style_image_url, style_img_size)
    style_image = tf.nn.avg_pool(
        style_image, ksize=[3, 3], strides=[1, 1], padding='SAME')
    # 展示图片
    # show_n([content_image, style_image], ['Content image', 'Style image'])
    
    
    # 加载模型
    hub_module = hub.load('./magenta_arbitrary-image-stylization-v1-256_2')
    # 风格迁移
    outputs = hub_module(tf.constant(content_image), tf.constant(style_image))
    stylized_image = outputs[0]
    # 展示迁移后的图片
    show_n([content_image, style_image, stylized_image], titles=[
           'Original content image', 'Style image', 'Stylized image'])
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
  • 相关阅读:
    计算机视觉:基于Numpy的图像处理技术(一):灰度变换、直方图均衡化
    Vue生命周期
    Keepalived
    【笔记】docker-compose.yml 文件更改后重新启动加载更改后的内容
    vue项目打包成dist文件夹之后后端请求报404错误解决方法
    Flink SQL时间属性和窗口介绍
    ElasticSearch 同步数据变少了
    电子元器件[1]——晶振
    信息检索 | 常见专类信息检索系统一览
    Triangle Attack: A Query-efficient Decision-based Adversarial Attack
  • 原文地址:https://blog.csdn.net/weixin_41897680/article/details/134435614