How to implement Sepia filter? #27
-
Discuss algorithm on how to apply |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
|
Beta Was this translation helpful? Give feedback.
-
Pseudocode for Sepia Filter
|
Beta Was this translation helpful? Give feedback.
-
sepia filter gives images an old-timey feel by making the whole image look a bit reddish-brown. An image can be converted to sepia by taking each pixel, and computing new red, green, and blue values based on the original values of the three. There are a number of algorithms for converting an image to sepia.
(Given by researchers) |
Beta Was this translation helpful? Give feedback.
sepia filter gives images an old-timey feel by making the whole image look a bit reddish-brown.
An image can be converted to sepia by taking each pixel, and computing new red, green, and blue values based on the original values of the three.
There are a number of algorithms for converting an image to sepia.
For each pixel, the sepia color values should be calculated based on the original color values per the below.
(Given by researchers)
The result of each of thes…