Please login in order to download photos in full size
If you are not registered, please register for free: www.Free-Photos.biz/register
Please note to download premium images you also need to join as a free member..
You can also save the photos without the registration - but only in small and average sizes, and some of them will have the site's watermark. Please simply click your right mouse button and save the image.
Please login in order to like photos
If you are not registered, please register for free:
Sorry, non-members can download up to 100 full-size photos per month.
It looks like you have used up your limit.
Free members can download an unlimited number of full-size photos - including the premium free photos.
Join as a member today for FREE! - and download the images without limitations:
www.Free-Photos.biz/membership.php
You can also save the images without the membership - but only in small and average sizes, and some of them may have the site's watermark. Please simply click your right mouse button and save the image.
|
Download top free photographs!
This photo was viewed 18 times and was downloaded in full size 5 times.
This photo was liked 0 times
If you are a member, please login in order to see the source link of the above image.
Summaryedit
| Description |
English: Each pixel of this RGB image was sampled independently from all other pixels. Each RGB pixel is randomly created in for each channel.
Deutsch: Jeder Pixel dieses RGB-Bildes wurde unabhängig gleichverteilt generiert. Auch die 3 RGB-Kanäle sind von einander unabhängig. Der Wert wurde jeweils gleichverteilt aus gezogen.
|
| Date | |
| Source | Own work |
| Author | MartinThoma |
This file was created with LaTeX (tikz):
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Create a white noise RGB image of the dimensions you want."""
import numpy
import Image
def create_white_noise(outfile, width, height):
"""
Create white noise RGB image
Parameters
----------
outfile : str
width : int
height : int
"""
array = numpy.random.rand(height, width, 3) * 255
im_out = Image.fromarray(array.astype('uint8')).convert('RGBA')
im_out.save(outfile)
def get_parser():
"""Get parser object for create_random_image.py."""
from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter
parser = ArgumentParser(description=__doc__,
formatter_class=ArgumentDefaultsHelpFormatter)
parser.add_argument("-f", "--file",
dest="filename",
help="write white noise image to FILE",
default="white-noise.jpg",
metavar="FILE")
parser.add_argument("-x", "--width",
dest="width",
default=1280,
type=int,
help="width of the image")
parser.add_argument("-y", "--height",
dest="height",
default=960,
type=int,
help="height of the image")
return parser
if __name__ == "__main__":
args = get_parser().parse_args()
create_white_noise(args.filename, args.width, args.height)
Licensingedit
|
I, the copyright holder of this work, hereby publish it under the following license:
|
|
This image has been assessed using the Quality image guidelines and is considered a Quality image. |
Public Domain
| EXIF data: | |
| File name | random-image.jpg |
|---|---|
| Size, Mbytes | 2.16015625 |
| Mime type | image/jpeg |
While the copyright and licensing information supplied for each photo is believed to be accurate, Free-Photos.biz does not provide any warranty regarding the copyright status or correctness of licensing terms. If you decide to reuse the images from Free-Photos.biz, you should verify the copyright status of each image just as you would when obtaining images from other sources.
The use of depictions of living or deceased persons may be restricted in some jurisdictions by laws regarding personality rights. Such images are exhibited at Free-Photos.biz as works of art that serve higher artistic interests.
PRIVACY POLICY
By registering your account and/or by subscribing to new and newly rated photographs you agree we may send you the links to photos and we may occasionally share other information with you.
We do NOT disclose your personal data.



