File:3 Prothonotary Warbler (half size) -pseudo detoned.jpg

Original file(5,552 × 8,040 pixels, file size: 2.52 MB, MIME type: image/jpeg)

Captions

Captions

Add a one-line explanation of what this file represents

Summary edit

English: Prothonotary Warbler. / Sylvia protonotarius. Lath, / Male. I. Female. 2. / Cane Vine.   (Wikidata search (Cirrus search) Wikidata query (SPARQL)  Create new Wikidata item based on this file)
Author
John James Audubon  (1785–1851)  wikidata:Q182882 s:en:Author:John James Audubon q:en:John James Audubon
 
John James Audubon
Alternative names
Birth name: Jean-Jacques-Fougère Audubon
Description American ornithologist, naturalist, hunter and painter
Date of birth/death 26 April 1785 Edit this at Wikidata 27 January 1851 Edit this at Wikidata
Location of birth/death Les Cayes (Haiti) New York City
Work location
Authority file
creator QS:P170,Q182882
Title
English: Prothonotary Warbler. / Sylvia protonotarius. Lath, / Male. I. Female. 2. / Cane Vine.
Date 2 July 2014, 22:28:06
Notes

This file is a derivative work based on Plate 3 of Birds of America by John James Audubon depicting the Prothonotary Warbler

The starting point is that the original image at the University of Pittsburg may be rather toned (i.e. yellowed with age). This might indeed not be so, but comparision with reference works such as the Duke of Portland's edition or the edition at Amherst College suggests that it is so.

The file uses routines in Mathematica 9 to perform a pseudo detone, "pseudo" because toning is a very complicated process that cannot be compensated for by simple means (at the very least one need to know how different pigments are affected). Essentially the routine works by subtracting the yellow background.

The result compares quite well with reference images and is offered as a starting point for users wishing to make their own restorations. A half-size image was used because of memory restraints on the uploader's computer. The routine below should work just as well on a full-size image (after adjusting for the sample boundaries - times 2!) if adequate computer memory is available.

The Mathematica code used for this file was:

(* Import file (the semicolon prevents it being displayed, best for large files) *) Warbler = Import["3_Prothonotary_Warbler (half size).jpg"];

(* Determine a page sample outside plate - this is a sample above the Warbler plate in a half-size file measuring 5552 x 8040 pixels) *) StartRow = 500; EndRow = 1500; StartColumn = 1500; EndColumn = 4000;

(* Get page sample *) PageSample = ImageTake[Warbler, {StartRow, EndRow}, {StartColumn, EndColumn}];

(* Get a list of pixel values in sample *) SampleData = Flatten[ImageData[PageSample], 1];

(* Separate color channels *) DataSeparate = Transpose[SampleData];

(* Get the lightest pixel, virtual by channel (or you could use MeanPixel={Mean[DataSeparate[[1]]],Mean[DataSeparate[[2]]], Mean[DataSeparate[[3]]]}) *) LightestPixel = {Max[DataSeparate[[1]]], Max[DataSeparate[[2]]], Max[DataSeparate[[3]]]};

(* Display LightestPixel as RGB bytes (or you could use IntegerPart[MeanPixel * 255 + 0.5])*) IntegerPart[LightestPixel * 255 + 0.5]

(* Pseudo detone image by subtracting LightestPixel (or by subtracting MeanPixel using WarblerDetoned= ImageAdd[Warbler, 1-MeanPixel]) *) WarblerDetoned = ImageAdd[Warbler, 1 - LightestPixel];

(* Export file *) Export["3_Prothonotary_Warbler (half size) Detoned.jpg", WarblerDetoned];
Source/Photographer http://images.library.pitt.edu/cgi-bin/i/image/image-idx?view=entry;cc=audimg;entryid=x-aud0003
Permission
(Reusing this file)
This is a faithful photographic reproduction of a two-dimensional, public domain work of art. The work of art itself is in the public domain for the following reason:
Public domain

The author died in 1851, so this work is in the public domain in its country of origin and other countries and areas where the copyright term is the author's life plus 100 years or fewer.


This work is in the public domain in the United States because it was published (or registered with the U.S. Copyright Office) before January 1, 1929.

The official position taken by the Wikimedia Foundation is that "faithful reproductions of two-dimensional public domain works of art are public domain".
This photographic reproduction is therefore also considered to be in the public domain in the United States. In other jurisdictions, re-use of this content may be restricted; see Reuse of PD-Art photographs for details.
Other versions

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current21:31, 2 July 2014Thumbnail for version as of 21:31, 2 July 20145,552 × 8,040 (2.52 MB)Coat of Many Colours (talk | contribs)User created page with UploadWizard