- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
PyTorch – How to invert the colors of an image randomly with a given probability?
The RandomInvert() transform inverts the colors of an image randomly with a given probability. The torchvision.transforms module provides many important transforms that can be used to perform different types of manipulations on the image data.
RandomInvert() accepts both PIL and tensor images or batch of tensor images. A tensor image is a PyTorch Tensor with shape [3, H, W], where H is the image height and W is the image width. A batch of tensor images is also a torch tensor with [B, 3, H, W] where B is the number of images in the batch.
Syntax
torchvision.transforms.RandomInvert(p)(img)
It returns a randomly color inverted image with a given probability p.
If p = 1, it returns color inverted image.
If p = 0, It returns the original image.
If p is in range (0,1), then the probability to return the randomly color inverted image is p.
img is input PIL image or tensor image.
Steps
We could use the following steps to invert colors of the input image randomly with a given probability −
Import the required libraries. In all the following examples, the required Python libraries are torch, Pillow, and torchvision. Make sure you have already installed them.
import torch import torchvision import torchvision.transforms as T from PIL import Image
Read the input image. The input image is a PIL image or a torch tensor.
img = Image.open('stairs.jpg')
Define a transform to invert the colors of the original input image randomly with a given probability p.
transform = T.RandomInvert(p = 0.25)
Apply the above-defined transform on the input image to invert colors of input image.
inverted_img = transform(img)
Show the randomly color inverted image.
inverted_img.show()
Input Image
This image is used as the input file in all the following examples.
Example 1
In this program, we set the probability to 1 so that the output will definitely be a color-inverted image.
# import the required libraries import torch import torchvision.transforms as T from PIL import Image # read the input image img = Image.open('stairs.jpg') # define a transform to randomly invert # the color with probability=1 transform = T.RandomInvert(p=1) # apply the above transform on input image img = transform(img) img.show()
Output
It will produce the following output −
Example 2
Let's take another example −
import torch import torchvision.transforms as T from PIL import Image import matplotlib.pyplot as plt # read the input image img = Image.open('stairs.jpg') # define transform with probability = 0.25 transform = T.RandomInvert(p=0.25) # apply the transform four times invert_imgs = [transform(img) for _ in range(4)] fig = plt.figure(figsize=(7,4)) rows, cols = 2,2 for j in range(0, len(invert_imgs)): fig.add_subplot(rows, cols, j+1) plt.imshow(invert_imgs[j]) plt.xticks([]) plt.yticks([]) plt.show()
Output
It will produce the following output −
Notice in the above output, out of the four images, at least one image is color-inverted because we have set the probability as 0.25.
- Related Articles
- How to invert the colors of an image in Node Jimp?
- PyTorch – Randomly change the brightness, contrast, saturation and hue of an image
- PyTorch – How to resize an image to a given size?
- How to Invert the color of an image using JavaFX?
- How to convert an image to a PyTorch Tensor?
- How to adjust the brightness of an image in PyTorch?
- How to adjust the contrast of an image in PyTorch?
- How to adjust the hue of an image in PyTorch?
- How to adjust the sharpness of an image in PyTorch?
- PyTorch – How to normalize an image with mean and standard deviation?
- How to adjust saturation of an image in PyTorch?
- PyTorch – How to convert an image to grayscale?
- PyTorch – How to rotate an image by an angle?
- PyTorch – How to crop an image at a random location?
- How to show an image in Matplotlib in different colors with different channels?
